#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include "icalls/mscorlib/System/CurrentSystemTimeZone.h" #include "icalls/mscorlib/System/DateTime.h" struct VirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template 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 struct VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template 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 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 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); } }; struct GenericVirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericVirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)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 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 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 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 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); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InvokerActionInvoker0 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { method->invoker_method(methodPtr, method, obj, NULL, NULL); } }; template struct InvokerActionInvoker1; template struct InvokerActionInvoker1 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker2; template struct InvokerActionInvoker2 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2) { void* params[2] = { p1, p2 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker3; template struct InvokerActionInvoker3 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3) { void* params[3] = { p1, p2, p3 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; // System.Buffers.ArrayPool`1 struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07; // System.Comparison`1 struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645; // System.Comparison`1 struct Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301; // System.Runtime.CompilerServices.ConditionalWeakTable`2 struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588; // System.Func`2 struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t0AFD6CF8DF742647C96B2C7BB9E9FAE42538D551; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t54BAC54AB2ADE190B60BF5A2A72312AD1BFBA7D5; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t5A8625C3E06B5978852C1025CF01299B35766803; // System.Collections.Generic.IList`1 struct IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E; // System.Collections.Generic.IList`1 struct IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014; // System.Collections.Generic.IList`1 struct IList_1_t6EE90D273EFCF5E7E4C37FAB712E70BB6F1B4BFF; // System.Collections.Generic.List`1 struct List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B; // System.Collections.Generic.List`1 struct List_1_t51CBE3470AD8637D621A307190A51C60E66F370B; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD; // System.Collections.Generic.List`1 struct List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12; // System.Predicate`1 struct Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92; // System.Buffers.SpanAction`2> struct SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7; // System.Buffers.SpanAction`2> struct SpanAction_2_t65B015FEFE1F64814AC2EFA0E19A38B1CFC53178; // System.Boolean[] struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Globalization.CalendarId[] struct CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // System.DateTime[] struct DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // System.Globalization.EraInfo[] struct EraInfoU5BU5D_t3FC74518173AF52EC901FC118D4BD9A11DE89BAC; // System.Exception[] struct ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C; // System.Runtime.ExceptionServices.ExceptionDispatchInfo[] struct ExceptionDispatchInfoU5BU5D_t98D150CF7B222A428B342E1D1F7B69D64BE1A536; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.Int64[] struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.SByte[] struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.Globalization.DateTimeFormatInfo/TokenHashValue[] struct TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587; // System.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA; // System.TimeZoneInfo/TZifType[] struct TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07; // System.AggregateException struct AggregateException_t51B6205846DFB356B94452702201DD239D44422F; // System.ApplicationException struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F; // System.ArithmeticException struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1; // System.Reflection.Assembly struct Assembly_t; // System.AssemblyLoadEventArgs struct AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42; // System.AsyncCallback struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA; // System.AttributeUsageAttribute struct AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49; // System.BadImageFormatException struct BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3; // System.CLSCompliantAttribute struct CLSCompliantAttribute_tEF2C88FA74E74FB1993CC6E03767A2478A6D2F20; // System.Globalization.Calendar struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B; // System.CharEnumerator struct CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D; // System.Globalization.CodePageDataItem struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2; // System.Globalization.CompareInfo struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57; // System.CultureAwareComparer struct CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD; // System.Globalization.CultureData struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0; // System.CurrentSystemTimeZone struct CurrentSystemTimeZone_t34EFC9F79D6F3B36341A1978573C91426B7717C9; // System.DBNull struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A; // System.Text.DecoderFallback struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // System.Text.EncoderFallback struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377; // System.Exception struct Exception_t; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757; // System.IO.FileStream struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8; // System.FormatException struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D; // System.IAsyncResult struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5; // System.Collections.ICollection struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E; // System.IConvertible struct IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.Collections.IEqualityComparer struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1; // System.IFormatProvider struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609; // System.InvalidCastException struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB; // System.InvalidTimeZoneException struct InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // System.Reflection.MethodInfo struct MethodInfo_t; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472; // System.OrdinalCaseSensitiveComparer struct OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A; // System.OrdinalIgnoreCaseComparer struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0; // System.OutOfMemoryException struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F; // System.OverflowException struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2; // System.Runtime.Serialization.SerializationException struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37; // System.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.StringComparer struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06; // System.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295; // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4; // System.TimeZone struct TimeZone_tDA9914185478D6D73730FB9D0179A34512F4736F; // System.TimeZoneInfo struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8; // System.Type struct Type_t; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // System.BitConverter/<>c struct U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05; // System.TimeZoneInfo/<>c struct U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124; // System.TimeZoneInfo/<>c__DisplayClass16_0 struct U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0; // System.TimeZoneInfo/AdjustmentRule struct AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07; // System.TimeZoneInfo/CachedData struct CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF; IL2CPP_EXTERN_C RuntimeClass* AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_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* ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_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* CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF_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* CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301_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* DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_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* IntPtr_t_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* InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98_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* TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_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__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_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* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____5857EE4CE98BFABBD62B385C1098507DD0052FF3951043AAD6A1DABD495F18AA_27_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780_37_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063_67_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8_89_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FADB218011E7702BB9575D0C32A685DA10B5C72EB809BD9A955DB1C76E4D8315_92_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral018504CD3A7D232B591A18D6B7B570DEE8B65BAB; IL2CPP_EXTERN_C String_t* _stringLiteral01B12D4BB9DCEC213EE52153F25C3475874C454D; IL2CPP_EXTERN_C String_t* _stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D; IL2CPP_EXTERN_C String_t* _stringLiteral072BA90B274B502615639084DC3D7FCC63407A24; IL2CPP_EXTERN_C String_t* _stringLiteral09E3CE30ED220A58CBC39E1FB2FC6F254A93DB03; IL2CPP_EXTERN_C String_t* _stringLiteral0A2679566878DB123603B221EB69443EBD3A7BCB; IL2CPP_EXTERN_C String_t* _stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2; IL2CPP_EXTERN_C String_t* _stringLiteral0BC57303021D0F5E73500A4048868718EB82784B; IL2CPP_EXTERN_C String_t* _stringLiteral0CC8D9716F300EE4E27BA8D2C8FFFB6AD822D078; IL2CPP_EXTERN_C String_t* _stringLiteral0F1EB107829748D4B6EAF0971FCDC4458C54CF59; IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155; IL2CPP_EXTERN_C String_t* _stringLiteral13772F1D89F55EDAC4913EE35CA9BC5DB5CCC798; IL2CPP_EXTERN_C String_t* _stringLiteral14BA113F909A778600AFFC621877E1CDD109444A; IL2CPP_EXTERN_C String_t* _stringLiteral16C4C93B479961DF2612CEC287054707A7609904; IL2CPP_EXTERN_C String_t* _stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB; IL2CPP_EXTERN_C String_t* _stringLiteral1BB7D514C3D15F77603EC9C1408F5FF44C944EAF; IL2CPP_EXTERN_C String_t* _stringLiteral1C0C9FCD992D47F7F8139E8C6E8743A057F3D0A8; IL2CPP_EXTERN_C String_t* _stringLiteral1C55B63DB181316212E6D01717E65E1FB557B6B8; IL2CPP_EXTERN_C String_t* _stringLiteral1DEDCD1168FE0A01C595FF5B7901D1C14F15F786; IL2CPP_EXTERN_C String_t* _stringLiteral1E7A8A503AFD36DF33873AAF1E540F2FC2BC00F1; IL2CPP_EXTERN_C String_t* _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633; IL2CPP_EXTERN_C String_t* _stringLiteral2565F69A6EDDD61DD4960B022D88743E25BCCD32; IL2CPP_EXTERN_C String_t* _stringLiteral27898ED9175E943FDE24F2BF2E86B60EEDFF15D2; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1; IL2CPP_EXTERN_C String_t* _stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D; IL2CPP_EXTERN_C String_t* _stringLiteral2D0BAF232D97D0ABBA1986C948E6B9DA38247EDD; IL2CPP_EXTERN_C String_t* _stringLiteral2DD54EF3C66B10F36F9AE6F20237BFAFA2C9E444; IL2CPP_EXTERN_C String_t* _stringLiteral300B73ED5344F3E06BA53DFEA13CECB98D33880A; IL2CPP_EXTERN_C String_t* _stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174; IL2CPP_EXTERN_C String_t* _stringLiteral3522BB4F702C4C273D265239651571707FCCD42D; IL2CPP_EXTERN_C String_t* _stringLiteral3680357E36BF098D58315A89BD03F078921BEFD9; IL2CPP_EXTERN_C String_t* _stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26; IL2CPP_EXTERN_C String_t* _stringLiteral3ABDC3BE0D4AE0A52AF73DB2F567C19CF2E6E875; IL2CPP_EXTERN_C String_t* _stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5; IL2CPP_EXTERN_C String_t* _stringLiteral3B9E3B5807482B6C32D7111C75D4826AEFC0F71F; IL2CPP_EXTERN_C String_t* _stringLiteral3DF008E4B70EBA2CEFB30E3226F82557BD7FD14D; IL2CPP_EXTERN_C String_t* _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA; IL2CPP_EXTERN_C String_t* _stringLiteral414EEEFF5F961B9740DE01D5EC1AC2F0F745095E; IL2CPP_EXTERN_C String_t* _stringLiteral445399A595B24C0202D28AE23969D8FFF38F572A; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F; IL2CPP_EXTERN_C String_t* _stringLiteral4B63EF6929AE971A204D72191783C54436124C51; IL2CPP_EXTERN_C String_t* _stringLiteral4BAC3D20C34EF3D0825E7EAAE03BE6034C6297A9; IL2CPP_EXTERN_C String_t* _stringLiteral4DD3DE8CCECA489C7DDD3362FC292A3BE39B68F1; IL2CPP_EXTERN_C String_t* _stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE; IL2CPP_EXTERN_C String_t* _stringLiteral4E6EACEF8019EA40E4CAD15A87CBACA290240853; IL2CPP_EXTERN_C String_t* _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6; IL2CPP_EXTERN_C String_t* _stringLiteral50EF455B956027DF24259B3FB1863653BB4878FD; IL2CPP_EXTERN_C String_t* _stringLiteral5555755D3361E32457AAF97F7B3A0E3237765D53; IL2CPP_EXTERN_C String_t* _stringLiteral57A11AA8D8FC7CF3B0620CBC3C7E0CCA55D62E09; IL2CPP_EXTERN_C String_t* _stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60; IL2CPP_EXTERN_C String_t* _stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F; IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84; IL2CPP_EXTERN_C String_t* _stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916; IL2CPP_EXTERN_C String_t* _stringLiteral5A7ADFD6756FB3736B5F1DD62B8C220E85E5A9A6; IL2CPP_EXTERN_C String_t* _stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B; IL2CPP_EXTERN_C String_t* _stringLiteral5BE4AA33C9F9269F3A5D8C902F7D37A6E28D6E38; IL2CPP_EXTERN_C String_t* _stringLiteral5C41D52FA73299672D15406F85174D906E9E65DC; IL2CPP_EXTERN_C String_t* _stringLiteral5D997905392A8A6AE6612065B56018B1C13345AF; IL2CPP_EXTERN_C String_t* _stringLiteral5EBC0FB5BE3EB09AC4B447C54FE6F9F6DFEEF586; IL2CPP_EXTERN_C String_t* _stringLiteral6348CDEC7DB6251FDA976EE379E172B4319202A3; IL2CPP_EXTERN_C String_t* _stringLiteral645F0B83FF7CADECF44AD1B83B13002DA97FBA1E; IL2CPP_EXTERN_C String_t* _stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC; IL2CPP_EXTERN_C String_t* _stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C; IL2CPP_EXTERN_C String_t* _stringLiteral6B509C55C6A5F6BAE3FB3BB16126FD45B8B9B163; IL2CPP_EXTERN_C String_t* _stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2; IL2CPP_EXTERN_C String_t* _stringLiteral6B876A297E470749B85E75AB089B8F37384700D8; IL2CPP_EXTERN_C String_t* _stringLiteral6C0FB1B49782357DC1CCDE93D4ADFB4161605BC7; IL2CPP_EXTERN_C String_t* _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06; IL2CPP_EXTERN_C String_t* _stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D; IL2CPP_EXTERN_C String_t* _stringLiteral6F1AD4518CCFE15EDA37B314B2AF64D13616FF7B; IL2CPP_EXTERN_C String_t* _stringLiteral6F96D91590C70C47BBC8C98A53B3B412C36447CE; IL2CPP_EXTERN_C String_t* _stringLiteral6FA4C59C48F20F657EA95225B529B162ECF44EAB; IL2CPP_EXTERN_C String_t* _stringLiteral74D560302B70C9D57AC7C2692A505F648FD1B1A4; IL2CPP_EXTERN_C String_t* _stringLiteral758669C6E73419F7C9937E6A901F4CFC2057BEED; IL2CPP_EXTERN_C String_t* _stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD; IL2CPP_EXTERN_C String_t* _stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E; IL2CPP_EXTERN_C String_t* _stringLiteral7C152F638579421698C1833EAD994B061F824CA0; IL2CPP_EXTERN_C String_t* _stringLiteral81FE848029299D2E16A8CD1E3C9267FBB8445B4B; IL2CPP_EXTERN_C String_t* _stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9; IL2CPP_EXTERN_C String_t* _stringLiteral83A0203482067140327BBF852248E02658CAE786; IL2CPP_EXTERN_C String_t* _stringLiteral83DC2909B9E8CF20AD23217F95DC9967B22DD3F5; IL2CPP_EXTERN_C String_t* _stringLiteral8BABAAD88AAA5E60D93C31ED61C095184AFF093D; IL2CPP_EXTERN_C String_t* _stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7; IL2CPP_EXTERN_C String_t* _stringLiteral8C7519178C7F8017597493F458FE4E71F102399E; IL2CPP_EXTERN_C String_t* _stringLiteral904E141B4F250943BE820466C5ACAC36DFD71291; IL2CPP_EXTERN_C String_t* _stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F; IL2CPP_EXTERN_C String_t* _stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7; IL2CPP_EXTERN_C String_t* _stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF; IL2CPP_EXTERN_C String_t* _stringLiteral93FFE29C2506591FD366855C12526B4678FB1953; IL2CPP_EXTERN_C String_t* _stringLiteral94175649577A71BF619AB00E3FD4DBB0DF7198CD; IL2CPP_EXTERN_C String_t* _stringLiteral970C23FDBBAD9A488898D5C3E419B934D2FB9545; IL2CPP_EXTERN_C String_t* _stringLiteral97788FC356CCFD978CEEDA2BF269D6954F4D0740; IL2CPP_EXTERN_C String_t* _stringLiteral978E2B96DC2EF05DF82DED36A0D229D41A53154C; IL2CPP_EXTERN_C String_t* _stringLiteral979BEF74EBFAB7697A86533A10926355727B6C8A; IL2CPP_EXTERN_C String_t* _stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163; IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694; IL2CPP_EXTERN_C String_t* _stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93; IL2CPP_EXTERN_C String_t* _stringLiteralA17989F20B9C34D562A6D393FB4B7703C2FF6069; IL2CPP_EXTERN_C String_t* _stringLiteralA2E34A7DAEE39E18F61A4200A3E455B5B0924DC1; IL2CPP_EXTERN_C String_t* _stringLiteralA4236146F56D25D2D915B8BCD28F0936D3257EE6; IL2CPP_EXTERN_C String_t* _stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469; IL2CPP_EXTERN_C String_t* _stringLiteralA50A38EF2D7858A83B908FDB41C862EF6FD5FAE1; IL2CPP_EXTERN_C String_t* _stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F; IL2CPP_EXTERN_C String_t* _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085; IL2CPP_EXTERN_C String_t* _stringLiteralA7CB599B22D521F814BCCB6E5B683D86AA12640B; IL2CPP_EXTERN_C String_t* _stringLiteralAA1D7FE08F191E4056596171109A07D018736F00; IL2CPP_EXTERN_C String_t* _stringLiteralAA9D877CB849FA2C146CC4091473E628678EE371; IL2CPP_EXTERN_C String_t* _stringLiteralAEAB3D729B68F0D07CACB56068349A9D081F5BAD; IL2CPP_EXTERN_C String_t* _stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD; IL2CPP_EXTERN_C String_t* _stringLiteralB020DAEB80AFE3984CF55839FF7F2659288FFC06; IL2CPP_EXTERN_C String_t* _stringLiteralB12933F4DC58820F9722BDF423F448FD91C0EE8A; IL2CPP_EXTERN_C String_t* _stringLiteralB13A221890A3415E7F693C07C26585D65E9EF870; IL2CPP_EXTERN_C String_t* _stringLiteralB655C47A0A1F6AF4DCDB6B7A1506B8EFB729C8BF; IL2CPP_EXTERN_C String_t* _stringLiteralB6DE8EF43C1BC546AA303BA65584166F1FB051BE; IL2CPP_EXTERN_C String_t* _stringLiteralB6FCDFEE719933C778C60D472C00101F05CD7A79; IL2CPP_EXTERN_C String_t* _stringLiteralB77C51162F9B76C1135D72465C09B899FF505927; IL2CPP_EXTERN_C String_t* _stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70; IL2CPP_EXTERN_C String_t* _stringLiteralB7E7D625DFBC9C92FA0449D5E3E0BE263DECD0EA; IL2CPP_EXTERN_C String_t* _stringLiteralBB62E92766460DDF2A10079AF8CE4DDDFD86586A; IL2CPP_EXTERN_C String_t* _stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101; IL2CPP_EXTERN_C String_t* _stringLiteralBF27849B63507F7B8C2FC6FE9C5EFB62BF8543C8; IL2CPP_EXTERN_C String_t* _stringLiteralBF45CADC16AD267EA891B4231D162B68FDED748D; IL2CPP_EXTERN_C String_t* _stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C; IL2CPP_EXTERN_C String_t* _stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649; IL2CPP_EXTERN_C String_t* _stringLiteralC087E631060AB76B7C814C0E1B92D5C7C4C4B924; IL2CPP_EXTERN_C String_t* _stringLiteralC093A43C681B135B2CCBFD21AF1C61BC84B52631; IL2CPP_EXTERN_C String_t* _stringLiteralC26DCD8294CF8DDECC03D1B5FEBFE3E8670F4219; IL2CPP_EXTERN_C String_t* _stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80; IL2CPP_EXTERN_C String_t* _stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5; IL2CPP_EXTERN_C String_t* _stringLiteralC71EEB076C9C234A1E39FDB9B0DCFC8851BA4D7F; IL2CPP_EXTERN_C String_t* _stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A; IL2CPP_EXTERN_C String_t* _stringLiteralC99BA0F7C5275BAC3DB1C2977F176767DEE5F49E; IL2CPP_EXTERN_C String_t* _stringLiteralCB6B67D4653121AE0F63EE256975A0DBD0FAF6B1; IL2CPP_EXTERN_C String_t* _stringLiteralCE6F438B4D15D9368DB9AB085363FC309684D805; IL2CPP_EXTERN_C String_t* _stringLiteralCE9BB7116C03E5DA9D01F8D4803A0FFE9ADA5307; IL2CPP_EXTERN_C String_t* _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A; IL2CPP_EXTERN_C String_t* _stringLiteralD1B787616D5CE0182CB13A50CA0FB55C49EAA951; IL2CPP_EXTERN_C String_t* _stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE; IL2CPP_EXTERN_C String_t* _stringLiteralD3E53F482F854233BE7E79000141D8F223B6682B; IL2CPP_EXTERN_C String_t* _stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F; IL2CPP_EXTERN_C String_t* _stringLiteralD539FFE7E4977C91A92DB478C9022FA2F1EEA698; IL2CPP_EXTERN_C String_t* _stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC; IL2CPP_EXTERN_C String_t* _stringLiteralD5E0D3D064AAABFE3EC781EFE9126A80D40BED15; IL2CPP_EXTERN_C String_t* _stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A; IL2CPP_EXTERN_C String_t* _stringLiteralD7403858372506828AB1160BA0EFCF96B17133FE; IL2CPP_EXTERN_C String_t* _stringLiteralD80BD0A851B9B4C3B7389277DE499F6B156E3F9F; IL2CPP_EXTERN_C String_t* _stringLiteralD83041E889BDAEB8F029AF50549D1347BD7FC949; IL2CPP_EXTERN_C String_t* _stringLiteralD8BC2BD13ADDE8D5A4042FB0941980613775040D; IL2CPP_EXTERN_C String_t* _stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947; IL2CPP_EXTERN_C String_t* _stringLiteralDA144A4546BA813419D20020C8E1F983163D5616; IL2CPP_EXTERN_C String_t* _stringLiteralDA595DC5A57F5E8916402DFA6D50EB60A7DF3F30; IL2CPP_EXTERN_C String_t* _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465; IL2CPP_EXTERN_C String_t* _stringLiteralDB47297909F3BD6EDB8AD67A8511975233214355; IL2CPP_EXTERN_C String_t* _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F; IL2CPP_EXTERN_C String_t* _stringLiteralDE55B43308212050F52D65FEF9469774AEB10590; IL2CPP_EXTERN_C String_t* _stringLiteralDFEB75073613366ED790055534C407E4105DE290; IL2CPP_EXTERN_C String_t* _stringLiteralE5A6B5B780158F734FA0A11A802E762EF7BDD272; IL2CPP_EXTERN_C String_t* _stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3; IL2CPP_EXTERN_C String_t* _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E; IL2CPP_EXTERN_C String_t* _stringLiteralE83E205B069FB6EB573A2EF371C8C84AB214E8A7; IL2CPP_EXTERN_C String_t* _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB; IL2CPP_EXTERN_C String_t* _stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E; IL2CPP_EXTERN_C String_t* _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871; IL2CPP_EXTERN_C String_t* _stringLiteralEA8C788F462D3BDFF1A2C0A8B053AAA9567571BA; IL2CPP_EXTERN_C String_t* _stringLiteralEB209907A052ABB2C21994BF17D3B45327D812D2; IL2CPP_EXTERN_C String_t* _stringLiteralEBD4A5B4DB26F7938CFC8A94B9ED6301F694A390; IL2CPP_EXTERN_C String_t* _stringLiteralEDEF72BF02D7DBDB7455CEDB9985B8D2A87B5FB3; IL2CPP_EXTERN_C String_t* _stringLiteralEE4EDD00A82071245CB66FD4E82F95F687C2E2CA; IL2CPP_EXTERN_C String_t* _stringLiteralF072EABB286891F7AE6ED11AF63686B8B0F5023E; IL2CPP_EXTERN_C String_t* _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7; IL2CPP_EXTERN_C String_t* _stringLiteralF1D9D681ED3F17FB88D66F3F260041BE534C7879; IL2CPP_EXTERN_C String_t* _stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A; IL2CPP_EXTERN_C String_t* _stringLiteralF23D2D4F867416899FD1326311AC61D3AC3EFBE8; IL2CPP_EXTERN_C String_t* _stringLiteralF31022DF0C52AA301767F7877FB21D3C42BE84CE; IL2CPP_EXTERN_C String_t* _stringLiteralF33310D7EB57AD4B307AAB16E09002FFD4E34FF3; IL2CPP_EXTERN_C String_t* _stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927; IL2CPP_EXTERN_C String_t* _stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0; IL2CPP_EXTERN_C String_t* _stringLiteralF5613A6A4EDEA9E0E59881C956F596200F1345F8; IL2CPP_EXTERN_C String_t* _stringLiteralF5757B8984ECA25A84C0677373F5C2FACE97337A; IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6; IL2CPP_EXTERN_C String_t* _stringLiteralF7C654A6F7651FC5597CD86E2E325E8384CCF203; IL2CPP_EXTERN_C String_t* _stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F; IL2CPP_EXTERN_C String_t* _stringLiteralFAE2329D6E15DBA161C93E78324E39B842CF47E4; IL2CPP_EXTERN_C String_t* _stringLiteralFED3FDDE36BD8F8EFDC4080D205F010B8503EE53; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mB8F32624CFFFCC0C8DBDECAABCA58EC2F8F5AFB9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m764F67E36C8B7FE592310FBCF864FA72251304FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule__ctor_m1315C12A85D7BCDBED55550CE87DF985D1FE8A65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisException_t_m79C5AE8419A8C51A465AC2EA5A3008854ED35713_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_mB4DC448C2229347732EB34E8EE5C54EE171BE2A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_mB0D59A6F304A78532DA5E0CF3C29D8B0E8F0AA5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_mC9B4406FE9DA904E2B7D75267CAD38E837D39A6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ConvertToUtf32_m3AC1CA159EF0AAF7AA30F6C6BF4D752DD534C286_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_GetUnicodeCategory_mC434975D89EED4FB9B602F785526268980A49CEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsHighSurrogate_m5AE9D736862F27DA4A880C0D386137E0A3593191_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsLetterOrDigit_m29DAB6849D892142452C4B53F9A995CEC17E88A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsSurrogate_m80A375ED5DD1A92FBD91A89571E54376310E6340_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_Parse_m2C567BE09FA9F42226935A1760BB722B767E7000_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ChangeType_m8BF1D537CE047AB07C6809187838E7DD69ABB3D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64CharPtr_m5EB088E0863DEB4AC0889D82BE4998E896A9D9FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64String_m267327B074B41D93C9622D142B95CFAA4ACCCA9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64_ComputeResultLength_m1FA11BAB2F815560FFDF95CDDE4312DE5E4C18A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowInt64OverflowException_m8173BB38CD04FDD339F0EDDC8BB38CC20E3FE152_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64String_m41DE2D2C15E47B698E3E06E836081E7C3C38DC06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64String_mD0680EF77270244071965AFA1207921C73EEA323_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64_CalculateAndValidateOutputLength_m15280A1E59F3FF89468E1E846F180361AC86A5E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToChar_m05E12620C91AC9BCF2610FB3E4E610C43E2D3833_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt32_mD1B3AFBDA26E52D0382434804364FEF8BA241FB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToString_m33C16D8DB747139A4F5012633E0ABFF1D8E69BBB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToBoolean_mC120275948B2FF6D4DF206AB7B64897166BFB233_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToByte_m75D279A6D246FB4C18A3505382AC7C64AF7C91D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToChar_m36BDDB94045057C8577293ACE204AB37A5E5E7DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToDateTime_mD910B2FBF27B53C5F9545D73B007AD06939CF882_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToDecimal_m9B5A491B2E0FA7259C1B16D279B5D2AC4C1943CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToDouble_mE806417287E17116293BE1B8DDBF62FB8489B02D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToInt16_mCCC33069235CD65F4BB8017C9E95F30025457045_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToInt32_m158A01B544BF1B291DCFF9C1A1DE7B40023A1430_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToInt64_mA6E7301D9583B7C320D2AE3C071F1B8B36C853FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToSByte_m3E3593B7FA4BA94F12796103274A02941AB8F76B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToSingle_mD3FB88964B19BC30F38BF56CA75F56B4DC32D70D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToUInt16_m2B0739D00C82A14A8D88F8FFB418CDD33EEB9B69_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToUInt32_m953E9B2EDA3E4EEE92564B98851D4384B68A5B13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull_System_IConvertible_ToUInt64_m069773CCE4D88576F428F231BA7CC645143C0FE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DBNull__ctor_mFDFEBE53C127D059C572931409E11B5174125EA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_CompareTo_m2DC5F6BDB6A7D578448192AA07953CBC97BECAC9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_FromBinaryRaw_m61270C18465960DF146A60BC5D6148D4B93A56E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_FromBinary_m3CED9C962489A2A0ABF34FB77B2AB257B9DA7B7B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_FromFileTimeUtc_m438EB6875CCA2AC723474C3B4BE8906803BE6517_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToBoolean_m88D0685E40F160ECD9BA0097A9D5EAE129D57320_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToByte_mC9A4AE726942D47E6A1D6E1C627CD22F53665530_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToChar_m3A2D7E1724D045078329DE5B6928DAF35358128C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToDecimal_m6DC5225E5665975254A30217122921B578C095C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToDouble_mF9398C544CB0CF7A704C4DA7F2AF55251EDA271C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToInt16_m53F782E932C1349E508278A88C0B5D6FA484A963_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToInt32_mEF8F4DF23984AF54CB1748F08B6E4D2AB50B5ECE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToInt64_m1A022E5D74555F165C25A1D75E19DA9A16E7087F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToSByte_m58BE7B4B9E8805399461C451EDB2A5F038A30E2B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToSingle_mF2470BC10216C1A1395825805F07797604EB2B89_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToUInt16_m87CAD02FAE277DCA7F36D940680D1659CE7094BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToUInt32_m7297BB44A3D2F758C253C0DA1552411BF4137FB1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_IConvertible_ToUInt64_mACC536AC91C65A8333B715AE1E97DBCA096A9884_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_mC90A1D56C5CD5E23BE66C9D90EC3A867C71F490C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime__ctor_mD89390EF215242275A4E8F78C2C3E8BC3EF6F3C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_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_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m00B1D3A3A7C94060A914A8C27CE0CAD83C2ED839_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_CompareTimeZoneFile_mC7AB75C3040CA3A1E3E608E1BB6D92ACFF8E6910_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_CreateLocalUnity_m2CC27D4772C2E7C6F9180DF0845B3F46C6AFCD12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_EnumerateFilesRecursively_m2984DD3C4C89C29B20ACC0A4E76C6267F877E6C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_m530C74071BC885ED139F52B6E63FE59E1F88D642_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_TZif_GetEarlyDateTransitionType_m30B59582E42557DDD62A80CF9CD3AF9FD94BA579_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_TZif_ParseJulianDay_mEEA1FBA86FA26806049A4C232A6B243E08EBC697_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_m7B38419A290B32854FB6623A338755B01F675DEA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_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* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_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* Empty_t2092C4BE138E38CCF5F75C55C07985DEE23C0DAE_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_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* 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* TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_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; 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 BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; struct DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913; struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA; struct TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98; 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.Buffers.ArrayPool`1 struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07 : public RuntimeObject { }; // System.EmptyArray`1 struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject { }; // System.Collections.Generic.List`1 struct List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ____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; }; // System.Collections.Generic.List`1 struct List_1_t51CBE3470AD8637D621A307190A51C60E66F370B : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ExceptionDispatchInfoU5BU5D_t98D150CF7B222A428B342E1D1F7B69D64BE1A536* ____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; }; // System.Collections.Generic.List`1 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; }; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____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; }; // System.Collections.Generic.List`1 struct List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ____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; }; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886 : public RuntimeObject { // System.Collections.Generic.IList`1 System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject* ____syncRoot_1; }; // 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 { }; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject { }; // System.BitConverter struct BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27 : public RuntimeObject { }; // System.CharEnumerator struct CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D : public RuntimeObject { // System.String System.CharEnumerator::_str String_t* ____str_0; // System.Int32 System.CharEnumerator::_index int32_t ____index_1; // System.Char System.CharEnumerator::_currentElement Il2CppChar ____currentElement_2; }; // System.Convert struct Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC : public RuntimeObject { }; // 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; }; // 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 { }; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A : public RuntimeObject { // System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::_cultureData CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ____cultureData_1; // System.String System.Globalization.DateTimeFormatInfo::_name String_t* ____name_2; // System.String System.Globalization.DateTimeFormatInfo::_langName String_t* ____langName_3; // System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::_compareInfo CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ____compareInfo_4; // System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::_cultureInfo CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____cultureInfo_5; // System.String System.Globalization.DateTimeFormatInfo::amDesignator String_t* ___amDesignator_6; // System.String System.Globalization.DateTimeFormatInfo::pmDesignator String_t* ___pmDesignator_7; // System.String System.Globalization.DateTimeFormatInfo::dateSeparator String_t* ___dateSeparator_8; // System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern String_t* ___generalShortTimePattern_9; // System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern String_t* ___generalLongTimePattern_10; // System.String System.Globalization.DateTimeFormatInfo::timeSeparator String_t* ___timeSeparator_11; // System.String System.Globalization.DateTimeFormatInfo::monthDayPattern String_t* ___monthDayPattern_12; // System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern String_t* ___dateTimeOffsetPattern_13; // System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_17; // System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek int32_t ___firstDayOfWeek_18; // System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule int32_t ___calendarWeekRule_19; // System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern String_t* ___fullDateTimePattern_20; // System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedDayNames_21; // System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_superShortDayNames_22; // System.String[] System.Globalization.DateTimeFormatInfo::dayNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___dayNames_23; // System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedMonthNames_24; // System.String[] System.Globalization.DateTimeFormatInfo::monthNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___monthNames_25; // System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___genitiveMonthNames_26; // System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_genitiveAbbreviatedMonthNames_27; // System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___leapYearMonthNames_28; // System.String System.Globalization.DateTimeFormatInfo::longDatePattern String_t* ___longDatePattern_29; // System.String System.Globalization.DateTimeFormatInfo::shortDatePattern String_t* ___shortDatePattern_30; // System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern String_t* ___yearMonthPattern_31; // System.String System.Globalization.DateTimeFormatInfo::longTimePattern String_t* ___longTimePattern_32; // System.String System.Globalization.DateTimeFormatInfo::shortTimePattern String_t* ___shortTimePattern_33; // System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allYearMonthPatterns_34; // System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortDatePatterns_35; // System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongDatePatterns_36; // System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortTimePatterns_37; // System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongTimePatterns_38; // System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_eraNames_39; // System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEraNames_40; // System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEnglishEraNames_41; // System.Globalization.CalendarId[] System.Globalization.DateTimeFormatInfo::optionalCalendars CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA* ___optionalCalendars_42; // System.Boolean System.Globalization.DateTimeFormatInfo::_isReadOnly bool ____isReadOnly_44; // System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags int32_t ___formatFlags_45; // System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanPositivePattern String_t* ____fullTimeSpanPositivePattern_49; // System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanNegativePattern String_t* ____fullTimeSpanNegativePattern_50; // System.Globalization.DateTimeFormatInfo/TokenHashValue[] System.Globalization.DateTimeFormatInfo::_dtfiTokenHash TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9* ____dtfiTokenHash_52; }; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject { // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14; }; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject { }; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757 : public RuntimeObject { // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception Exception_t* ___m_Exception_0; // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace RuntimeObject* ___m_stackTrace_1; }; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject { // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10; // System.Int32 System.Collections.Hashtable::_count int32_t ____count_11; // System.Int32 System.Collections.Hashtable::_occupancy int32_t ____occupancy_12; // System.Int32 System.Collections.Hashtable::_loadsize int32_t ____loadsize_13; // System.Single System.Collections.Hashtable::_loadFactor float ____loadFactor_14; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version int32_t ____version_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress bool ____isWriterInProgress_16; // System.Collections.ICollection System.Collections.Hashtable::_keys RuntimeObject* ____keys_17; // System.Collections.ICollection System.Collections.Hashtable::_values RuntimeObject* ____values_18; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_19; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject* ____syncRoot_20; }; // 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; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject { // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; }; // System.IO.Path struct Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC : public RuntimeObject { }; // 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.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.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540 : public RuntimeObject { // System.String[] System.Runtime.Serialization.SerializationInfoEnumerator::_members StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____members_0; // System.Object[] System.Runtime.Serialization.SerializationInfoEnumerator::_data ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____data_1; // System.Type[] System.Runtime.Serialization.SerializationInfoEnumerator::_types TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ____types_2; // System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::_numItems int32_t ____numItems_3; // System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::_currItem int32_t ____currItem_4; // System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::_current bool ____current_5; }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; // 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.StringComparer struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06 : public RuntimeObject { }; // System.TimeZone struct TimeZone_tDA9914185478D6D73730FB9D0179A34512F4736F : public RuntimeObject { }; // 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.BitConverter/<>c struct U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0 : public RuntimeObject { }; // System.TimeZoneInfo/<>c struct U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124 : public RuntimeObject { }; // System.TimeZoneInfo/<>c__DisplayClass16_0 struct U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0 : public RuntimeObject { // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::localtimeFilePath String_t* ___localtimeFilePath_0; // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::posixrulesFilePath String_t* ___posixrulesFilePath_1; // System.Byte[] System.TimeZoneInfo/<>c__DisplayClass16_0::buffer ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer_2; // System.Byte[] System.TimeZoneInfo/<>c__DisplayClass16_0::rawData ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData_3; // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::id String_t* ___id_4; // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::timeZoneDirectory String_t* ___timeZoneDirectory_5; }; // System.TimeZoneInfo/CachedData struct CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF : public RuntimeObject { // System.TimeZoneInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeZoneInfo/CachedData::_localTimeZone TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ____localTimeZone_0; }; // System.Nullable`1 struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value bool ___value_1; }; // System.Nullable`1 struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.ValueTuple`3 struct ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 { // T1 System.ValueTuple`3::Item1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Item1_0; // T2 System.ValueTuple`3::Item2 int32_t ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; }; // System.ValueTuple`3 struct ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 { // T1 System.ValueTuple`3::Item1 RuntimeObject* ___Item1_0; // T2 System.ValueTuple`3::Item2 int32_t ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; }; // System.AssemblyLoadEventArgs struct AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField Assembly_t* ___U3CLoadedAssemblyU3Ek__BackingField_1; }; // System.AttributeUsageAttribute struct AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.AttributeTargets System.AttributeUsageAttribute::_attributeTarget int32_t ____attributeTarget_0; // System.Boolean System.AttributeUsageAttribute::_allowMultiple bool ____allowMultiple_1; // System.Boolean System.AttributeUsageAttribute::_inherited bool ____inherited_2; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3 { // System.Byte System.Byte::m_value uint8_t ___m_value_0; }; // System.CLSCompliantAttribute struct CLSCompliantAttribute_tEF2C88FA74E74FB1993CC6E03767A2478A6D2F20 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.Boolean System.CLSCompliantAttribute::_compliant bool ____compliant_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; // System.CurrentSystemTimeZone struct CurrentSystemTimeZone_t34EFC9F79D6F3B36341A1978573C91426B7717C9 : public TimeZone_tDA9914185478D6D73730FB9D0179A34512F4736F { // System.Int64 System.CurrentSystemTimeZone::m_ticksOffset int64_t ___m_ticksOffset_0; // System.String System.CurrentSystemTimeZone::m_standardName String_t* ___m_standardName_1; // System.String System.CurrentSystemTimeZone::m_daylightName String_t* ___m_daylightName_2; // System.Collections.Hashtable System.CurrentSystemTimeZone::m_CachedDaylightChanges Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___m_CachedDaylightChanges_3; }; // System.DateTime struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D { // System.UInt64 System.DateTime::_dateData uint64_t ____dateData_46; }; // System.Decimal struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Decimal::flags int32_t ___flags_5; }; #pragma pack(pop, tp) struct { int32_t ___flags_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hi_6_OffsetPadding[4]; // System.Int32 System.Decimal::hi int32_t ___hi_6; }; #pragma pack(pop, tp) struct { char ___hi_6_OffsetPadding_forAlignmentOnly[4]; int32_t ___hi_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___lo_7_OffsetPadding[8]; // System.Int32 System.Decimal::lo int32_t ___lo_7; }; #pragma pack(pop, tp) struct { char ___lo_7_OffsetPadding_forAlignmentOnly[8]; int32_t ___lo_7_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___mid_8_OffsetPadding[12]; // System.Int32 System.Decimal::mid int32_t ___mid_8; }; #pragma pack(pop, tp) struct { char ___mid_8_OffsetPadding_forAlignmentOnly[12]; int32_t ___mid_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___ulomidLE_9_OffsetPadding[8]; // System.UInt64 System.Decimal::ulomidLE uint64_t ___ulomidLE_9; }; #pragma pack(pop, tp) struct { char ___ulomidLE_9_OffsetPadding_forAlignmentOnly[8]; uint64_t ___ulomidLE_9_forAlignmentOnly; }; }; }; // System.Double struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F { // System.Double System.Double::m_value double ___m_value_0; }; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F { }; // 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.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; }; // System.OrdinalComparer struct OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170 : public StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06 { // System.Boolean System.OrdinalComparer::_ignoreCase bool ____ignoreCase_4; }; // 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; }; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3; }; // 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.TimeSpan struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A { // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; }; // 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]; }; }; // Interop/ErrorInfo struct ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 { // Interop/Error Interop/ErrorInfo::_error int32_t ____error_0; // System.Int32 Interop/ErrorInfo::_rawErrno int32_t ____rawErrno_1; }; // System.String/ProbabilisticMap struct ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B { union { struct { union { }; }; uint8_t ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B__padding[32]; }; }; // System.TimeZoneInfo/TZifHead struct TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 { // System.UInt32 System.TimeZoneInfo/TZifHead::Magic uint32_t ___Magic_0; // System.TimeZoneInfo/TZVersion System.TimeZoneInfo/TZifHead::Version uint8_t ___Version_1; // System.UInt32 System.TimeZoneInfo/TZifHead::IsGmtCount uint32_t ___IsGmtCount_2; // System.UInt32 System.TimeZoneInfo/TZifHead::IsStdCount uint32_t ___IsStdCount_3; // System.UInt32 System.TimeZoneInfo/TZifHead::LeapCount uint32_t ___LeapCount_4; // System.UInt32 System.TimeZoneInfo/TZifHead::TimeCount uint32_t ___TimeCount_5; // System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount uint32_t ___TypeCount_6; // System.UInt32 System.TimeZoneInfo/TZifHead::CharCount uint32_t ___CharCount_7; }; // Interop/Sys/DirectoryEntry struct DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 { // System.Byte* Interop/Sys/DirectoryEntry::Name uint8_t* ___Name_0; // System.Int32 Interop/Sys/DirectoryEntry::NameLength int32_t ___NameLength_1; // Interop/Sys/NodeType Interop/Sys/DirectoryEntry::InodeType int32_t ___InodeType_2; }; // Interop/Sys/FileStatus struct FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 { // Interop/Sys/FileStatusFlags Interop/Sys/FileStatus::Flags int32_t ___Flags_0; // System.Int32 Interop/Sys/FileStatus::Mode int32_t ___Mode_1; // System.UInt32 Interop/Sys/FileStatus::Uid uint32_t ___Uid_2; // System.UInt32 Interop/Sys/FileStatus::Gid uint32_t ___Gid_3; // System.Int64 Interop/Sys/FileStatus::Size int64_t ___Size_4; // System.Int64 Interop/Sys/FileStatus::ATime int64_t ___ATime_5; // System.Int64 Interop/Sys/FileStatus::ATimeNsec int64_t ___ATimeNsec_6; // System.Int64 Interop/Sys/FileStatus::MTime int64_t ___MTime_7; // System.Int64 Interop/Sys/FileStatus::MTimeNsec int64_t ___MTimeNsec_8; // System.Int64 Interop/Sys/FileStatus::CTime int64_t ___CTime_9; // System.Int64 Interop/Sys/FileStatus::CTimeNsec int64_t ___CTimeNsec_10; // System.Int64 Interop/Sys/FileStatus::BirthTime int64_t ___BirthTime_11; // System.Int64 Interop/Sys/FileStatus::BirthTimeNsec int64_t ___BirthTimeNsec_12; // System.Int64 Interop/Sys/FileStatus::Dev int64_t ___Dev_13; // System.Int64 Interop/Sys/FileStatus::Ino int64_t ___Ino_14; // System.UInt32 Interop/Sys/FileStatus::UserFlags uint32_t ___UserFlags_15; }; // System.ByReference`1 struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC { // System.IntPtr System.ByReference`1::_value intptr_t ____value_0; }; // System.ByReference`1 struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 { // System.IntPtr System.ByReference`1::_value intptr_t ____value_0; }; // System.Nullable`1 struct Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value_1; }; // System.DateTimeOffset struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 { // System.DateTime System.DateTimeOffset::_dateTime DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime_3; // System.Int16 System.DateTimeOffset::_offsetMinutes int16_t ____offsetMinutes_4; }; // System.Globalization.DaylightTimeStruct struct DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 { // System.DateTime System.Globalization.DaylightTimeStruct::Start DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Start_0; // System.DateTime System.Globalization.DaylightTimeStruct::End DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___End_1; // System.TimeSpan System.Globalization.DaylightTimeStruct::Delta TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Delta_2; }; // Native definition for P/Invoke marshalling of System.Globalization.DaylightTimeStruct struct DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1_marshaled_pinvoke { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Start_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Delta_2; }; // Native definition for COM marshalling of System.Globalization.DaylightTimeStruct struct DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1_marshaled_com { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Start_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Delta_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; }; // 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.IO.FileStream struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE { // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_6; // System.String System.IO.FileStream::name String_t* ___name_7; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___safeHandle_8; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_9; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_10; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_11; // System.Boolean System.IO.FileStream::owner bool ___owner_12; // System.Boolean System.IO.FileStream::async bool ___async_13; // System.Boolean System.IO.FileStream::canseek bool ___canseek_14; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_15; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_16; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_17; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_18; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_19; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_20; }; // System.Globalization.GregorianCalendarHelper struct GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723 : public RuntimeObject { // System.Int32 System.Globalization.GregorianCalendarHelper::m_maxYear int32_t ___m_maxYear_2; // System.Int32 System.Globalization.GregorianCalendarHelper::m_minYear int32_t ___m_minYear_3; // System.Globalization.Calendar System.Globalization.GregorianCalendarHelper::m_Cal Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___m_Cal_4; // System.Globalization.EraInfo[] System.Globalization.GregorianCalendarHelper::m_EraInfo EraInfoU5BU5D_t3FC74518173AF52EC901FC118D4BD9A11DE89BAC* ___m_EraInfo_5; // System.Int32[] System.Globalization.GregorianCalendarHelper::m_eras Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_eras_6; // System.DateTime System.Globalization.GregorianCalendarHelper::m_minDate DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___m_minDate_7; }; // System.OrdinalIgnoreCaseComparer struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0 : public OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170 { }; // 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.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4 : public RuntimeObject { // System.String System.Globalization.TextInfo::m_listSeparator String_t* ___m_listSeparator_0; // System.Boolean System.Globalization.TextInfo::m_isReadOnly bool ___m_isReadOnly_1; // System.String System.Globalization.TextInfo::m_cultureName String_t* ___m_cultureName_2; // System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_3; // System.String System.Globalization.TextInfo::m_textInfoName String_t* ___m_textInfoName_4; // System.Nullable`1 System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___m_IsAsciiCasingSameAsInvariant_5; // System.String System.Globalization.TextInfo::customCultureName String_t* ___customCultureName_7; // System.Int32 System.Globalization.TextInfo::m_nDataItem int32_t ___m_nDataItem_8; // System.Boolean System.Globalization.TextInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Int32 System.Globalization.TextInfo::m_win32LangID int32_t ___m_win32LangID_10; }; // 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; }; // System.Array/RawData struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0 : public RuntimeObject { // System.IntPtr System.Array/RawData::Bounds intptr_t ___Bounds_0; // System.IntPtr System.Array/RawData::Count intptr_t ___Count_1; // System.Byte System.Array/RawData::Data uint8_t ___Data_2; }; // Native definition for P/Invoke marshalling of System.Array/RawData struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_pinvoke { intptr_t ___Bounds_0; intptr_t ___Count_1; uint8_t ___Data_2; }; // Native definition for COM marshalling of System.Array/RawData struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_com { intptr_t ___Bounds_0; intptr_t ___Count_1; uint8_t ___Data_2; }; // System.TimeZoneInfo/TZifType struct TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 { // System.TimeSpan System.TimeZoneInfo/TZifType::UtcOffset TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___UtcOffset_0; // System.Boolean System.TimeZoneInfo/TZifType::IsDst bool ___IsDst_1; // System.Byte System.TimeZoneInfo/TZifType::AbbreviationIndex uint8_t ___AbbreviationIndex_2; }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TZifType struct TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___UtcOffset_0; int32_t ___IsDst_1; uint8_t ___AbbreviationIndex_2; }; // Native definition for COM marshalling of System.TimeZoneInfo/TZifType struct TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___UtcOffset_0; int32_t ___IsDst_1; uint8_t ___AbbreviationIndex_2; }; // System.TimeZoneInfo/TransitionTime struct TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 { // System.DateTime System.TimeZoneInfo/TransitionTime::_timeOfDay DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____timeOfDay_0; // System.Byte System.TimeZoneInfo/TransitionTime::_month uint8_t ____month_1; // System.Byte System.TimeZoneInfo/TransitionTime::_week uint8_t ____week_2; // System.Byte System.TimeZoneInfo/TransitionTime::_day uint8_t ____day_3; // System.DayOfWeek System.TimeZoneInfo/TransitionTime::_dayOfWeek int32_t ____dayOfWeek_4; // System.Boolean System.TimeZoneInfo/TransitionTime::_isFixedDateRule bool ____isFixedDateRule_5; }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____timeOfDay_0; uint8_t ____month_1; uint8_t ____week_2; uint8_t ____day_3; int32_t ____dayOfWeek_4; int32_t ____isFixedDateRule_5; }; // Native definition for COM marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____timeOfDay_0; uint8_t ____month_1; uint8_t ____week_2; uint8_t ____day_3; int32_t ____dayOfWeek_4; int32_t ____isFixedDateRule_5; }; // System.ReadOnlySpan`1 struct ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D { // System.ByReference`1 System.ReadOnlySpan`1::_pointer ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0; // System.Int32 System.ReadOnlySpan`1::_length int32_t ____length_1; }; // System.ReadOnlySpan`1 struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 { // System.ByReference`1 System.ReadOnlySpan`1::_pointer ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0; // System.Int32 System.ReadOnlySpan`1::_length int32_t ____length_1; }; // System.Span`1 struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 { // System.ByReference`1 System.Span`1::_pointer ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0; // System.Int32 System.Span`1::_length int32_t ____length_1; }; // System.Span`1 struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D { // System.ByReference`1 System.Span`1::_pointer ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0; // System.Int32 System.Span`1::_length int32_t ____length_1; }; // System.AggregateException struct AggregateException_t51B6205846DFB356B94452702201DD239D44422F : public Exception_t { // System.Collections.ObjectModel.ReadOnlyCollection`1 System.AggregateException::m_innerExceptions ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* ___m_innerExceptions_18; }; // System.ApplicationException struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t { }; // System.InvalidTimeZoneException struct InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD : public Exception_t { }; // 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; }; // 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; }; // System.TimeZoneInfo/AdjustmentRule struct AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07 : public RuntimeObject { // System.DateTime System.TimeZoneInfo/AdjustmentRule::_dateStart DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateStart_0; // System.DateTime System.TimeZoneInfo/AdjustmentRule::_dateEnd DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateEnd_1; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::_daylightDelta TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____daylightDelta_2; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::_daylightTransitionStart TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ____daylightTransitionStart_3; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::_daylightTransitionEnd TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ____daylightTransitionEnd_4; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::_baseUtcOffsetDelta TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____baseUtcOffsetDelta_5; // System.Boolean System.TimeZoneInfo/AdjustmentRule::_noDaylightTransitions bool ____noDaylightTransitions_6; }; // System.Comparison`1 struct Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301 : public MulticastDelegate_t { }; // System.Func`2 struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F : public MulticastDelegate_t { }; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12 : public MulticastDelegate_t { }; // System.Predicate`1 struct Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C : public MulticastDelegate_t { }; // System.Buffers.SpanAction`2> struct SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7 : 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.ArithmeticException struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42 : public MulticastDelegate_t { }; // System.AsyncCallback struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t { }; // System.BadImageFormatException struct BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.BadImageFormatException::_fileName String_t* ____fileName_18; // System.String System.BadImageFormatException::_fusionLog String_t* ____fusionLog_19; }; // System.FormatException struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.IO.IOException struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidCastException struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.OutOfMemoryException struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Security.SecurityException struct SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Security.SecurityException::permissionState String_t* ___permissionState_18; }; // System.Runtime.Serialization.SerializationException struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.UnauthorizedAccessException struct UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { // System.Object System.ArgumentOutOfRangeException::_actualValue RuntimeObject* ____actualValue_19; }; // System.OverflowException struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA { }; // System.Buffers.ArrayPool`1 struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_StaticFields { // System.Buffers.ArrayPool`1 System.Buffers.ArrayPool`1::k__BackingField ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ___U3CSharedU3Ek__BackingField_0; }; // System.Buffers.ArrayPool`1 // System.EmptyArray`1 struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields { // T[] System.EmptyArray`1::Value ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value_0; }; // System.EmptyArray`1 // System.Collections.Generic.List`1 struct List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ExceptionDispatchInfoU5BU5D_t98D150CF7B222A428B342E1D1F7B69D64BE1A536* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.ObjectModel.ReadOnlyCollection`1 // System.Collections.ObjectModel.ReadOnlyCollection`1 // System.Reflection.Assembly // System.Reflection.Assembly // System.Attribute // System.Attribute // System.BitConverter struct BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields { // System.Boolean System.BitConverter::IsLittleEndian bool ___IsLittleEndian_0; }; // System.BitConverter // System.CharEnumerator // System.CharEnumerator // System.Convert struct Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields { // System.SByte[] System.Convert::s_decodingMap SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* ___s_decodingMap_0; // System.Type[] System.Convert::ConvertTypes TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___ConvertTypes_1; // System.Type System.Convert::EnumType Type_t* ___EnumType_2; // System.Char[] System.Convert::base64Table CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___base64Table_3; // System.Object System.Convert::DBNull RuntimeObject* ___DBNull_4; }; // System.Convert // System.Globalization.CultureInfo 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.Globalization.CultureInfo::shared_by_number Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36; // System.Collections.Generic.Dictionary`2 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; }; // System.Globalization.CultureInfo // System.DBNull struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields { // System.DBNull System.DBNull::Value DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0; }; // System.DBNull // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_StaticFields { // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_invariantInfo DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_invariantInfo_0; // System.Char[] System.Globalization.DateTimeFormatInfo::s_monthSpaces CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_monthSpaces_46; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_jajpDTFI_80; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_zhtwDTFI_81; }; // System.Globalization.DateTimeFormatInfo // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields { // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7; // System.Collections.Generic.Dictionary`2 modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject* ___s_InternalSyncObject_15; }; // System.Text.Encoding // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields { // System.EventArgs System.EventArgs::Empty EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0; }; // System.EventArgs // System.Runtime.ExceptionServices.ExceptionDispatchInfo // System.Runtime.ExceptionServices.ExceptionDispatchInfo // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields { // System.Runtime.CompilerServices.ConditionalWeakTable`2 System.Collections.Hashtable::s_serializationInfoTable ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21; }; // System.Collections.Hashtable // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields { // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0; }; // System.Globalization.NumberFormatInfo // System.IO.Path struct Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields { // System.Char[] System.IO.Path::InvalidPathChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___InvalidPathChars_0; // System.Char System.IO.Path::AltDirectorySeparatorChar Il2CppChar ___AltDirectorySeparatorChar_1; // System.Char System.IO.Path::DirectorySeparatorChar Il2CppChar ___DirectorySeparatorChar_2; // System.Char System.IO.Path::PathSeparator Il2CppChar ___PathSeparator_3; // System.String System.IO.Path::DirectorySeparatorStr String_t* ___DirectorySeparatorStr_4; // System.Char System.IO.Path::VolumeSeparatorChar Il2CppChar ___VolumeSeparatorChar_5; // System.Char[] System.IO.Path::PathSeparatorChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___PathSeparatorChars_6; // System.Boolean System.IO.Path::dirEqualsVolume bool ___dirEqualsVolume_7; // System.Char[] System.IO.Path::trimEndCharsWindows CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimEndCharsWindows_8; // System.Char[] System.IO.Path::trimEndCharsUnix CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimEndCharsUnix_9; }; // System.IO.Path // System.Runtime.Serialization.SerializationInfo // System.Runtime.Serialization.SerializationInfo // System.Runtime.Serialization.SerializationInfoEnumerator // System.Runtime.Serialization.SerializationInfoEnumerator // System.String struct String_t_StaticFields { // System.String System.String::Empty String_t* ___Empty_6; }; // System.String // System.Text.StringBuilder // System.Text.StringBuilder // System.StringComparer struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields { // System.CultureAwareComparer System.StringComparer::s_invariantCulture CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCulture_0; // System.CultureAwareComparer System.StringComparer::s_invariantCultureIgnoreCase CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCultureIgnoreCase_1; // System.OrdinalCaseSensitiveComparer System.StringComparer::s_ordinal OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A* ___s_ordinal_2; // System.OrdinalIgnoreCaseComparer System.StringComparer::s_ordinalIgnoreCase OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* ___s_ordinalIgnoreCase_3; }; // System.StringComparer // System.TimeZone // System.TimeZone // System.BitConverter/<>c struct U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields { // System.BitConverter/<>c System.BitConverter/<>c::<>9 U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* ___U3CU3E9_0; // System.Buffers.SpanAction`2> System.BitConverter/<>c::<>9__38_0 SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* ___U3CU3E9__38_0_1; }; // System.BitConverter/<>c // System.TimeZoneInfo/<>c struct U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields { // System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* ___U3CU3E9_0; // System.Func`2 System.TimeZoneInfo/<>c::<>9__34_1 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__34_1_1; // System.Func`2 System.TimeZoneInfo/<>c::<>9__34_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__34_0_2; // System.Func`2 System.TimeZoneInfo/<>c::<>9__35_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__35_0_3; // System.Func`2 System.TimeZoneInfo/<>c::<>9__37_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__37_0_4; // System.Func`2 System.TimeZoneInfo/<>c::<>9__38_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__38_0_5; // System.Comparison`1 System.TimeZoneInfo/<>c::<>9__161_0 Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* ___U3CU3E9__161_0_6; }; // System.TimeZoneInfo/<>c // System.TimeZoneInfo/<>c__DisplayClass16_0 // System.TimeZoneInfo/<>c__DisplayClass16_0 // System.TimeZoneInfo/CachedData // System.TimeZoneInfo/CachedData // System.Nullable`1 // System.Nullable`1 // System.ValueTuple`3 // System.ValueTuple`3 // System.ValueTuple`3 // System.ValueTuple`3 // System.AssemblyLoadEventArgs // System.AssemblyLoadEventArgs // System.AttributeUsageAttribute struct AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_StaticFields { // System.AttributeUsageAttribute System.AttributeUsageAttribute::Default AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* ___Default_3; }; // System.AttributeUsageAttribute // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields { // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; }; // System.Boolean // System.Byte // System.Byte // System.CLSCompliantAttribute // System.CLSCompliantAttribute // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields { // System.Byte[] System.Char::s_categoryForLatin1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3; }; // System.Char // System.CurrentSystemTimeZone // System.CurrentSystemTimeZone // System.DateTime 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.DateTime // System.Decimal struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields { // System.Decimal System.Decimal::Zero Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_0; // System.Decimal System.Decimal::One Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_1; // System.Decimal System.Decimal::MinusOne Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_2; // System.Decimal System.Decimal::MaxValue Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_3; // System.Decimal System.Decimal::MinValue Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_4; }; // System.Decimal // System.Double // System.Double // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields { // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0; }; // System.Enum // System.Int16 // System.Int16 // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr struct IntPtr_t_StaticFields { // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; }; // System.IntPtr // System.SByte // System.SByte // System.Single // System.Single // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields { // System.IO.Stream System.IO.Stream::Null Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1; }; // System.IO.Stream // System.Runtime.Serialization.StreamingContext // System.Runtime.Serialization.StreamingContext // System.TimeSpan 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.TimeSpan // System.UInt16 // System.UInt16 // System.UInt32 // System.UInt32 // System.UInt64 // System.UInt64 // System.Void // System.Void // Interop/ErrorInfo // Interop/ErrorInfo // System.String/ProbabilisticMap // System.String/ProbabilisticMap // System.TimeZoneInfo/TZifHead // System.TimeZoneInfo/TZifHead // Interop/Sys/DirectoryEntry // Interop/Sys/DirectoryEntry // Interop/Sys/FileStatus // Interop/Sys/FileStatus // System.ByReference`1 // System.ByReference`1 // System.ByReference`1 // System.ByReference`1 // System.Nullable`1 // System.Nullable`1 // System.DateTimeOffset 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.DateTimeOffset // System.Globalization.DaylightTimeStruct // System.Globalization.DaylightTimeStruct // System.Delegate // System.Delegate // System.Exception struct Exception_t_StaticFields { // System.Object System.Exception::s_EDILock RuntimeObject* ___s_EDILock_0; }; // System.Exception // System.IO.FileStream struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_StaticFields { // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_recycle_4; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject* ___buf_recycle_lock_5; }; // System.IO.FileStream // System.Globalization.GregorianCalendarHelper struct GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_StaticFields { // System.Int32[] System.Globalization.GregorianCalendarHelper::DaysToMonth365 Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___DaysToMonth365_0; // System.Int32[] System.Globalization.GregorianCalendarHelper::DaysToMonth366 Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___DaysToMonth366_1; }; // System.Globalization.GregorianCalendarHelper // System.OrdinalIgnoreCaseComparer // System.OrdinalIgnoreCaseComparer // System.RuntimeFieldHandle // System.RuntimeFieldHandle // System.RuntimeTypeHandle // System.RuntimeTypeHandle // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4_StaticFields { // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___s_Invariant_6; }; // System.Globalization.TextInfo // System.TimeZoneInfo 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.TimeZoneInfo // System.Array/RawData // System.Array/RawData // System.TimeZoneInfo/TZifType // System.TimeZoneInfo/TZifType // System.TimeZoneInfo/TransitionTime // System.TimeZoneInfo/TransitionTime // System.ReadOnlySpan`1 // System.ReadOnlySpan`1 // System.ReadOnlySpan`1 // System.ReadOnlySpan`1 // System.Span`1 // System.Span`1 // System.Span`1 // System.Span`1 // System.AggregateException // System.AggregateException // System.ApplicationException // System.ApplicationException // System.InvalidTimeZoneException // System.InvalidTimeZoneException // System.SystemException // System.SystemException // System.Type 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; }; // System.Type // System.TimeZoneInfo/AdjustmentRule // System.TimeZoneInfo/AdjustmentRule // System.Comparison`1 // System.Comparison`1 // System.Func`2 // System.Func`2 // System.Predicate`1 // System.Predicate`1 // System.Predicate`1 // System.Predicate`1 // System.Buffers.SpanAction`2> // System.Buffers.SpanAction`2> // System.Action // System.Action // System.ArgumentException // System.ArgumentException // System.ArithmeticException // System.ArithmeticException // System.ArrayTypeMismatchException // System.ArrayTypeMismatchException // System.AssemblyLoadEventHandler // System.AssemblyLoadEventHandler // System.AsyncCallback // System.AsyncCallback // System.BadImageFormatException // System.BadImageFormatException // System.FormatException // System.FormatException // System.IO.IOException // System.IO.IOException // System.InvalidCastException // System.InvalidCastException // System.InvalidOperationException // System.InvalidOperationException // System.NotSupportedException // System.NotSupportedException // System.OutOfMemoryException // System.OutOfMemoryException // System.Security.SecurityException // System.Security.SecurityException // System.Runtime.Serialization.SerializationException struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_StaticFields { // System.String System.Runtime.Serialization.SerializationException::s_nullMessage String_t* ___s_nullMessage_18; }; // System.Runtime.Serialization.SerializationException // System.UnauthorizedAccessException // System.UnauthorizedAccessException // System.ArgumentNullException // System.ArgumentNullException // System.ArgumentOutOfRangeException // System.ArgumentOutOfRangeException // System.OverflowException // System.OverflowException #ifdef __clang__ #pragma clang diagnostic pop #endif // 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.DateTime[] struct DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1 : public RuntimeArray { ALIGN_FIELD (8) DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D m_Items[1]; inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* 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, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D value) { m_Items[index] = value; } }; // System.TimeZoneInfo/TZifType[] struct TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98 : public RuntimeArray { ALIGN_FIELD (8) TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 m_Items[1]; inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* 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, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 value) { m_Items[index] = 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.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA : public RuntimeArray { ALIGN_FIELD (8) AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* m_Items[1]; inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** 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, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* 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; } }; // 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.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.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray { ALIGN_FIELD (8) Delegate_t* m_Items[1]; inline Delegate_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_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, Delegate_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Exception[] struct ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C : public RuntimeArray { ALIGN_FIELD (8) Exception_t* m_Items[1]; inline Exception_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Exception_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, Exception_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Exception_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Exception_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Exception_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // 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.SByte[] struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913 : public RuntimeArray { ALIGN_FIELD (8) int8_t m_Items[1]; inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_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, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_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.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.Void System.Span`1::.ctor(System.Void*,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ; // System.Int32 System.ReadOnlySpan`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ; // System.Buffers.ArrayPool`1 System.Buffers.ArrayPool`1::get_Shared() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_gshared_inline (const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.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::Add(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ; // System.Boolean System.Predicate`1::Invoke(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::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) ; // T System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // T[] System.Collections.Generic.List`1::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::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::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_gshared (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_gshared (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_value, const RuntimeMethod* method) ; // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2_gshared (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // TResult System.Func`2::Invoke(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_gshared_inline (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___0_arg, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ; // T System.Nullable`1::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 System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::AddRange(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ; // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared (Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___0_comparison, const RuntimeMethod* method) ; // T[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (const RuntimeMethod* method) ; // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::.ctor(System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ; // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_mE6BED30C94187FC8CC2C7E5CAF0163455240223C_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, const RuntimeMethod* method) ; // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::CopyTo(T[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m2AB7AC16F5BDBFEB664040F852CC922277C872F2_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ; // T System.Collections.ObjectModel.ReadOnlyCollection`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_get_Item_m88FE6EF1106EAB22F63554956C77E25339159136_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Int32 System.Span`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.Span`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_gshared (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_span, const RuntimeMethod* method) ; // System.Void System.ValueTuple`3::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mE0A5AB1D30678D2D6913FC8C3E7EBEDB4D5B5801_gshared (ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987* __this, RuntimeObject* ___0_item1, int32_t ___1_item2, int32_t ___2_item3, const RuntimeMethod* method) ; // System.Void System.Buffers.SpanAction`2>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpanAction_2__ctor_m4BBCE8F9C0E8FCC935E1765742799AEAD48606AE_gshared (SpanAction_2_t65B015FEFE1F64814AC2EFA0E19A38B1CFC53178* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // System.String System.String::Create>(System.Int32,TState,System.Buffers.SpanAction`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Create_TisValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987_mF6724B93867EE2A12D4053F46E75806CF9557C3B_gshared (int32_t ___0_length, ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 ___1_state, SpanAction_2_t65B015FEFE1F64814AC2EFA0E19A38B1CFC53178* ___2_action, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[],System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) ; // System.Int32 System.ReadOnlySpan`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::op_Implicit(T[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_gshared (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[]) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90_gshared (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_span, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::Slice(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___0_start, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::Slice(System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.Span`1::op_Implicit(System.Span`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method) ; // System.Int32 System.Span`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(System.Void*,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::op_Implicit(T[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91_gshared (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(T&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(T&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, 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 System.TimeZoneInfo::TZif_ParseRaw(System.Byte[],System.TimeZoneInfo/TZifHead&,System.DateTime[]&,System.Byte[]&,System.TimeZoneInfo/TZifType[]&,System.String&,System.Boolean[]&,System.Boolean[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseRaw_m5BD8860EAEEBD32114790C756159AB486201E9CC (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* ___1_t, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** ___2_dts, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___3_typeOfLocalTime, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** ___4_transitionType, String_t** ___5_zoneAbbreviations, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___6_StandardTime, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___7_GmtTime, String_t** ___8_futureTransitionsPosixFormat, const RuntimeMethod* method) ; // System.DateTime System.DateTime::get_UtcNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA (const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_GetZoneAbbreviation(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_GetZoneAbbreviation_mE36A95F754C060C08F283870D696E5743130B61C (String_t* ___0_zoneAbbreviations, int32_t ___1_index, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, 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.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.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 ___0_hours, int32_t ___1_minutes, int32_t ___2_seconds, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRules(System.TimeZoneInfo/AdjustmentRule[]&,System.TimeSpan,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRules_mC7B2337DDFAB6BCD72992E6BEAD14DB31CB47E8A (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** ___0_rules, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___2_dts, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_typeOfLocalTime, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___4_transitionType, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___5_StandardTime, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___6_GmtTime, String_t* ___7_futureTransitionsPosixFormat, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::ValidateTimeZoneInfo(System.String,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule[],System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189 (String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___2_adjustmentRules, bool* ___3_adjustmentRulesSupportDst, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZoneFromTzFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZoneFromTzFile_m406BA408BA70956955B8EF3843842617497B2983 (const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetTzEnvironmentVariable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTzEnvironmentVariable_mDA0D1946DFB444F6961D6432DD368349D6027A42 (const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TryLoadTzFile(System.String,System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryLoadTzFile_mBECD00A281BF8BA1E2D283BD7EADDB6536855032 (String_t* ___0_tzFilePath, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___1_rawData, String_t** ___2_id, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetTimeZoneDirectory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectory_mAA0ADCDCA238A54CEAF1CF2F8454B599FAA3BE98 (const RuntimeMethod* method) ; // System.String System.IO.Path::Combine(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE (String_t* ___0_path1, String_t* ___1_path2, 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.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mAF8CC6EC1CB916789ABB16A02C032F89E508C21A (String_t* ___0_variable, const RuntimeMethod* method) ; // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, 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 ___0_startIndex, const RuntimeMethod* method) ; // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m95E329ABBE3EAD6750FE1989BBA6884457136D4A (String_t* ___0_path, const RuntimeMethod* method) ; // System.Byte[] System.IO.File::ReadAllBytes(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* File_ReadAllBytes_m704CBBA3F130C94F5A3E0BE2A93D9E9D79DC3E24 (String_t* ___0_path, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::FindTimeZoneIdUsingReadLink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneIdUsingReadLink_m4F3779AE7F83741C34E99803BCA0F1844BD8B895 (String_t* ___0_tzFilePath, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::FindTimeZoneId(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneId_mDDD86DF4E88119C16DB85477DA18FCC4E2CC4F47 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, const RuntimeMethod* method) ; // System.String Interop/Sys::ReadLink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Sys_ReadLink_mE2126165DC54C9CA53BE2D09D90922DF39C7BE74 (String_t* ___0_path, 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* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(System.Void*,System.Int32) inline void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) { (( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline)(__this, ___0_pointer, ___1_length, method); } // System.ReadOnlySpan`1 Interop/Sys/DirectoryEntry::GetName(System.Span`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996 (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_buffer, const RuntimeMethod* method) ; // System.Int32 System.ReadOnlySpan`1::get_Length() inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method); } // System.ReadOnlySpan`1 System.MemoryExtensions::AsSpan(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) ; // System.String System.IO.Path::Join(System.ReadOnlySpan`1,System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Join_mA8659405C90B9441AA2249C7D45B587808ABCB3F (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_path1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_path2, const RuntimeMethod* method) ; // System.Int32 Interop/Sys::GetReadDirRBufferSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_GetReadDirRBufferSize_m43BFD2BC9EB308361321A3EB229F557ED5320C4E (const RuntimeMethod* method) ; // System.Buffers.ArrayPool`1 System.Buffers.ArrayPool`1::get_Shared() inline ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_inline (const RuntimeMethod* method) { return (( ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* (*) (const RuntimeMethod*))ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_gshared_inline)(method); } // System.IntPtr Interop/Sys::OpenDir(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Sys_OpenDir_m5E0BB1A74A5E5CA1CFDDBE86C2C281F452745854 (String_t* ___0_path, const RuntimeMethod* method) ; // System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271 (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ; // Interop/ErrorInfo Interop/Sys::GetLastErrorInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Sys_GetLastErrorInfo_m1C1BB8341DD84927BD33E6240585E753D4B3572B (const RuntimeMethod* method) ; // System.Exception Interop::GetExceptionForIoErrno(Interop/ErrorInfo,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Interop_GetExceptionForIoErrno_m701F71EF26E8E84C4DB2278B54D7F89BD522C7E7 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_errorInfo, String_t* ___1_path, bool ___2_isDirectory, const RuntimeMethod* method) ; // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ; // System.Int32 Interop/Sys::CloseDir(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_CloseDir_m995426A78D39BF688B0A69FC2916DA3125AF193E (intptr_t ___0_dir, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetDirectoryEntryFullPath(Interop/Sys/DirectoryEntry&,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetDirectoryEntryFullPath_mC0D4A09E850135810DCE3CD708A010951F60E31E (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* ___0_dirent, String_t* ___1_currentPath, const RuntimeMethod* method) ; // System.Int32 Interop/Sys::Stat(System.String,Interop/Sys/FileStatus&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Stat_m335FF7F9EF8D4ADB75EFEF4365576E163166BD16 (String_t* ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method) { (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method) { (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method); } // System.Boolean System.Predicate`1::Invoke(T) inline bool Predicate_1_Invoke_m180565420FDCD7211D85CB31534D98770D88A4FF_inline (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* __this, String_t* ___0_obj, const RuntimeMethod* method) { return (( bool (*) (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C*, String_t*, const RuntimeMethod*))Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline)(__this, ___0_obj, method); } // System.Int32 Interop/Sys::ReadDirR(System.IntPtr,System.Byte*,System.Int32,Interop/Sys/DirectoryEntry&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ReadDirR_m67A4E0E89B4047AA80821C822AED766612B01CFA (intptr_t ___0_dir, uint8_t* ___1_buffer, int32_t ___2_bufferSize, DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* ___3_outputEntry, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // T System.Collections.Generic.List`1::get_Item(System.Int32) inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method) { return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method); } // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) inline void List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method) { (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___0_index, method); } // System.Void System.TimeZoneInfo/<>c__DisplayClass16_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass16_0__ctor_mBA6BC752E40ECF2E8E0A473CF1B047F750FF5171 (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* __this, const RuntimeMethod* method) ; // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_m792445D8ACC019EE3CE897994AF6C04721045A7E (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { (( void (*) (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared)(__this, ___0_object, ___1_method, method); } // System.Void System.TimeZoneInfo::EnumerateFilesRecursively(System.String,System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_EnumerateFilesRecursively_m2984DD3C4C89C29B20ACC0A4E76C6267F877E6C9 (String_t* ___0_path, Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* ___1_condition, const RuntimeMethod* method) ; // System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_m059A8F48B2F463D020113605765EC40F2D54E928 (FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* __this, String_t* ___0_path, int32_t ___1_mode, int32_t ___2_access, int32_t ___3_share, int32_t ___4_bufferSize, const RuntimeMethod* method) ; // System.Exception System.IO.Error::GetEndOfFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_GetEndOfFile_mC4A9C2E38EE4D3B391EF73E7A17A4437417973C4 (const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TryGetLocalTzFile(System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetLocalTzFile_mFB5811C15660015CD59860D0074AF01C1A0FAD57 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___0_rawData, String_t** ___1_id, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::GetTimeZoneFromTzData(System.Byte[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetTimeZoneFromTzData_m70C74CA0E884FD4C84A2558BDC3CE79E87393E4D (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, String_t* ___1_id, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::CreateLocalUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateLocalUnity_m2CC27D4772C2E7C6F9180DF0845B3F46C6AFCD12 (const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::get_Utc() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Utc_m0690BFE721AA48181F69883884DDEFCC81EDDE0D_inline (const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::.ctor(System.Byte[],System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, String_t* ___1_id, bool ___2_dstDisabled, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetTimeZoneDirectoryUnity() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectoryUnity_mC243B810BBC87D97D387CB623C7B3ECE3DB6ED32_inline (const RuntimeMethod* method) ; // System.Boolean System.String::EndsWith(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m1345909BD17FAD2AE0F70BC1B5CFC2010CF226B0 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F (const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, bool* ___2_isDaylightSavings, bool* ___3_isAmbiguousLocalDst, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRule(System.Int32&,System.TimeSpan,System.Collections.Generic.List`1,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRule_m0A179DAD79ECA0C512178EBE8CD620CDAFAF58E5 (int32_t* ___0_index, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeZoneBaseUtcOffset, List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* ___2_rulesList, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___3_dts, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___4_typeOfLocalTime, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___5_transitionTypes, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___6_StandardTime, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___7_GmtTime, String_t* ___8_futureTransitionsPosixFormat, const RuntimeMethod* method) ; // T[] System.Collections.Generic.List`1::ToArray() inline AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260 (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, const RuntimeMethod* method) { return (( AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method); } // System.Boolean System.DateTime::op_Equality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Equality_m568A6320E27F3F7708C77BF8751925C8775DD921 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_d2, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // System.TimeZoneInfo/TZifType System.TimeZoneInfo::TZif_GetEarlyDateTransitionType(System.TimeZoneInfo/TZifType[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 TimeZoneInfo_TZif_GetEarlyDateTransitionType_m30B59582E42557DDD62A80CF9CD3AF9FD94BA579 (TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___0_transitionTypes, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::TZif_CalculateTransitionOffsetFromBase(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_transitionOffset, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeZoneBaseUtcOffset, 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 ___0_value, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___5_baseUtcOffsetDelta, bool ___6_noDaylightTransitions, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::IsValidAdjustmentRuleOffest(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_adjustmentRule, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::NormalizeAdjustmentRuleOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_NormalizeAdjustmentRuleOffset_mC4F4399C2DCDAAFF3E0AB3D159BC2048841E2203 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** ___1_adjustmentRule, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_item, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method); } // System.DateTime System.DateTime::AddMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::TZif_CreateAdjustmentRuleForPosixFormat(System.String,System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_TZif_CreateAdjustmentRuleForPosixFormat_m7087938F3EC5AA7335616A5ABB2904F901D0475E (String_t* ___0_posixFormat, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_startTransitionDate, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_timeZoneBaseUtcOffset, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::op_Subtraction(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Subtraction_m56EC225AACB5E7C91E29A2ECB634B658A63289F7 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ; // System.Void System.InvalidTimeZoneException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TZif_ParsePosixFormat(System.String,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParsePosixFormat_m3BC659F9A49FF44432E402B21404EE4DCEF91914 (String_t* ___0_posixFormat, String_t** ___1_standardName, String_t** ___2_standardOffset, String_t** ___3_daylightSavingsName, String_t** ___4_daylightSavingsOffset, String_t** ___5_start, String_t** ___6_startTime, String_t** ___7_end, String_t** ___8_endTime, const RuntimeMethod* method) ; // System.Nullable`1 System.TimeZoneInfo::TZif_ParseOffsetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 TimeZoneInfo_TZif_ParseOffsetString_m3BAD639153A20E90FD24C3B9AF09506515D9698F (String_t* ___0_offset, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::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::get_Value() inline TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3 (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) { return (( TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, const RuntimeMethod*))Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_gshared)(__this, method); } // System.TimeSpan System.TimeSpan::Negate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo::TZif_CreateTransitionTimeFromPosixRule(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A (String_t* ___0_date, String_t* ___1_time, const RuntimeMethod* method) ; // System.Boolean System.Int32::TryParse(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_mC928DE2FEC1C35ED5298BDDCA9868076E94B8A21 (String_t* ___0_s, int32_t* ___1_result, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) inline void Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_value, const RuntimeMethod* method) { (( void (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A, const RuntimeMethod*))Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_gshared)(__this, ___0_value, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::TryParseExact(System.String,System.String,System.IFormatProvider,System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_TryParseExact_m6736F3D7D2D1AF1345F85DD0466A371011C1761C (String_t* ___0_input, String_t* ___1_format, RuntimeObject* ___2_formatProvider, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___3_result, const RuntimeMethod* method) ; // System.Int32 System.TimeSpan::get_Seconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Seconds_m8CA21613DC31BD025C5D30D41BAD0ED50827578B (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, 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 ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, const RuntimeMethod* method) ; // System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TZif_ParseMDateRule(System.String,System.Int32&,System.Int32&,System.DayOfWeek&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParseMDateRule_m36506D047F326D1F9DBDB9BFEB1C70EE4832A832 (String_t* ___0_dateRule, int32_t* ___1_month, int32_t* ___2_week, int32_t* ___3_dayOfWeek, const RuntimeMethod* method) ; // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ParseTimeOfDay(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ParseTimeOfDay_m1F13382A2B856A4ABF19832D6C8F337990E0215C (String_t* ___0_time, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFloatingDateRule_mD28E1BEBB933C47A55017C515C8275ACFA56EB24 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_dayOfWeek, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_ParseJulianDay(System.String,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseJulianDay_mEEA1FBA86FA26806049A4C232A6B243E08EBC697 (String_t* ___0_date, int32_t* ___1_month, int32_t* ___2_day, 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 ___0_value, 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 ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.MemoryExtensions::AsSpan(System.String,System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline (String_t* ___0_text, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) ; // System.Boolean System.Int32::TryParse(System.ReadOnlySpan`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m8550F4C901F1DD82515EA088A46E6B3400B26A68 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t* ___1_result, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.MemoryExtensions::AsSpan(System.String,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_mCDA6B03F6605094C599D7865D23DFB6A04DEE3B6_inline (String_t* ___0_text, int32_t ___1_start, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixName(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixName_m2DA504DB22B1F27D155CAFF670EF88963126C4AE (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixOffset(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixOffset_mB4DBF456E3386E266967C8086CE2509FB46D557F (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_ParsePosixDateTime(System.String,System.Int32&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParsePosixDateTime_mD6602DC6D53A37CDD770776A65E8789EA2916BB8 (String_t* ___0_posixFormat, int32_t* ___1_index, String_t** ___2_date, String_t** ___3_time, const RuntimeMethod* method) ; // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2 (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { (( void (*) (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2_gshared)(__this, ___0_object, ___1_method, method); } // System.String System.TimeZoneInfo::TZif_ParsePosixString(System.String,System.Int32&,System.Func`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5 (String_t* ___0_posixFormat, int32_t* ___1_index, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___2_breakCondition, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixDate(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixDate_m34BDBEE3008BC7B2D55C6B26FADB5B1BC92574A3 (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixTime(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixTime_m66A6243E6A91C09DAFFC9851F4552B1AB310DB7C (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) ; // TResult System.Func`2::Invoke(T) inline bool Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_inline (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___0_arg, const RuntimeMethod* method) { return (( bool (*) (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, Il2CppChar, const RuntimeMethod*))Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_gshared_inline)(__this, ___0_arg, 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 ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo::TZif_ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ; // System.Int64 System.TimeZoneInfo::TZif_ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToInt64_m381C7B020624BDAE9053360C6D87FD3B8A8D889B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ; // System.DateTimeOffset System.DateTimeOffset::FromUnixTimeSeconds(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_FromUnixTimeSeconds_mE1FA5E04CCCE8A0E8903C9DACC64526C721C0A47 (int64_t ___0_seconds, 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.Void System.TimeZoneInfo/TZifHead::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A (TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_index, const RuntimeMethod* method) ; // System.Int64 System.TimeZoneInfo::TZif_ToUnixTime(System.Byte[],System.Int32,System.TimeZoneInfo/TZVersion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToUnixTime_m74FF18291DDC0E41F6139FA0B088A911F61BB23A (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, uint8_t ___2_version, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::TZif_UnixTimeToDateTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TZif_UnixTimeToDateTime_mB0166067C1725CCFDEDBBA7553A62E493672930D (int64_t ___0_unixTime, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TZifType::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179 (TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_index, const RuntimeMethod* method) ; // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9 (const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::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); } // T System.Nullable`1::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.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___2_cachedData, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo/CachedData::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, 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.DateTimeKind System.TimeZoneInfo/CachedData::GetCorrespondingKind(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___0_timeZone, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_m360B114D8CE229DBBC4BFFD7259C2D4160A666D4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_sourceTimeZone, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___2_destinationTimeZone, int32_t ___3_flags, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m8B4B5000BCA5D3198D135352F31CADDD63F404E5 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mC4507388951E039D442BC10507424EC6D3D0C880 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, int32_t ___2_flags, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_sourceTimeZone, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___2_destinationTimeZone, int32_t ___3_flags, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___4_cachedData, 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* ___0_paramName, 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* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___1_ruleIndex, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::get_BaseUtcOffset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_BaseUtcOffsetDelta() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::op_Addition(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_HasDaylightSaving() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, 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.Globalization.DaylightTimeStruct System.TimeZoneInfo::GetDaylightTime(System.Int32,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, int32_t ___0_year, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___2_ruleIndex, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsInvalidTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsInvalidTime_m0A0AC529B12DFD095D006AE35DE084BF36C2DAAF (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___2_daylightTime, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsDaylightSavings(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavings_m985A11385C9178014051FD186B6CF32F16FD1162 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___2_daylightTime, int32_t ___3_flags, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_DaylightDelta() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, 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.DateTime System.TimeZoneInfo::ConvertUtcToTimeZone(System.Int64,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertUtcToTimeZone_m62356BCBE6F46091C1F72499E6688B8807D2F29F (int64_t ___0_ticks, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_destinationTimeZone, bool* ___2_isAmbiguousLocalDst, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, int32_t ___1_kind, bool ___2_isAmbiguousDst, 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 ___0_ticks, int32_t ___1_kind, const RuntimeMethod* method) ; // System.Boolean System.String::Equals(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCC34895D0DB2AD440C9D8767032215BC86B5C48B (String_t* ___0_a, String_t* ___1_b, int32_t ___2_comparisonType, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::HasSameRules(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___0_other, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::Equals(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_m986E0F7F5DF0E9FFE14F6D56BCE8742DE1C5A873 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___0_other, const RuntimeMethod* method) ; // System.StringComparer System.StringComparer::get_OrdinalIgnoreCase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_OrdinalIgnoreCase_m071AA1B1747345CCA058A3879EBDEBBA2EA4B169_inline (const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::Equals(System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_Equals_m5DF61E016305C51AC3468B26C32BDFD68E8C1CAD (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_other, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::get_DisplayName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m11B9CDA1B2BCE55E313D7D06D43DF635C7C87A79 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::.ctor(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, String_t* ___2_displayName, String_t* ___3_standardDisplayName, String_t* ___4_daylightDisplayName, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___5_adjustmentRules, bool ___6_disableDaylightSavingTime, const RuntimeMethod* method) ; // System.Object System.Array::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042 (RuntimeArray* __this, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0 (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161 (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, bool ___1_value, const RuntimeMethod* method) ; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ; // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, Type_t* ___1_type, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Boolean,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, bool ___1_dateTimeisUtc, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___2_ruleIndex, const RuntimeMethod* method) ; // System.DateTime System.DateTime::get_Date() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo::CompareAdjustmentRuleToDateTime(System.TimeZoneInfo/AdjustmentRule,System.TimeZoneInfo/AdjustmentRule,System.DateTime,System.DateTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_CompareAdjustmentRuleToDateTime_m742CAFF4CFBB4F4A172D2B99095AA2003D995472 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_rule, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_previousRule, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___2_dateTime, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___3_dateOnly, bool ___4_dateTimeisUtc, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method) { (( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___0_value, method); } // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateStart() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertToUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_daylightDelta, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_baseUtcOffsetDelta, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateEnd() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertToFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_daylightDelta, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_baseUtcOffsetDelta, bool ___3_convertToUtc, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m26EC9E50FA85D61B2DCEA55B176924111DE7D388 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, bool* ___2_isDaylightSavings, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_NoDaylightTransitions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetPreviousAdjustmentRule(System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___1_ruleIndex, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_daylightDelta, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_baseUtcOffsetDelta, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionStart() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::TransitionTimeToDateTime(System.Int32,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TransitionTimeToDateTime_mFA9EC26BD7A879068D5D09551A5286C907C20250 (int32_t ___0_year, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___1_transitionTime, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionEnd() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Void System.Globalization.DaylightTimeStruct::.ctor(System.DateTime,System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DaylightTimeStruct__ctor_m1A00C6B8123F9F3DD3D739155355DFC1E2ACA0CE (DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_start, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_end, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_delta, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsStartDateMarkerForBeginningOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsEndDateMarkerForEndOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_GreaterThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThan_m346676C36494E3CD2560A604996F88CEC3D845C0 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::op_UnaryNegation(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_UnaryNegation_mBD0F86C461C2CE1C9EAB62F2E41D28471CDE2493 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::CheckIsDst(System.DateTime,System.DateTime,System.DateTime,System.Boolean,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CheckIsDst_m2656B1D652DB37ECF0C9E051E0F4CDFF26A4B3EE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_startTime, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_time, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___2_endTime, bool ___3_ignoreYearAdjustment, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___4_rule, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsAmbiguousTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsAmbiguousTime_m67D31015F72F734D336900FDDECDDBEE8E544A02 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___2_daylightTime, const RuntimeMethod* method) ; // System.Boolean System.DateTime::IsAmbiguousDaylightSavingTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsStartOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc_m51CDB9591A7421A0CB8C410FCEA93544772F7710 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___2_ruleIndex, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method) ; // System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsEndOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc_m8B8363BCFB2A08847D34732523F0A6262A3EC78D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ; // System.DateTime System.DateTime::AddYears(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsDaylightSavingsFromUtc(System.DateTime,System.Int32,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1,System.Boolean&,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavingsFromUtc_m6EDDB4065B837BA4C64E6BD1FEBE42498539980D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, int32_t ___1_year, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_utc, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___3_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___4_ruleIndex, bool* ___5_isAmbiguousLocalDst, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___6_zone, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo/TransitionTime::get_TimeOfDay() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::get_IsFixedDateRule() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::get_Month() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977 (int32_t ___0_year, int32_t ___1_month, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::get_Day() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, 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.DateTime::get_Millisecond() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* 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 ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_millisecond, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::get_Week() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.DayOfWeek System.DateTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.DayOfWeek System.TimeZoneInfo/TransitionTime::get_DayOfWeek() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, 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 ___0_value, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::UtcOffsetOutOfRange(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_UtcOffsetOutOfRange_mBBBB62F03290525D1570CC6BD6E27F2E1CD985D9 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_offset, 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* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m4A0A221EAF67A47B10CB98369885098FA84E6F67 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_adjustmentRule, const RuntimeMethod* method) ; // System.Boolean System.CurrentSystemTimeZone::GetTimeZoneData(System.Int32,System.Int64[]&,System.String[]&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CurrentSystemTimeZone_GetTimeZoneData_mFC1D68546EAF36314223F5227C131ECAEA1F2D16 (int32_t ___0_year, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___1_data, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___2_names, bool* ___3_daylight_inverted, 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 ___0_ticks, const RuntimeMethod* method) ; // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ; // System.Boolean System.DateTime::Equals(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) ; // System.TimeSpan System.DateTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, 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 ___0_value, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_m42A40EDEF286C571A354680FD4B8D1F1F59EE606 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, const RuntimeMethod* method) ; // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::FromTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003 (int64_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_m75F60A7DA7C0BB62E4A21E7784E6FFE6D2D73CFE (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ; // System.String System.TimeSpan::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m5B50613FCD29547F04EAE305B2226CB9F490C432 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, String_t* ___0_format, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m093934F71A9B351911EE46311674ED463B180006 (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, String_t* ___3_str3, const RuntimeMethod* method) ; // System.Collections.Generic.List`1 System.TimeZoneInfo::CreateAdjustmentRule(System.Int32,System.Int64[]&,System.String[]&,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* TimeZoneInfo_CreateAdjustmentRule_mD15D002D8315CE9B06D046951D0D4BDF70510FB3 (int32_t ___0_year, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___1_data, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___2_names, String_t* ___3_standardNameCurrentYear, String_t* ___4_daylightNameCurrentYear, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::AddRange(System.Collections.Generic.IEnumerable`1) inline void List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___0_collection, method); } // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m7A877570D0AD7F3AAC5D08B1E242799C783C6323 (Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { (( void (*) (Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared)(__this, ___0_object, ___1_method, method); } // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) inline void List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* ___0_comparison, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301*, const RuntimeMethod*))List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared)(__this, ___0_comparison, method); } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_m1161C2D45FC8415C5E63E349C6B2D0CC08CF8F56 (String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, String_t* ___2_displayName, String_t* ___3_standardDisplayName, String_t* ___4_daylightDisplayName, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___5_adjustmentRules, bool ___6_disableDaylightSavingTime, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_m1079E3836F86BC963EE6B2651F76E968E85D03C2 (String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, String_t* ___2_displayName, String_t* ___3_standardDisplayName, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/CachedData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedData__ctor_m0B9484D26A9B27A4B34444C869F3F29F1908B6D4 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::FromHours(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromHours_mBF56E93F18A822E3EA1C593E8151F154709AC6BA (double ___0_value, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::op_Inequality(System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_op_Inequality_mF8FC2CB80F2B4FFACF9CFEB6398B4A2D23BA2336 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___0_t1, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___1_t2, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_Inequality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Inequality_mFB20C42AFEA4EEDE607352300499C54680797974 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_d2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___0_other, const RuntimeMethod* method) ; // System.Int32 System.DateTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/AdjustmentRule::ValidateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, bool ___5_noDaylightTransitions, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___5_baseUtcOffsetDelta, bool ___6_noDaylightTransitions, const RuntimeMethod* method) ; // System.Double System.TimeSpan::get_TotalHours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalHours_m753DFC812CEC8F9214EF5F9839C5B4A4DB0D2883 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, RuntimeObject* ___1_actualValue, String_t* ___2_message, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_value, const RuntimeMethod* method) ; // System.Object System.Runtime.Serialization.SerializationInfo::GetValueNoThrow(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfo_GetValueNoThrow_mC2AB5CF14F11B0C67E384D5CEF15C9ADDC754D06 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, Type_t* ___1_type, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::ValidateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_day, int32_t ___4_dayOfWeek, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_day, int32_t ___4_dayOfWeek, bool ___5_isFixedDateRule, const RuntimeMethod* method) ; // System.Void System.DateTime::GetDatePart(System.Int32&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t* ___0_year, int32_t* ___1_month, int32_t* ___2_day, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, uint8_t ___1_value, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZone(System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZone_mE1D084C0A44BDF36D73FF5428EBB8FCE6F346089 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___0_cachedData, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo/CachedData::CreateLocal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_CreateLocal_mD7DC783B2F7E554AD9C1513CE83D01D197707564 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::CompareTimeZoneFile(System.String,System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CompareTimeZoneFile_mC7AB75C3040CA3A1E3E608E1BB6D92ACFF8E6910 (String_t* ___0_filePath, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_buffer, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_rawData, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m735BCFFD24463BD5C90C9B0A386C9BCF979B4DA5 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, const RuntimeMethod* method) ; // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m8C1A38685D548E89FB8A05525B55261CC8D271B2 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Int32 System.DateTime::CompareTo(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, 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* ___0_message, const RuntimeMethod* method) ; // T[] System.Array::Empty() inline ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* Array_Empty_TisException_t_m79C5AE8419A8C51A465AC2EA5A3008854ED35713_inline (const RuntimeMethod* method) { return (( ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline)(method); } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::.ctor(System.Collections.Generic.IList`1) inline void ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) { (( void (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65_gshared)(__this, ___0_list, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m4D9F61E91F24BDFF09932C33BBB931DC620A52B4 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptions, const RuntimeMethod* method) ; // System.Void System.AggregateException::.ctor(System.String,System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m484E445B9CF69C95E9FF2286BD03F445EDB8B688 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___1_innerExceptions, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) inline void List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03 (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) { (( void (*) (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___0_collection, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptions, const RuntimeMethod* method) ; // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3 (Exception_t* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49BC0CD4DE05E205244170A24F20295004C9721F (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptionInfos, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) inline void List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF (List_1_t51CBE3470AD8637D621A307190A51C60E66F370B* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) { (( void (*) (List_1_t51CBE3470AD8637D621A307190A51C60E66F370B*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___0_collection, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptionInfos, const RuntimeMethod* method) ; // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_SourceException() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* __this, const RuntimeMethod* method) ; // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1::get_Count() inline int32_t ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, const RuntimeMethod*))ReadOnlyCollection_1_get_Count_mE6BED30C94187FC8CC2C7E5CAF0163455240223C_gshared)(__this, method); } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::CopyTo(T[],System.Int32) inline void ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___0_array, int32_t ___1_index, const RuntimeMethod* method) { (( void (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_CopyTo_m2AB7AC16F5BDBFEB664040F852CC922277C872F2_gshared)(__this, ___0_array, ___1_index, method); } // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, RuntimeObject* ___1_value, Type_t* ___2_type, const RuntimeMethod* method) ; // System.String System.Exception::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441 (Exception_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892 (int32_t ___0_capacity, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, 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 ___0_value, const RuntimeMethod* method) ; // T System.Collections.ObjectModel.ReadOnlyCollection`1::get_Item(System.Int32) inline Exception_t* ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, int32_t ___0_index, const RuntimeMethod* method) { return (( Exception_t* (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_get_Item_m88FE6EF1106EAB22F63554956C77E25339159136_gshared)(__this, ___0_index, method); } // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::set_Length(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0 (StringBuilder_t* ___0_sb, 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.String System.Exception::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m86C837E2A0387AD13424708D0F9292A27FA06A4B (Exception_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::AppendLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E (StringBuilder_t* __this, RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method) ; // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.SystemException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Void System.SystemException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ; // System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.String System.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF (const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Void System.ArgumentException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException_GetObjectData_m203105469CF041A816427B18882BCFAF7193EA67 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.String System.ArgumentException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentException_get_Message_m78A896B7D565DAFF78B1987C12FB40374EE1C628 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) ; // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method) ; // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ; // System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mB1DAD99081C9A5BFCC36040E1979D6CDB6F0BEA0 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, int32_t ___0_validOn, const RuntimeMethod* method) ; // System.Void System.BadImageFormatException::SetMessageField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2CF6F9D64962C849553996493715CBE21F6D970A (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) ; // System.Int32 System.Exception::get_HResult() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline (Exception_t* __this, const RuntimeMethod* method) ; // System.String System.IO.FileLoadException::FormatFileLoadExceptionMessage(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileLoadException_FormatFileLoadExceptionMessage_m63C4CD06A5448BE67FFB3F8DD20E75607D296A88 (String_t* ___0_fileName, int32_t ___1_hResult, const RuntimeMethod* method) ; // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09 (Exception_t* __this, const RuntimeMethod* method) ; // System.Exception System.Exception::get_InnerException() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method) ; // System.Int32 System.Span`1::get_Length() inline int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) { return (( int32_t (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, const RuntimeMethod*))Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline)(__this, method); } // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.Span`1) inline uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6 (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_span, const RuntimeMethod* method) { return (( uint8_t* (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, const RuntimeMethod*))MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_gshared)(___0_span, method); } // System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC (int32_t ___0_argument, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F (int32_t ___0_argument, int32_t ___1_resource, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource,System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m2143A5B72376233700B4842B05601BF9992D999E (int32_t ___0_resource, int32_t ___1_argument, const RuntimeMethod* method) ; // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m259B4E62995575B80C4086347C867EB3C8D7DAB3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ; // System.Single System.BitConverter::Int32BitsToSingle(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float BitConverter_Int32BitsToSingle_mAD799CFA19FABC0DCA7A09F3380A1F0B0EB39130_inline (int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.ValueTuple`3::.ctor(T1,T2,T3) inline void ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805 (ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_item1, int32_t ___1_item2, int32_t ___2_item3, const RuntimeMethod* method) { (( void (*) (ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, const RuntimeMethod*))ValueTuple_3__ctor_mE0A5AB1D30678D2D6913FC8C3E7EBEDB4D5B5801_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method); } // System.Void System.Buffers.SpanAction`2>::.ctor(System.Object,System.IntPtr) inline void SpanAction_2__ctor_m7DE67E22936D164FE13C5FCFFE399831076A0226 (SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { (( void (*) (SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7*, RuntimeObject*, intptr_t, const RuntimeMethod*))SpanAction_2__ctor_m4BBCE8F9C0E8FCC935E1765742799AEAD48606AE_gshared)(__this, ___0_object, ___1_method, method); } // System.String System.String::Create>(System.Int32,TState,System.Buffers.SpanAction`2) inline String_t* String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m00B1D3A3A7C94060A914A8C27CE0CAD83C2ED839 (int32_t ___0_length, ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 ___1_state, SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* ___2_action, const RuntimeMethod* method) { return (( String_t* (*) (int32_t, ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375, SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7*, const RuntimeMethod*))String_Create_TisValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987_mF6724B93867EE2A12D4053F46E75806CF9557C3B_gshared)(___0_length, ___1_state, ___2_action, method); } // System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mB4DC448C2229347732EB34E8EE5C54EE171BE2A3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ; // System.Void System.BitConverter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4E600C7D4528546FBD5BCE19298A337E85EA5B0C (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* __this, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[],System.Int32,System.Int32) inline void ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_gshared_inline)(__this, ___0_array, ___1_start, ___2_length, method); } // System.Int32 System.ReadOnlySpan`1::get_Length() inline int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline)(__this, method); } // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3 (bool* __this, const RuntimeMethod* method) ; // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63 (bool* __this, const RuntimeMethod* method) ; // System.String System.Boolean::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1 (bool* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Equals(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9 (bool* __this, bool ___0_obj, const RuntimeMethod* method) ; // System.Int32 System.Boolean::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC (bool* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Int32 System.Boolean::CompareTo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52 (bool* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Parse(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mB0D59A6F304A78532DA5E0CF3C29D8B0E8F0AA5C (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Boolean::TryParse(System.ReadOnlySpan`1,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m272AA70AEE4FB7091233367589500ACDDD02048B (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, bool* ___1_result, 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* ___0_message, const RuntimeMethod* method) ; // System.Boolean System.MemoryExtensions::EqualsOrdinalIgnoreCase(System.ReadOnlySpan`1,System.ReadOnlySpan`1) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_EqualsOrdinalIgnoreCase_m7023A654AB08294BBEBEC9B9281FF3FD651E0C70_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_value, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.Boolean::TrimWhiteSpaceAndNull(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Boolean_TrimWhiteSpaceAndNull_m3BF4B4FDCD83590AF115A2FBD8781E087FE78952 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32,System.Int32) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, int32_t, int32_t, const RuntimeMethod*))ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline)(__this, ___0_start, ___1_length, method); } // System.TypeCode System.Boolean::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5 (bool* __this, const RuntimeMethod* method) ; // System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.String SR::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, RuntimeObject* ___2_p2, 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* ___0_message, const RuntimeMethod* method) ; // System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m59678AB8F11FBA30D4B34B2E00A1855BB4FFE854 (bool ___0_value, const RuntimeMethod* method) ; // System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC22A7EFFB28AA32D8F797E456E92BA88DBA19A08 (bool ___0_value, const RuntimeMethod* method) ; // System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m099E6D99AF93A412ACBA929CD564867BFFF2A438 (bool ___0_value, const RuntimeMethod* method) ; // System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m80834AC27723FA50B90650F4C1E3227B1BAD79BD (bool ___0_value, const RuntimeMethod* method) ; // System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m54E891D837D238AD3700E7554AA565E69A7BC983 (bool ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m4B48C6526BA290E3D8C7BF687A7B69B0ACA6EE06 (bool ___0_value, const RuntimeMethod* method) ; // System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mF86C29EEA54FF517772904669CA87193CCC41A86 (bool ___0_value, const RuntimeMethod* method) ; // System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m0AF8E2E2CDC0BAB00D4731A91FE08C152A2F9BD2 (bool ___0_value, const RuntimeMethod* method) ; // System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Single System.Convert::ToSingle(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDB62EDFD0197B14286A6DEA482361F6FCD101237 (bool ___0_value, const RuntimeMethod* method) ; // System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Double System.Convert::ToDouble(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m2E4A0A83B86E2123E98162F90B63FBE6251FCDF8 (bool ___0_value, const RuntimeMethod* method) ; // System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Decimal System.Convert::ToDecimal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m7D1B71A1F092A407A7E1AD0D0756B9886DCDC69C (bool ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC (RuntimeObject* ___0_value, Type_t* ___1_targetType, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5 (bool* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Int32 System.Byte::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C (uint8_t* __this, RuntimeObject* ___0_value, 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 ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Byte::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C (uint8_t* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Boolean System.Byte::Equals(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85 (uint8_t* __this, uint8_t ___0_obj, const RuntimeMethod* method) ; // System.Int32 System.Byte::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678 (uint8_t* __this, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.String::op_Implicit(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline (String_t* ___0_value, const RuntimeMethod* method) ; // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F (RuntimeObject* ___0_formatProvider, const RuntimeMethod* method) ; // System.Byte System.Byte::Parse(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_style, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, const RuntimeMethod* method) ; // System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_mF397DAF8AA78FEEC47D154A66FFB8EBBC90E8E8F (int32_t ___0_style, const RuntimeMethod* method) ; // System.Int32 System.Number::ParseInt32(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_m7F2AA04784ED36F84E59BF810E51438EF5548D3E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, int32_t ___1_styles, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, const RuntimeMethod* method) ; // System.Void System.OverflowException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_mB00A07CDB7E5230B8D2BB31696E63F3CB1C36EF9 (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ; // System.Void System.OverflowException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264 (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::op_Implicit(T[]) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, const RuntimeMethod*))ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_gshared)(___0_array, method); } // System.String System.Number::FormatInt32(System.Int32,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mF6C76C89E0FF34257DA491F25E5FD87A27266F53 (int32_t ___0_value, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.String System.Byte::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4 (uint8_t* __this, const RuntimeMethod* method) ; // System.String System.Byte::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310 (uint8_t* __this, String_t* ___0_format, const RuntimeMethod* method) ; // System.String System.Byte::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC (uint8_t* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Boolean System.Number::TryFormatInt32(System.Int32,System.ReadOnlySpan`1,System.IFormatProvider,System.Span`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryFormatInt32_m2552E12EAE2A54DD8678522038BD7C28A21C1820 (int32_t ___0_value, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, RuntimeObject* ___2_provider, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___3_destination, int32_t* ___4_charsWritten, const RuntimeMethod* method) ; // System.Boolean System.Byte::TryFormat(System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E (uint8_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) ; // System.TypeCode System.Byte::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A (uint8_t* __this, const RuntimeMethod* method) ; // System.Boolean System.Convert::ToBoolean(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m6148BAC617B69CACDF14A8C74836767DFF0CB6A9 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Char System.Convert::ToChar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m6E532F05E049A23446AEE906828CDC10E21164C6 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBDE6A7BFA62003218AB1EC4713F320EE3D4A355A (uint8_t ___0_value, const RuntimeMethod* method) ; // System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mAC8ED23E9E3543C1D79CB1EFA37B663024C883D5 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mF87147711F2A9354CFB9C5E6BC8A779EEED223D7 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD8869793A34ED86D38EFDF4BFCDD8D03FBBCCAB6 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m5D482A246A0FB48FCA9A3EB69EEC7ECFA307C69F (uint8_t ___0_value, const RuntimeMethod* method) ; // System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mDF5F001FD9BCF9A16158B0BA977DB7139C556BAB (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mEE1402515F6D94369BCA6838B6A576BA28FA1A80 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Single System.Convert::ToSingle(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m14D8B84DD1E1DF3DE2878890755A25B9B1C5E3FF (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Double System.Convert::ToDouble(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m7D9D2B308EFDB2C0F4F9A2F13F753FE4DC048859 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Decimal System.Convert::ToDecimal(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m12A9433E061B4F244344EE3DEBFF6447E490D98B (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6 (uint8_t* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Int32 System.Char::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93 (Il2CppChar* __this, const RuntimeMethod* method) ; // System.Boolean System.Char::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0 (Il2CppChar* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Boolean System.Char::Equals(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B (Il2CppChar* __this, Il2CppChar ___0_obj, const RuntimeMethod* method) ; // System.Int32 System.Char::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8 (Il2CppChar* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Char::CompareTo(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7 (Il2CppChar* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.String System.Char::ToString(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m7ABE3A3181325918A8EA8878A083497DCF2FED4B (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.String System.String::CreateFromChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateFromChar_m3A1169FBD297609FC86BFD2A07F49737787AE116 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Boolean System.Char::IsLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC (Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979 (Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Boolean System.Char::IsAscii(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_m11F67A302C008452CD87BAF8C4F4034DB3E26C37 (Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43 (Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_m6A21A2B7D9A0CC122BCBF69159A53DFA6E31F2DA (int32_t ___0_uc, const RuntimeMethod* method) ; // System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m00CD15364DBE04162FB0928DBDFB30010CDCDA0A (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m4AC6E734B3E5E8C87ED713EB04E2A1B8D40A5149 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_m15C8E4507F8EED89258BA030C383D579A9B55093 (int32_t ___0_uc, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m99ADBFA653877A3BDD18B6FD899DC36ECA297436 (int32_t ___0_uc, const RuntimeMethod* method) ; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5 (const RuntimeMethod* method) ; // System.TypeCode System.Char::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C (Il2CppChar* __this, const RuntimeMethod* method) ; // System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mAFED7E2534210710E704D42B7AAEF527873D924E (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m9CC1302B0E62A32203AF91B40BF71A251EDF17C6 (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mA0303B3EF9247EEA563A0EF6B53BCE574B021FF7 (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m64B8E95EE8175E71F0F09FFECB2EE403B37D9F60 (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mDBBE9318A7CCE1560974CE93F5BFED9931CF0052 (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m74C12C6CEF6B7B1FC50F899B358824FCCC71F7B6 (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m664E0209A25CA5E794A35FDFC3152493DC10154E (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mD35B9CFCB4C188FCD8E195A4839D7FFF0A7D75E2 (Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3 (Il2CppChar* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, 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* ___0_paramName, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m608B3A60874131B5E65FF33AB2818EF27C036952 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m8A42DF3BEE7285F2D021D5B5779C18C6A00E96D3 (int32_t ___0_uc, const RuntimeMethod* method) ; // System.Boolean System.Char::IsSeparatorLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparatorLatin1_mEC0802FF1A58A129CB73DD0BC7C22863B818A886 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckSeparator(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSeparator_m06A378973D7C8A843BD2E5CF6413DFCE0DCE4269 (int32_t ___0_uc, const RuntimeMethod* method) ; // System.Boolean System.Char::IsSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mDCAB7B29DC13EDCE8A0F7ED2899DBDF8230F0A48 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_mD5BF9D53716470B5D68F1DC90A21A7865AD10675 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m1283EB681E7CA6F948839B3D992800946D004F78 (int32_t ___0_codePoint, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m32CDEE41292837256617B0CEC7005CA509F3CB34 (String_t* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ; // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_mED1E5FB863528ABB0D7D3DC4DE0FAB4517760658 (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Boolean System.Char::IsLowSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_mEE95A617A89CEB99AADAB54E025087D56CAB1BAA (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B (RuntimeArray* ___0_array, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___1_fldHandle, const RuntimeMethod* method) ; // System.Object System.Object::MemberwiseClone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Char System.CharEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, 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* ___0_message, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) inline Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, const RuntimeMethod* method) { return (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_gshared)(___0_span, method); } // System.Int32 System.Convert::Decode(System.Char&,System.SByte&) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Convert_Decode_m74719FCFF21B855C78E3859EDCE7F92506ED2A20_inline (Il2CppChar* ___0_encodedChars, int8_t* ___1_decodingMap, const RuntimeMethod* method) ; // System.Void System.Convert::WriteThreeLowOrderBytes(System.Byte&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Convert_WriteThreeLowOrderBytes_mF81EE1FF49E7A654C1AF5971E25F88786FAC08B1_inline (uint8_t* ___0_destination, int32_t ___1_value, const RuntimeMethod* method) ; // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, 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 System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ; // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318 (Type_t* __this, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mC9B4406FE9DA904E2B7D75267CAD38E837D39A6D (String_t* ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Decimal::op_Inequality(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Inequality_mCFFC6B60AEDE8CFB2DEABD97FF0F2B79A31E2690 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_d1, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___1_d2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowCharOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD (const RuntimeMethod* method) ; // System.Void System.Convert::ThrowSByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62 (const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m05A832AD69077878500D5430BAA62CEAE0C69E9A (double ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A (double ___0_value, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mA336C42E413A5559B3F47FCD8B45EDB538693E63 (int32_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::Round(System.Decimal,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_d, int32_t ___1_decimals, const RuntimeMethod* method) ; // System.SByte System.Decimal::ToSByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Decimal_ToSByte_m211D84E3EADB6343707D108FA33C1B8BC89AAA66 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) ; // System.SByte System.SByte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SByte_Parse_mAC7251E4586FF9DAE8C7766B4C0935E44CF4D52D (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7 (const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m88201B22EF9B335B5792606D43769F0648B98B55 (double ___0_value, const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mB200A29D6E5CE42D564544DF1DC8852BF3582833 (int32_t ___0_value, const RuntimeMethod* method) ; // System.Byte System.Decimal::ToByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Decimal_ToByte_mBE8A7251C6C68901EF08BC30CE996B3BD9700975 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) ; // System.Byte System.Byte::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mD8D1AE5779910F7B2BA39ABF641972078F48B3EE (String_t* ___0_s, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m7866E33CE8480D5A4482C65F0CF9D1CCF0BD887C (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3 (const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF86636F78E7A272307B7F20FE4E6318A1213138E (double ___0_value, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF65D8227B8B6F0E30A135BC5F01F1562455AD382 (int32_t ___0_value, const RuntimeMethod* method) ; // System.Int16 System.Decimal::ToInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Decimal_ToInt16_m37D5D5520DCE0F0CEBE0C76719DC7225F1287D0A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) ; // System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_m78DA88EC72F896F3698019DF6CDAAFFCC1B42C91 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowUInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D (const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mD76E9E8434AC1C72D68248D744D9DA2B2E9E9DD3 (double ___0_value, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA3ABC9268BA473D6F1C7801248D3200734180B2B (int32_t ___0_value, const RuntimeMethod* method) ; // System.UInt16 System.Decimal::ToUInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Decimal_ToUInt16_mF8AC13F99A326DFF69E4E267F0058414AC39EF4E (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) ; // System.UInt16 System.UInt16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t UInt16_Parse_mB0C8DBDC44E6624A4EE2F50B28DA2E3BC842F075 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2 (const RuntimeMethod* method) ; // System.Int32 System.Decimal::ToInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decimal_ToInt32_m282A421D17BB3E10C2D14F5C8CE81847228D1E21 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_d, const RuntimeMethod* method) ; // System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m410BA2190FCC7986F94B65C6A3E9AED0932BE521 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowUInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C (const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B (double ___0_value, const RuntimeMethod* method) ; // System.UInt32 System.Decimal::ToUInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Decimal_ToUInt32_m916E71A3FCEF0FFC4CACC7AEAAFF5E6703A22C51 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_d, const RuntimeMethod* method) ; // System.UInt32 System.UInt32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UInt32_Parse_mDA54DE4F6E05DE5E452FAB70248AC62C6F97EE96 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt64OverflowException_m8173BB38CD04FDD339F0EDDC8BB38CC20E3FE152 (const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333 (double ___0_value, const RuntimeMethod* method) ; // System.Int64 System.Decimal::ToInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Decimal_ToInt64_mE41CD0D0316D97F17B2B0590F804C4AA9A8C19F3 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_d, const RuntimeMethod* method) ; // System.Int64 System.Int64::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_mAE2EACBD4520D1EEE5AA32B228D5DA2ED83DDDA5 (String_t* ___0_s, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m3B1B54542F45772CEDBA7B371C287742A5FF7430 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowUInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27 (const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095 (double ___0_value, const RuntimeMethod* method) ; // System.UInt64 System.Decimal::ToUInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Decimal_ToUInt64_m93C3F15181D3838CA27D127CC08ED45A7C9A7728 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_d, const RuntimeMethod* method) ; // System.UInt64 System.UInt64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UInt64_Parse_mCA16202D9040B305FE0C7AE61B7E869A2817A75A (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Single System.Decimal::op_Explicit(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Decimal_op_Explicit_mFE383D1954522ECA8822B56A7C59794B850FE4C1 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) ; // System.Single System.Single::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_m0E74607D17E172B4F1306E62BD12CE2905FA5638 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Double System.Decimal::op_Explicit(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Decimal_op_Explicit_mA8577A95CD02E86110976D415CA149550AD5A6C0 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) ; // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_mA6BD954627BB3B2317D7BA7D4B29DCA53C660058 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mDB061CE44CA4598A508C29A5D672BC5CA1FDE4B7 (int8_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mE6406CBADA3D84D55FFE80DE2DAA32EC0F497290 (uint8_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mDBEE9D553761C542A6C4C6071BACC01A7D67E0E9 (int16_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mDA853CFE875FF320C48878FF8687A49DFDC03655 (uint16_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mDBA4FB50BAF9CE8B75AA6ED5ABED7F597CB46177 (int32_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mBE2B47A24DD11A4DC8887C1612EC4DA5DC4EF474 (uint32_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m8F9A38760D01B23E6DFF77EA760CCE5111F3656D (int64_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mA78C1FC00B4E76A91931998BD4FDE3574A54B090 (uint64_t ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Explicit(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Explicit_m2B8355EC2618BDE4A6813C6826D9E3B996B9E22F (float ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Explicit(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Explicit_mC97457D67812EF62FBEC4E9C07E5DCFACAA1FE66 (double ___0_value, const RuntimeMethod* method) ; // System.Decimal System.Decimal::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_Parse_m6023D6BA10DAAF7AA6443D08022299A0529B7107 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Parse_mC5B13ABDD2A2A2AC709D961EE959BBE26DB241AC (String_t* ___0_s, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int32 System.ParseNumbers::StringToInt(System.ReadOnlySpan`1,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParseNumbers_StringToInt_m2CF7F31B011C00E259BF9B0AC270E2C3B50847F1 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_radix, int32_t ___2_flags, const RuntimeMethod* method) ; // System.String System.ParseNumbers::IntToString(System.Int32,System.Int32,System.Int32,System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ParseNumbers_IntToString_mFE9A8B5D0CACDE306E0006371280D0EA1A5D9508 (int32_t ___0_n, int32_t ___1_radix, int32_t ___2_width, Il2CppChar ___3_paddingChar, int32_t ___4_flags, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[]) inline void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline)(__this, ___0_array, method); } // System.String System.Convert::ToBase64String(System.ReadOnlySpan`1,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m41DE2D2C15E47B698E3E06E836081E7C3C38DC06 (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_bytes, int32_t ___1_options, const RuntimeMethod* method) ; // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToBase64_CalculateAndValidateOutputLength(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64_CalculateAndValidateOutputLength_m15280A1E59F3FF89468E1E846F180361AC86A5E5 (int32_t ___0_inputLength, bool ___1_insertLineBreaks, const RuntimeMethod* method) ; // System.String System.String::FastAllocateString(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104 (int32_t ___0_length, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) inline uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90 (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_span, const RuntimeMethod* method) { return (( uint8_t* (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, const RuntimeMethod*))MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90_gshared)(___0_span, method); } // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD (const RuntimeMethod* method) ; // System.Int32 System.Convert::ConvertToBase64Array(System.Char*,System.Byte*,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ConvertToBase64Array_m4F2148EF28F1F563365B82FD7CDEF28209B23DFB (Il2CppChar* ___0_outChars, uint8_t* ___1_inData, int32_t ___2_offset, int32_t ___3_length, bool ___4_insertLineBreaks, const RuntimeMethod* method) ; // System.Void System.OutOfMemoryException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951 (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* __this, const RuntimeMethod* method) ; // System.Byte[] System.Convert::FromBase64CharPtr(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64CharPtr_m5EB088E0863DEB4AC0889D82BE4998E896A9D9FB (Il2CppChar* ___0_inputPtr, int32_t ___1_inputLength, const RuntimeMethod* method) ; // System.Boolean System.Convert::TryDecodeFromUtf16(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryDecodeFromUtf16_mCD2118ACA95E45067AE690E9B88E91C95865FF35 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_utf16, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___1_bytes, int32_t* ___2_consumed, int32_t* ___3_written, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, int32_t, const RuntimeMethod*))ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline)(__this, ___0_start, method); } // System.Span`1 System.Span`1::Slice(System.Int32) inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___0_start, const RuntimeMethod* method) { return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, int32_t, const RuntimeMethod*))Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline)(__this, ___0_start, method); } // System.Boolean System.Convert::IsSpace(System.Char) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23_inline (Il2CppChar ___0_c, const RuntimeMethod* method) ; // System.Void System.Convert::CopyToTempBufferWithoutWhiteSpace(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert_CopyToTempBufferWithoutWhiteSpace_mB0390B5F3C4417CC52A1056C8F78B88F3C543DB2 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_chars, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_tempBuffer, int32_t* ___2_consumed, int32_t* ___3_charsWritten, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::Slice(System.Int32,System.Int32) inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) { return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, int32_t, int32_t, const RuntimeMethod*))Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline)(__this, ___0_start, ___1_length, method); } // System.ReadOnlySpan`1 System.Span`1::op_Implicit(System.Span`1) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4 (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_gshared)(___0_span, method); } // System.Int32 System.Span`1::get_Length() inline int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) { return (( int32_t (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, const RuntimeMethod*))Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline)(__this, method); } // System.Int32 System.Convert::FromBase64_ComputeResultLength(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_ComputeResultLength_m1FA11BAB2F815560FFDF95CDDE4312DE5E4C18A6 (Il2CppChar* ___0_inputPtr, int32_t ___1_inputLength, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(System.Void*,System.Int32) inline void ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, void*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_gshared_inline)(__this, ___0_pointer, ___1_length, method); } // System.Span`1 System.Span`1::op_Implicit(T[]) inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) { return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91_gshared)(___0_array, method); } // System.Boolean System.Convert::TryFromBase64Chars(System.ReadOnlySpan`1,System.Span`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryFromBase64Chars_mA40EE5AD1A31DBF56F404F618230EC8EB5E8A4B3 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_chars, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___1_bytes, int32_t* ___2_bytesWritten, const RuntimeMethod* method) ; // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ; // System.Void System.TimeZone::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZone__ctor_mE178D688CAB2ACD05923682583066645559DC92C (TimeZone_tDA9914185478D6D73730FB9D0179A34512F4736F* __this, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::get_StandardName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_StandardName_mE9A075A18964E355D7AFF3A85C3C8EEDBB464A49 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::get_DaylightName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DaylightName_m02E7E08179ACFB3544A0AE8E9C8B0040E8422764 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) ; // System.Void System.UnitySerializationHolder::GetUnitySerializationInfo(System.Runtime.Serialization.SerializationInfo,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationHolder_GetUnitySerializationInfo_mCCA085FD46F01597DF39A5CDBDD4E984FB6621DA (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, int32_t ___1_unityType, const RuntimeMethod* method) ; // System.Void System.DBNull::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBNull__ctor_m0752C7E84B1327B63DB5C42B99606B1ECFE58C08 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.UInt64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, uint64_t ___0_dateData, const RuntimeMethod* method) ; // System.Int64 System.DateTime::DateToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C (int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method) ; // System.Int64 System.DateTime::TimeToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9 (int32_t ___0_hour, int32_t ___1_minute, int32_t ___2_second, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mD89390EF215242275A4E8F78C2C3E8BC3EF6F3C3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_kind, const RuntimeMethod* method) ; // System.Runtime.Serialization.SerializationInfoEnumerator System.Runtime.Serialization.SerializationInfo::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* SerializationInfo_GetEnumerator_m5230A1D4E4B612E90B10E2034C638CD42F667EA6 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, const RuntimeMethod* method) ; // System.String System.Runtime.Serialization.SerializationInfoEnumerator::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfoEnumerator_get_Name_m58B6D682B6C829258730C1E952E9099ACDDAE734 (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ; // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ; // System.Object System.Runtime.Serialization.SerializationInfoEnumerator::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfoEnumerator_get_Value_mBB22843FD639AD42D9A819A9745C21191C3B1DD9 (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m6CA00ABB70FAD8242C62ED9913F7D7C3B811FC31 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA2BE4A2841686E8B79607BA469368B4FB4D40F34 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m4F052C960AE85EFED1048CAAAC538AB3714078A6 (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ; // System.Int64 System.DateTime::get_InternalTicks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.UInt64 System.DateTime::get_InternalKind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.DateTime System.DateTime::Add(System.Double,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, int32_t ___1_scale, const RuntimeMethod* method) ; // System.DateTime System.DateTime::AddMonths(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_months, const RuntimeMethod* method) ; // System.DateTime System.DateTime::AddSeconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddSeconds_mC5FE3FB22A1295CA747746ECE48B9D4A4B6B2E81 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, const RuntimeMethod* method) ; // System.Int32 System.DateTime::Compare(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_Compare_mF0E4E7A00DBC08126468AC4BF61B64AF58F2BEB4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ; // System.Int32 System.DateTime::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_m2DC5F6BDB6A7D578448192AA07953CBC97BECAC9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ; // System.Boolean System.DateTime::IsLeapYear(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C (int32_t ___0_year, const RuntimeMethod* method) ; // System.Int64 System.TimeSpan::TimeToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeSpan_TimeToTicks_mBA709BC134A96A780823D75398B2E90287505570 (int32_t ___0_hour, int32_t ___1_minute, int32_t ___2_second, const RuntimeMethod* method) ; // System.Boolean System.DateTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m0EF1F769B475D00BB907072ED7585E6A6ECAB133 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetLocalUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, const RuntimeMethod* method) ; // System.DateTime System.DateTime::FromBinaryRaw(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromBinaryRaw_m61270C18465960DF146A60BC5D6148D4B93A56E8 (int64_t ___0_dateData, const RuntimeMethod* method) ; // System.DateTime System.DateTime::FromFileTimeUtc(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromFileTimeUtc_m438EB6875CCA2AC723474C3B4BE8906803BE6517 (int64_t ___0_fileTime, 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.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m216A4FEE287DCA4612C30DB41571962A584D6324 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, int64_t ___1_value, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mA4580664C8C0D978F65E405D235E3BAF945B25AF (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, uint64_t ___1_value, const RuntimeMethod* method) ; // System.Void System.DateTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_mC90A1D56C5CD5E23BE66C9D90EC3A867C71F490C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Int32 System.DateTime::GetDatePart(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_part, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetDateTimeNowUtcOffsetFromUtc(System.DateTime,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m5F887A725FB1D272979C57AEA1A3675BAC6ED637 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, bool* ___1_isAmbiguousLocalDst, const RuntimeMethod* method) ; // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetInstance(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_GetInstance_m610566C9C55DA97F13DA7436BCC18E796AAB1CBD (RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.DateTime System.DateTimeParse::Parse(System.ReadOnlySpan`1,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeParse_Parse_mA20355303009B45379D61C550110547C6C4772B7 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t ___2_styles, const RuntimeMethod* method) ; // System.TimeSpan System.DateTime::Subtract(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_Subtract_m4064A98F489219E9C414DF5C03EE041351B4502A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) ; // System.DateTime System.DateTime::ToLocalTime(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, bool ___0_throwOnOverflow, const RuntimeMethod* method) ; // System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_m8F8FA6A9F8BD8EDCC502540B4CF79EF7A43FF7F4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, String_t* ___1_format, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.String System.DateTime::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m447C83E1F8FFFFF4D20C0F7D5C18DEB160F9833A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.String System.DateTime::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___0_format, const RuntimeMethod* method) ; // System.String System.DateTime::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m66457C11C42C07E2F437A9D899E6E3FB9FD77B50 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, 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* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Boolean System.DateTimeFormat::TryFormat(System.DateTime,System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormat_m0CEC09DC521B9D2CE450DB7124389D52BDC62857 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t* ___2_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___3_format, RuntimeObject* ___4_provider, const RuntimeMethod* method) ; // System.Boolean System.DateTime::TryFormat(System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_TryFormat_m9385B37BF1A10A718818D41C7CEAAC3B2C57BEB2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTimeToUtc_m08D8D56D51765E340034FFEC1CE950BC3FA20484 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, 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.TypeCode System.DateTime::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetTypeCode_mBDBBFA844A2A64CE673773E6BB637E24E508545D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Boolean System.DateTime::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_System_IConvertible_ToBoolean_m88D0685E40F160ECD9BA0097A9D5EAE129D57320 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Char System.DateTime::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DateTime_System_IConvertible_ToChar_m3A2D7E1724D045078329DE5B6928DAF35358128C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.SByte System.DateTime::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t DateTime_System_IConvertible_ToSByte_m58BE7B4B9E8805399461C451EDB2A5F038A30E2B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Byte System.DateTime::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t DateTime_System_IConvertible_ToByte_mC9A4AE726942D47E6A1D6E1C627CD22F53665530 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int16 System.DateTime::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t DateTime_System_IConvertible_ToInt16_m53F782E932C1349E508278A88C0B5D6FA484A963 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt16 System.DateTime::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t DateTime_System_IConvertible_ToUInt16_m87CAD02FAE277DCA7F36D940680D1659CE7094BE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int32 System.DateTime::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_System_IConvertible_ToInt32_mEF8F4DF23984AF54CB1748F08B6E4D2AB50B5ECE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt32 System.DateTime::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DateTime_System_IConvertible_ToUInt32_m7297BB44A3D2F758C253C0DA1552411BF4137FB1 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Int64 System.DateTime::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_System_IConvertible_ToInt64_m1A022E5D74555F165C25A1D75E19DA9A16E7087F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.UInt64 System.DateTime::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DateTime_System_IConvertible_ToUInt64_mACC536AC91C65A8333B715AE1E97DBCA096A9884 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Single System.DateTime::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DateTime_System_IConvertible_ToSingle_mF2470BC10216C1A1395825805F07797604EB2B89 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Double System.DateTime::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double DateTime_System_IConvertible_ToDouble_mF9398C544CB0CF7A704C4DA7F2AF55251EDA271C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Decimal System.DateTime::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F DateTime_System_IConvertible_ToDecimal_m6DC5225E5665975254A30217122921B578C095C5 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.DateTime System.DateTime::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_System_IConvertible_ToDateTime_m98F5BA3029803DD93434761007D831D61040C570 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ; // System.Object System.DateTime::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DateTime_System_IConvertible_ToType_mA83365225C865F66AF4CFB8D29F028F5E73859CE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) ; // System.Int64 System.DateTime::GetSystemTimeAsFileTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_GetSystemTimeAsFileTime_m1A823139262897B7FEC7B803F727CF49023F4B71 (const RuntimeMethod* method) ; // System.Int64 System.DateTime::ToBinaryRaw() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t DateTime_ToBinaryRaw_mBA228545EFBF2455CD1F2A653CA156882A90E5B2_inline (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Char& System.String::GetRawStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T&,System.Int32) inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method); } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97 (int32_t ___0_argument, const RuntimeMethod* method) ; // System.Int32 System.Globalization.CompareInfo::CompareOrdinalIgnoreCase(System.ReadOnlySpan`1,System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinalIgnoreCase_mDD33EF7DEB14E5B3CC2CC4CC4E1DE26A7E5C1202 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_strA, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_strB, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowInvalidTypeWithPointersNotSupported(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF (Type_t* ___0_targetType, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56 (const RuntimeMethod* method) ; // System.Byte& System.Array::GetRawSzArrayData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(T&,System.Int32) inline void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) { (( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, uint8_t*, int32_t, const RuntimeMethod*))Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline)(__this, ___0_ptr, ___1_length, method); } // System.Void System.Span`1::.ctor(T&,System.Int32) inline void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) { (( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, Il2CppChar*, int32_t, const RuntimeMethod*))Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline)(__this, ___0_ptr, ___1_length, method); } #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 System.TimeZoneInfo::.ctor(System.Byte[],System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, String_t* ___1_id, bool ___2_dstDisabled, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); s_Il2CppMethodInitialized = true; } TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 V_0; memset((&V_0), 0, sizeof(V_0)); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* V_1 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* V_3 = NULL; String_t* V_4 = NULL; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_5 = NULL; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_6 = NULL; String_t* V_7 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_8; memset((&V_8), 0, sizeof(V_8)); int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParseRaw_m5BD8860EAEEBD32114790C756159AB486201E9CC(L_0, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), (&V_5), (&V_6), (&V_7), NULL); String_t* L_1 = ___1_id; __this->____id_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____id_0), (void*)L_1); __this->____displayName_1 = _stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101; Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; __this->____baseUtcOffset_4 = L_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL); V_8 = L_3; V_9 = 0; goto IL_00a9; } IL_0045: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_2; int32_t L_5 = V_9; NullCheck(L_4); int32_t L_6 = L_5; uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); V_10 = L_7; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_8 = V_3; int32_t L_9 = V_10; NullCheck(L_8); bool L_10 = ((L_8)->GetAddressAt(static_cast(L_9)))->___IsDst_1; if (L_10) { goto IL_0089; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_11 = V_3; int32_t L_12 = V_10; NullCheck(L_11); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_13 = ((L_11)->GetAddressAt(static_cast(L_12)))->___UtcOffset_0; __this->____baseUtcOffset_4 = L_13; String_t* L_14 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_15 = V_3; int32_t L_16 = V_10; NullCheck(L_15); uint8_t L_17 = ((L_15)->GetAddressAt(static_cast(L_16)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_18; L_18 = TimeZoneInfo_TZif_GetZoneAbbreviation_mE36A95F754C060C08F283870D696E5743130B61C(L_14, L_17, NULL); __this->____standardDisplayName_2 = L_18; Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)L_18); goto IL_00a3; } IL_0089: { String_t* L_19 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_20 = V_3; int32_t L_21 = V_10; NullCheck(L_20); uint8_t L_22 = ((L_20)->GetAddressAt(static_cast(L_21)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_23; L_23 = TimeZoneInfo_TZif_GetZoneAbbreviation_mE36A95F754C060C08F283870D696E5743130B61C(L_19, L_22, NULL); __this->____daylightDisplayName_3 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->____daylightDisplayName_3), (void*)L_23); } IL_00a3: { int32_t L_24 = V_9; V_9 = ((int32_t)il2cpp_codegen_add(L_24, 1)); } IL_00a9: { int32_t L_25 = V_9; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_26 = V_1; NullCheck(L_26); if ((((int32_t)L_25) >= ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))) { goto IL_00c1; } } { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_27 = V_1; int32_t L_28 = V_9; NullCheck(L_27); int32_t L_29 = L_28; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = (L_27)->GetAt(static_cast(L_29)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = V_8; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8(L_30, L_31, NULL); if (L_32) { goto IL_0045; } } IL_00c1: { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_33 = V_1; NullCheck(L_33); if ((((RuntimeArray*)L_33)->max_length)) { goto IL_012f; } } { V_11 = 0; goto IL_0128; } IL_00ca: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_34 = V_3; int32_t L_35 = V_11; NullCheck(L_34); bool L_36 = ((L_34)->GetAddressAt(static_cast(L_35)))->___IsDst_1; if (L_36) { goto IL_0108; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_37 = V_3; int32_t L_38 = V_11; NullCheck(L_37); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_39 = ((L_37)->GetAddressAt(static_cast(L_38)))->___UtcOffset_0; __this->____baseUtcOffset_4 = L_39; String_t* L_40 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_41 = V_3; int32_t L_42 = V_11; NullCheck(L_41); uint8_t L_43 = ((L_41)->GetAddressAt(static_cast(L_42)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_44; L_44 = TimeZoneInfo_TZif_GetZoneAbbreviation_mE36A95F754C060C08F283870D696E5743130B61C(L_40, L_43, NULL); __this->____standardDisplayName_2 = L_44; Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)L_44); goto IL_0122; } IL_0108: { String_t* L_45 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_46 = V_3; int32_t L_47 = V_11; NullCheck(L_46); uint8_t L_48 = ((L_46)->GetAddressAt(static_cast(L_47)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_49; L_49 = TimeZoneInfo_TZif_GetZoneAbbreviation_mE36A95F754C060C08F283870D696E5743130B61C(L_45, L_48, NULL); __this->____daylightDisplayName_3 = L_49; Il2CppCodeGenWriteBarrier((void**)(&__this->____daylightDisplayName_3), (void*)L_49); } IL_0122: { int32_t L_50 = V_11; V_11 = ((int32_t)il2cpp_codegen_add(L_50, 1)); } IL_0128: { int32_t L_51 = V_11; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_52 = V_3; NullCheck(L_52); if ((((int32_t)L_51) < ((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length))))) { goto IL_00ca; } } IL_012f: { String_t* L_53 = __this->____standardDisplayName_2; __this->____displayName_1 = L_53; Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)L_53); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_54 = (&__this->____baseUtcOffset_4); int64_t L_55; L_55 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_54, NULL); if (!((int64_t)(L_55%((int64_t)((int32_t)600000000))))) { goto IL_0171; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_56 = (&__this->____baseUtcOffset_4); int32_t L_57; L_57 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB(L_56, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_58 = (&__this->____baseUtcOffset_4); int32_t L_59; L_59 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F(L_58, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_60; memset((&L_60), 0, sizeof(L_60)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_60), L_57, L_59, 0, /*hidden argument*/NULL); __this->____baseUtcOffset_4 = L_60; } IL_0171: { bool L_61 = ___2_dstDisabled; if (L_61) { goto IL_018e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_62 = (&__this->____adjustmentRules_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_63 = __this->____baseUtcOffset_4; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_64 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_65 = V_2; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_66 = V_3; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_67 = V_5; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_68 = V_6; String_t* L_69 = V_7; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_GenerateAdjustmentRules_mC7B2337DDFAB6BCD72992E6BEAD14DB31CB47E8A(L_62, L_63, L_64, L_65, L_66, L_67, L_68, L_69, NULL); } IL_018e: { String_t* L_70 = __this->____id_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_71 = __this->____baseUtcOffset_4; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_72 = __this->____adjustmentRules_6; bool* L_73 = (&__this->____supportsDaylightSavingTime_5); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189(L_70, L_71, L_72, L_73, NULL); return; } } // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZone(System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZone_mE1D084C0A44BDF36D73FF5428EBB8FCE6F346089 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___0_cachedData, 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_GetLocalTimeZoneFromTzFile_m406BA408BA70956955B8EF3843842617497B2983(NULL); return L_0; } } // System.Boolean System.TimeZoneInfo::TryGetLocalTzFile(System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetLocalTzFile_mFB5811C15660015CD59860D0074AF01C1A0FAD57 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___0_rawData, String_t** ___1_id, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB13A221890A3415E7F693C07C26585D65E9EF870); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_0 = ___0_rawData; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___1_id; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_2; L_2 = TimeZoneInfo_GetTzEnvironmentVariable_mDA0D1946DFB444F6961D6432DD368349D6027A42(NULL); V_0 = L_2; String_t* L_3 = V_0; if (L_3) { goto IL_0036; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_4 = ___0_rawData; String_t** L_5 = ___1_id; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_6; L_6 = TimeZoneInfo_TryLoadTzFile_mBECD00A281BF8BA1E2D283BD7EADDB6536855032(_stringLiteralB13A221890A3415E7F693C07C26585D65E9EF870, L_4, L_5, NULL); if (L_6) { goto IL_0034; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_GetTimeZoneDirectory_mAA0ADCDCA238A54CEAF1CF2F8454B599FAA3BE98(NULL); il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_8; L_8 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_7, _stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_9 = ___0_rawData; String_t** L_10 = ___1_id; bool L_11; L_11 = TimeZoneInfo_TryLoadTzFile_mBECD00A281BF8BA1E2D283BD7EADDB6536855032(L_8, L_9, L_10, NULL); return L_11; } IL_0034: { return (bool)1; } IL_0036: { String_t* L_12 = V_0; NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL); if (L_13) { goto IL_0040; } } { return (bool)0; } IL_0040: { String_t* L_14 = V_0; NullCheck(L_14); Il2CppChar L_15; L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, 0, NULL); if ((((int32_t)L_15) == ((int32_t)((int32_t)47)))) { goto IL_005c; } } { String_t** L_16 = ___1_id; String_t* L_17 = V_0; *((RuntimeObject**)L_16) = (RuntimeObject*)L_17; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_16, (void*)(RuntimeObject*)L_17); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_18; L_18 = TimeZoneInfo_GetTimeZoneDirectory_mAA0ADCDCA238A54CEAF1CF2F8454B599FAA3BE98(NULL); String_t* L_19 = V_0; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_20; L_20 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_18, L_19, NULL); V_1 = L_20; goto IL_005e; } IL_005c: { String_t* L_21 = V_0; V_1 = L_21; } IL_005e: { String_t* L_22 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_23 = ___0_rawData; String_t** L_24 = ___1_id; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_25; L_25 = TimeZoneInfo_TryLoadTzFile_mBECD00A281BF8BA1E2D283BD7EADDB6536855032(L_22, L_23, L_24, NULL); return L_25; } } // System.String System.TimeZoneInfo::GetTzEnvironmentVariable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTzEnvironmentVariable_mDA0D1946DFB444F6961D6432DD368349D6027A42 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF23D2D4F867416899FD1326311AC61D3AC3EFBE8); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0; L_0 = Environment_GetEnvironmentVariable_mAF8CC6EC1CB916789ABB16A02C032F89E508C21A(_stringLiteralF23D2D4F867416899FD1326311AC61D3AC3EFBE8, NULL); V_0 = L_0; String_t* L_1 = V_0; bool L_2; L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL); if (L_2) { goto IL_0026; } } { String_t* L_3 = V_0; NullCheck(L_3); Il2CppChar L_4; L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)58))))) { goto IL_0026; } } { String_t* L_5 = V_0; NullCheck(L_5); String_t* L_6; L_6 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_5, 1, NULL); V_0 = L_6; } IL_0026: { String_t* L_7 = V_0; return L_7; } } // System.Boolean System.TimeZoneInfo::TryLoadTzFile(System.String,System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryLoadTzFile_mBECD00A281BF8BA1E2D283BD7EADDB6536855032 (String_t* ___0_tzFilePath, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___1_rawData, String_t** ___2_id, 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; } bool V_0 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; { String_t* L_0 = ___0_tzFilePath; bool L_1; L_1 = File_Exists_m95E329ABBE3EAD6750FE1989BBA6884457136D4A(L_0, NULL); if (!L_1) { goto IL_0040; } } try {// begin try (depth: 1) { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_2 = ___1_rawData; String_t* L_3 = ___0_tzFilePath; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4; L_4 = File_ReadAllBytes_m704CBBA3F130C94F5A3E0BE2A93D9E9D79DC3E24(L_3, NULL); *((RuntimeObject**)L_2) = (RuntimeObject*)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_4); String_t** L_5 = ___2_id; String_t* L_6 = *((String_t**)L_5); bool L_7; L_7 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_6, NULL); if (!L_7) { goto IL_0033_1; } } { String_t** L_8 = ___2_id; String_t* L_9 = ___0_tzFilePath; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_10; L_10 = TimeZoneInfo_FindTimeZoneIdUsingReadLink_m4F3779AE7F83741C34E99803BCA0F1844BD8B895(L_9, NULL); *((RuntimeObject**)L_8) = (RuntimeObject*)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_10); String_t** L_11 = ___2_id; String_t* L_12 = *((String_t**)L_11); bool L_13; L_13 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_12, NULL); if (!L_13) { goto IL_0033_1; } } { String_t** L_14 = ___2_id; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_15 = ___1_rawData; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_15); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_17; L_17 = TimeZoneInfo_FindTimeZoneId_mDDD86DF4E88119C16DB85477DA18FCC4E2CC4F47(L_16, NULL); *((RuntimeObject**)L_14) = (RuntimeObject*)L_17; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_17); } IL_0033_1: { V_0 = (bool)1; goto IL_0042; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0037; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003a; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003d; } throw e; } CATCH_0037: {// begin catch(System.IO.IOException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0040; }// end catch (depth: 1) CATCH_003a: {// begin catch(System.Security.SecurityException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0040; }// end catch (depth: 1) CATCH_003d: {// begin catch(System.UnauthorizedAccessException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0040; }// end catch (depth: 1) IL_0040: { return (bool)0; } IL_0042: { bool L_18 = V_0; return L_18; } } // System.String System.TimeZoneInfo::FindTimeZoneIdUsingReadLink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneIdUsingReadLink_m4F3779AE7F83741C34E99803BCA0F1844BD8B895 (String_t* ___0_tzFilePath, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { V_0 = (String_t*)NULL; String_t* L_0 = ___0_tzFilePath; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Sys_ReadLink_mE2126165DC54C9CA53BE2D09D90922DF39C7BE74(L_0, NULL); V_1 = L_1; String_t* L_2 = V_1; if (!L_2) { goto IL_0031; } } { String_t* L_3 = ___0_tzFilePath; String_t* L_4 = V_1; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_5; L_5 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_3, L_4, NULL); V_1 = L_5; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_6; L_6 = TimeZoneInfo_GetTimeZoneDirectory_mAA0ADCDCA238A54CEAF1CF2F8454B599FAA3BE98(NULL); V_2 = L_6; String_t* L_7 = V_1; String_t* L_8 = V_2; NullCheck(L_7); bool L_9; L_9 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_7, L_8, 4, NULL); if (!L_9) { goto IL_0031; } } { String_t* L_10 = V_1; String_t* L_11 = V_2; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); NullCheck(L_10); String_t* L_13; L_13 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_10, L_12, NULL); V_0 = L_13; } IL_0031: { String_t* L_14 = V_0; return L_14; } } // System.String System.TimeZoneInfo::GetDirectoryEntryFullPath(Interop/Sys/DirectoryEntry&,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetDirectoryEntryFullPath_mC0D4A09E850135810DCE3CD708A010951F60E31E (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* ___0_dirent, String_t* ___1_currentPath, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_0; memset((&V_0), 0, sizeof(V_0)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_1; memset((&V_1), 0, sizeof(V_1)); { uintptr_t L_0 = ((uintptr_t)((int32_t)512)); int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL); memset(L_1, 0, L_0); Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_2; memset((&L_2), 0, sizeof(L_2)); Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_2), (void*)(L_1), ((int32_t)256), /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); V_0 = L_2; DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* L_3 = ___0_dirent; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5; L_5 = DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996(L_3, L_4, NULL); V_1 = L_5; int32_t L_6; L_6 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_1), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((!(((uint32_t)L_6) == ((uint32_t)1)))) { goto IL_0032; } } { Il2CppChar* L_7; L_7 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (0), ((&V_1))->____length_1); int32_t L_8 = *((uint16_t*)L_7); if ((((int32_t)L_8) == ((int32_t)((int32_t)46)))) { goto IL_0056; } } IL_0032: { int32_t L_9; L_9 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_1), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((!(((uint32_t)L_9) == ((uint32_t)2)))) { goto IL_0058; } } { Il2CppChar* L_10; L_10 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (0), ((&V_1))->____length_1); int32_t L_11 = *((uint16_t*)L_10); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)46))))) { goto IL_0058; } } { Il2CppChar* L_12; L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (1), ((&V_1))->____length_1); int32_t L_13 = *((uint16_t*)L_12); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)46))))) { goto IL_0058; } } IL_0056: { return (String_t*)NULL; } IL_0058: { String_t* L_14 = ___1_currentPath; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15; L_15 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_14, NULL); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16 = V_1; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_17; L_17 = Path_Join_mA8659405C90B9441AA2249C7D45B587808ABCB3F(L_15, L_16, NULL); return L_17; } } // System.Void System.TimeZoneInfo::EnumerateFilesRecursively(System.String,System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_EnumerateFilesRecursively_m2984DD3C4C89C29B20ACC0A4E76C6267F877E6C9 (String_t* ___0_path, Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* ___1_condition, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_0 = NULL; int32_t V_1 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL; String_t* V_3 = NULL; uint8_t* V_4 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL; intptr_t V_6; memset((&V_6), 0, sizeof(V_6)); DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 V_7; memset((&V_7), 0, sizeof(V_7)); String_t* V_8 = NULL; bool V_9 = false; FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 V_10; memset((&V_10), 0, sizeof(V_10)); { V_0 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)NULL; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_0; L_0 = Sys_GetReadDirRBufferSize_m43BFD2BC9EB308361321A3EB229F557ED5320C4E(NULL); V_1 = L_0; V_2 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_013d: {// begin finally (depth: 1) { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_2; if (!L_1) { goto IL_014c; } } { il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var); ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_2; L_2 = ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_inline(ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_2; NullCheck(L_2); VirtualActionInvoker2< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, bool >::Invoke(5 /* System.Void System.Buffers.ArrayPool`1::Return(T[],System.Boolean) */, L_2, L_3, (bool)0); } IL_014c: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var); ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_4; L_4 = ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_inline(ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var); int32_t L_5 = V_1; NullCheck(L_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6; L_6 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t >::Invoke(4 /* T[] System.Buffers.ArrayPool`1::Rent(System.Int32) */, L_4, L_5); V_2 = L_6; String_t* L_7 = ___0_path; V_3 = L_7; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0139_1: {// begin finally (depth: 2) V_5 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL; return; }// end finally (depth: 2) }); try {// begin try (depth: 2) { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = L_8; V_5 = L_9; if (!L_9) { goto IL_0024_2; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_5; NullCheck(L_10); if (((int32_t)(((RuntimeArray*)L_10)->max_length))) { goto IL_002a_2; } } IL_0024_2: { V_4 = (uint8_t*)((uintptr_t)0); goto IL_0035_2; } IL_002a_2: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_5; NullCheck(L_11); V_4 = (uint8_t*)((uintptr_t)((L_11)->GetAddressAt(static_cast(0)))); } IL_0035_2: { String_t* L_12 = V_3; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); intptr_t L_13; L_13 = Sys_OpenDir_m5E0BB1A74A5E5CA1CFDDBE86C2C281F452745854(L_12, NULL); V_6 = L_13; intptr_t L_14 = V_6; intptr_t L_15 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1; bool L_16; L_16 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_14, L_15, NULL); if (!L_16) { goto IL_0058_2; } } { il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var))); ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_17; L_17 = Sys_GetLastErrorInfo_m1C1BB8341DD84927BD33E6240585E753D4B3572B(NULL); String_t* L_18 = V_3; Exception_t* L_19; L_19 = Interop_GetExceptionForIoErrno_m701F71EF26E8E84C4DB2278B54D7F89BD522C7E7(L_17, L_18, (bool)1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_EnumerateFilesRecursively_m2984DD3C4C89C29B20ACC0A4E76C6267F877E6C9_RuntimeMethod_var))); } IL_0058_2: { } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00f1_2: {// begin finally (depth: 3) { intptr_t L_20 = V_6; intptr_t L_21 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1; bool L_22; L_22 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_20, L_21, NULL); if (!L_22) { goto IL_0107_2; } } { intptr_t L_23 = V_6; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_24; L_24 = Sys_CloseDir_m995426A78D39BF688B0A69FC2916DA3125AF193E(L_23, NULL); } IL_0107_2: { return; } }// end finally (depth: 3) }); try {// begin try (depth: 3) { goto IL_00de_3; } IL_005e_3: { String_t* L_25 = V_3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_26; L_26 = TimeZoneInfo_GetDirectoryEntryFullPath_mC0D4A09E850135810DCE3CD708A010951F60E31E((&V_7), L_25, NULL); V_8 = L_26; String_t* L_27 = V_8; if (!L_27) { goto IL_00de_3; } } { DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 L_28 = V_7; int32_t L_29 = L_28.___InodeType_2; if ((!(((uint32_t)L_29) == ((uint32_t)4)))) { goto IL_007b_3; } } { V_9 = (bool)1; goto IL_00bb_3; } IL_007b_3: { DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 L_30 = V_7; int32_t L_31 = L_30.___InodeType_2; if ((((int32_t)L_31) == ((int32_t)((int32_t)10)))) { goto IL_008f_3; } } { DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 L_32 = V_7; int32_t L_33 = L_32.___InodeType_2; if (L_33) { goto IL_00b8_3; } } IL_008f_3: { String_t* L_34 = V_8; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_35; L_35 = Sys_Stat_m335FF7F9EF8D4ADB75EFEF4365576E163166BD16(L_34, (&V_10), NULL); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00b3_3; } } { FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 L_36 = V_10; int32_t L_37 = L_36.___Mode_1; V_9 = (bool)((((int32_t)((int32_t)(L_37&((int32_t)61440)))) == ((int32_t)((int32_t)16384)))? 1 : 0); goto IL_00bb_3; } IL_00b3_3: { V_9 = (bool)0; goto IL_00bb_3; } IL_00b8_3: { V_9 = (bool)0; } IL_00bb_3: { bool L_38 = V_9; if (!L_38) { goto IL_00d2_3; } } { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_39 = V_0; if (L_39) { goto IL_00c8_3; } } { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_40 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var); NullCheck(L_40); List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_40, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var); V_0 = L_40; } IL_00c8_3: { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_41 = V_0; String_t* L_42 = V_8; NullCheck(L_41); List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_41, L_42, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var); goto IL_00de_3; } IL_00d2_3: { Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* L_43 = ___1_condition; String_t* L_44 = V_8; NullCheck(L_43); bool L_45; L_45 = Predicate_1_Invoke_m180565420FDCD7211D85CB31534D98770D88A4FF_inline(L_43, L_44, NULL); if (!L_45) { goto IL_00de_3; } } { goto IL_014d; } IL_00de_3: { intptr_t L_46 = V_6; uint8_t* L_47 = V_4; int32_t L_48 = V_1; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_49; L_49 = Sys_ReadDirR_m67A4E0E89B4047AA80821C822AED766612B01CFA(L_46, L_47, L_48, (&V_7), NULL); if (!L_49) { goto IL_005e_3; } } { goto IL_0108_2; } }// end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0108_2: { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_50 = V_0; if (!L_50) { goto IL_0137_2; } } { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_51 = V_0; NullCheck(L_51); int32_t L_52; L_52 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_51, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); if (L_52) { goto IL_0115_2; } } { goto IL_014d; } IL_0115_2: { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_53 = V_0; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_54 = V_0; NullCheck(L_54); int32_t L_55; L_55 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_54, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); NullCheck(L_53); String_t* L_56; L_56 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_53, ((int32_t)il2cpp_codegen_subtract(L_55, 1)), List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var); V_3 = L_56; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_57 = V_0; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_58 = V_0; NullCheck(L_58); int32_t L_59; L_59 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_58, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); NullCheck(L_57); List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D(L_57, ((int32_t)il2cpp_codegen_subtract(L_59, 1)), List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var); goto IL_0035_2; } IL_0137_2: { goto IL_014d; } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_014d: { return; } } // System.String System.TimeZoneInfo::FindTimeZoneId(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneId_mDDD86DF4E88119C16DB85477DA18FCC4E2CC4F47 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFED3FDDE36BD8F8EFDC4080D205F010B8503EE53); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_0 = (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0_il2cpp_TypeInfo_var); NullCheck(L_0); U3CU3Ec__DisplayClass16_0__ctor_mBA6BC752E40ECF2E8E0A473CF1B047F750FF5171(L_0, NULL); V_0 = L_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_1 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_rawData; NullCheck(L_1); L_1->___rawData_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&L_1->___rawData_3), (void*)L_2); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_3 = V_0; NullCheck(L_3); L_3->___id_4 = _stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101; Il2CppCodeGenWriteBarrier((void**)(&L_3->___id_4), (void*)_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_4 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_5; L_5 = TimeZoneInfo_GetTimeZoneDirectory_mAA0ADCDCA238A54CEAF1CF2F8454B599FAA3BE98(NULL); NullCheck(L_4); L_4->___timeZoneDirectory_5 = L_5; Il2CppCodeGenWriteBarrier((void**)(&L_4->___timeZoneDirectory_5), (void*)L_5); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_6 = V_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_7 = V_0; NullCheck(L_7); String_t* L_8 = L_7->___timeZoneDirectory_5; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_9; L_9 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_8, _stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC, NULL); NullCheck(L_6); L_6->___localtimeFilePath_0 = L_9; Il2CppCodeGenWriteBarrier((void**)(&L_6->___localtimeFilePath_0), (void*)L_9); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_10 = V_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_11 = V_0; NullCheck(L_11); String_t* L_12 = L_11->___timeZoneDirectory_5; String_t* L_13; L_13 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_12, _stringLiteralFED3FDDE36BD8F8EFDC4080D205F010B8503EE53, NULL); NullCheck(L_10); L_10->___posixrulesFilePath_1 = L_13; Il2CppCodeGenWriteBarrier((void**)(&L_10->___posixrulesFilePath_1), (void*)L_13); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_14 = V_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_15 = V_0; NullCheck(L_15); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = L_15->___rawData_3; NullCheck(L_16); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))); NullCheck(L_14); L_14->___buffer_2 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_14->___buffer_2), (void*)L_17); } try {// begin try (depth: 1) U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_18 = V_0; NullCheck(L_18); String_t* L_19 = L_18->___timeZoneDirectory_5; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_20 = V_0; Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* L_21 = (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C*)il2cpp_codegen_object_new(Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C_il2cpp_TypeInfo_var); NullCheck(L_21); Predicate_1__ctor_m792445D8ACC019EE3CE897994AF6C04721045A7E(L_21, L_20, (intptr_t)((void*)U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8_RuntimeMethod_var), NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_EnumerateFilesRecursively_m2984DD3C4C89C29B20ACC0A4E76C6267F877E6C9(L_19, L_21, NULL); goto IL_0084; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_007b; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_007e; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0081; } throw e; } CATCH_007b: {// begin catch(System.IO.IOException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0084; }// end catch (depth: 1) CATCH_007e: {// begin catch(System.Security.SecurityException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0084; }// end catch (depth: 1) CATCH_0081: {// begin catch(System.UnauthorizedAccessException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0084; }// end catch (depth: 1) IL_0084: { U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_22 = V_0; NullCheck(L_22); String_t* L_23 = L_22->___id_4; return L_23; } } // System.Boolean System.TimeZoneInfo::CompareTimeZoneFile(System.String,System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CompareTimeZoneFile_mC7AB75C3040CA3A1E3E608E1BB6D92ACFF8E6910 (String_t* ___0_filePath, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_buffer, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_rawData, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; bool V_5 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { String_t* L_0 = ___0_filePath; FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1 = (FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8*)il2cpp_codegen_object_new(FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var); NullCheck(L_1); FileStream__ctor_m059A8F48B2F463D020113605765EC40F2D54E928(L_1, L_0, 3, 1, 1, 1, NULL); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_005e_1: {// begin finally (depth: 2) { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_2 = V_0; if (!L_2) { goto IL_0067_1; } } { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_3 = V_0; NullCheck(L_3); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3); } IL_0067_1: { return; } }// end finally (depth: 2) }); try {// begin try (depth: 2) { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_4 = V_0; NullCheck(L_4); int64_t L_5; L_5 = VirtualFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___2_rawData; NullCheck(L_6); if ((!(((uint64_t)L_5) == ((uint64_t)((int64_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_005c_2; } } { V_1 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___2_rawData; NullCheck(L_7); V_2 = ((int32_t)(((RuntimeArray*)L_7)->max_length)); goto IL_0053_2; } IL_001f_2: { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___1_buffer; int32_t L_10 = V_1; int32_t L_11 = V_2; NullCheck(L_8); int32_t L_12; L_12 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(23 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, L_10, L_11); V_3 = L_12; int32_t L_13 = V_3; if (L_13) { goto IL_0032_2; } } { Exception_t* L_14; L_14 = Error_GetEndOfFile_mC4A9C2E38EE4D3B391EF73E7A17A4437417973C4(NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_CompareTimeZoneFile_mC7AB75C3040CA3A1E3E608E1BB6D92ACFF8E6910_RuntimeMethod_var))); } IL_0032_2: { int32_t L_15 = V_1; int32_t L_16 = V_3; V_4 = ((int32_t)il2cpp_codegen_add(L_15, L_16)); goto IL_004a_2; } IL_0039_2: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ___1_buffer; int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; uint8_t L_20 = (L_17)->GetAt(static_cast(L_19)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___2_rawData; int32_t L_22 = V_1; NullCheck(L_21); int32_t L_23 = L_22; uint8_t L_24 = (L_21)->GetAt(static_cast(L_23)); if ((((int32_t)L_20) == ((int32_t)L_24))) { goto IL_0046_2; } } { V_5 = (bool)0; goto IL_0075; } IL_0046_2: { int32_t L_25 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_25, 1)); } IL_004a_2: { int32_t L_26 = V_1; int32_t L_27 = V_4; if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_0039_2; } } { int32_t L_28 = V_2; int32_t L_29 = V_3; V_2 = ((int32_t)il2cpp_codegen_subtract(L_28, L_29)); } IL_0053_2: { int32_t L_30 = V_2; if ((((int32_t)L_30) > ((int32_t)0))) { goto IL_001f_2; } } { V_5 = (bool)1; goto IL_0075; } IL_005c_2: { goto IL_0068_1; } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0068_1: { goto IL_0073; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_006a; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_006d; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0070; } throw e; } CATCH_006a: {// begin catch(System.IO.IOException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0073; }// end catch (depth: 1) CATCH_006d: {// begin catch(System.Security.SecurityException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0073; }// end catch (depth: 1) CATCH_0070: {// begin catch(System.UnauthorizedAccessException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0073; }// end catch (depth: 1) IL_0073: { return (bool)0; } IL_0075: { bool L_31 = V_5; return L_31; } } // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZoneFromTzFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZoneFromTzFile_m406BA408BA70956955B8EF3843842617497B2983 (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; } ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL; String_t* V_1 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_2 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_3 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_0; L_0 = TimeZoneInfo_TryGetLocalTzFile_mFB5811C15660015CD59860D0074AF01C1A0FAD57((&V_0), (&V_1), NULL); if (!L_0) { goto IL_0018; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0; String_t* L_2 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3; L_3 = TimeZoneInfo_GetTimeZoneFromTzData_m70C74CA0E884FD4C84A2558BDC3CE79E87393E4D(L_1, L_2, NULL); V_3 = L_3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_4 = V_3; if (!L_4) { goto IL_0018; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = V_3; return L_5; } IL_0018: { V_2 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)NULL; } try {// begin try (depth: 1) il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6; L_6 = TimeZoneInfo_CreateLocalUnity_m2CC27D4772C2E7C6F9180DF0845B3F46C6AFCD12(NULL); V_2 = L_6; goto IL_0027; }// 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_0022; } throw e; } CATCH_0022: {// begin catch(System.Object) V_2 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)NULL; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0027; }// end catch (depth: 1) IL_0027: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = V_2; if (!L_7) { goto IL_002c; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_8 = V_2; return L_8; } IL_002c: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_9; L_9 = TimeZoneInfo_get_Utc_m0690BFE721AA48181F69883884DDEFCC81EDDE0D_inline(NULL); return L_9; } } // System.TimeZoneInfo System.TimeZoneInfo::GetTimeZoneFromTzData(System.Byte[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetTimeZoneFromTzData_m70C74CA0E884FD4C84A2558BDC3CE79E87393E4D (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, String_t* ___1_id, 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; } TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_rawData; if (!L_0) { goto IL_0026; } } try {// begin try (depth: 1) ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_rawData; String_t* L_2 = ___1_id; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_3); TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5(L_3, L_1, L_2, (bool)0, NULL); V_0 = L_3; goto IL_0028; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000e; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0011; } throw e; } CATCH_000e: {// begin catch(System.ArgumentException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0014; }// end catch (depth: 1) CATCH_0011: {// begin catch(System.InvalidTimeZoneException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0014; }// end catch (depth: 1) IL_0014: { } try {// begin try (depth: 1) ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_rawData; String_t* L_5 = ___1_id; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_6); TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5(L_6, L_4, L_5, (bool)1, NULL); V_0 = L_6; goto IL_0028; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0020; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0023; } throw e; } CATCH_0020: {// begin catch(System.ArgumentException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0026; }// end catch (depth: 1) CATCH_0023: {// begin catch(System.InvalidTimeZoneException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0026; }// end catch (depth: 1) IL_0026: { return (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)NULL; } IL_0028: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = V_0; return L_7; } } // System.String System.TimeZoneInfo::GetTimeZoneDirectory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectory_mAA0ADCDCA238A54CEAF1CF2F8454B599FAA3BE98 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BE4AA33C9F9269F3A5D8C902F7D37A6E28D6E38); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral970C23FDBBAD9A488898D5C3E419B934D2FB9545); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_0; L_0 = TimeZoneInfo_GetTimeZoneDirectoryUnity_mC243B810BBC87D97D387CB623C7B3ECE3DB6ED32_inline(NULL); V_0 = L_0; String_t* L_1 = V_0; bool L_2; L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL); if (L_2) { goto IL_0010; } } { String_t* L_3 = V_0; return L_3; } IL_0010: { String_t* L_4; L_4 = Environment_GetEnvironmentVariable_mAF8CC6EC1CB916789ABB16A02C032F89E508C21A(_stringLiteral5BE4AA33C9F9269F3A5D8C902F7D37A6E28D6E38, NULL); V_0 = L_4; String_t* L_5 = V_0; if (L_5) { goto IL_0026; } } { V_0 = _stringLiteral970C23FDBBAD9A488898D5C3E419B934D2FB9545; goto IL_0044; } IL_0026: { String_t* L_6 = V_0; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); Il2CppChar L_7 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2; NullCheck(L_6); bool L_8; L_8 = String_EndsWith_m1345909BD17FAD2AE0F70BC1B5CFC2010CF226B0(L_6, L_7, NULL); if (L_8) { goto IL_0044; } } { String_t* L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_10; L_10 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2), NULL); String_t* L_11; L_11 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_9, L_10, NULL); V_0 = L_11; } IL_0044: { String_t* L_12 = V_0; return L_12; } } // System.TimeSpan System.TimeZoneInfo::GetDateTimeNowUtcOffsetFromUtc(System.DateTime,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m5F887A725FB1D272979C57AEA1A3675BAC6ED637 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, bool* ___1_isAmbiguousLocalDst, 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; } bool V_0 = false; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_time; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL); bool* L_2 = ___1_isAmbiguousLocalDst; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2(L_0, L_1, (&V_0), L_2, NULL); return L_3; } } // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRules(System.TimeZoneInfo/AdjustmentRule[]&,System.TimeSpan,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRules_mC7B2337DDFAB6BCD72992E6BEAD14DB31CB47E8A (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** ___0_rules, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___2_dts, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_typeOfLocalTime, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___4_transitionType, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___5_StandardTime, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___6_GmtTime, String_t* ___7_futureTransitionsPosixFormat, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_1 = NULL; { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_0 = ___0_rules; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_1 = ___2_dts; NullCheck(L_1); if (!(((RuntimeArray*)L_1)->max_length)) { goto IL_003e; } } { V_0 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_2 = (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*)il2cpp_codegen_object_new(List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); NullCheck(L_2); List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A(L_2, List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); V_1 = L_2; goto IL_0024; } IL_0011: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ___1_baseUtcOffset; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_4 = V_1; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_5 = ___2_dts; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___3_typeOfLocalTime; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_7 = ___4_transitionType; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = ___5_StandardTime; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_9 = ___6_GmtTime; String_t* L_10 = ___7_futureTransitionsPosixFormat; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_GenerateAdjustmentRule_m0A179DAD79ECA0C512178EBE8CD620CDAFAF58E5((&V_0), L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10, NULL); } IL_0024: { int32_t L_11 = V_0; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_12 = ___2_dts; NullCheck(L_12); if ((((int32_t)L_11) <= ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))) { goto IL_0011; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_13 = ___0_rules; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_14 = V_1; NullCheck(L_14); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_15; L_15 = List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260(L_14, List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); *((RuntimeObject**)L_13) = (RuntimeObject*)L_15; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_13, (void*)(RuntimeObject*)L_15); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_16 = ___0_rules; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = *((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA**)L_16); if (!L_17) { goto IL_003e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_18 = ___0_rules; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_19 = *((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA**)L_18); NullCheck(L_19); if ((((RuntimeArray*)L_19)->max_length)) { goto IL_003e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_20 = ___0_rules; *((RuntimeObject**)L_20) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)NULL); } IL_003e: { return; } } // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRule(System.Int32&,System.TimeSpan,System.Collections.Generic.List`1,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRule_m0A179DAD79ECA0C512178EBE8CD620CDAFAF58E5 (int32_t* ___0_index, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeZoneBaseUtcOffset, List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* ___2_rulesList, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___3_dts, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___4_typeOfLocalTime, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___5_transitionTypes, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___6_StandardTime, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___7_GmtTime, String_t* ___8_futureTransitionsPosixFormat, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1; memset((&V_1), 0, sizeof(V_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2; memset((&V_2), 0, sizeof(V_2)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_4 = NULL; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_7; memset((&V_7), 0, sizeof(V_7)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_8; memset((&V_8), 0, sizeof(V_8)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_9; memset((&V_9), 0, sizeof(V_9)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_10; memset((&V_10), 0, sizeof(V_10)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_11 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_12; memset((&V_12), 0, sizeof(V_12)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_13 = NULL; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_14; memset((&V_14), 0, sizeof(V_14)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_15; memset((&V_15), 0, sizeof(V_15)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_16; memset((&V_16), 0, sizeof(V_16)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_17 = NULL; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B8_0; memset((&G_B8_0), 0, sizeof(G_B8_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B7_0; memset((&G_B7_0), 0, sizeof(G_B7_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B9_0; memset((&G_B9_0), 0, sizeof(G_B9_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B9_1; memset((&G_B9_1), 0, sizeof(G_B9_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B12_0; memset((&G_B12_0), 0, sizeof(G_B12_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B18_0; memset((&G_B18_0), 0, sizeof(G_B18_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B18_1; memset((&G_B18_1), 0, sizeof(G_B18_1)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B17_0; memset((&G_B17_0), 0, sizeof(G_B17_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B17_1; memset((&G_B17_1), 0, sizeof(G_B17_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B19_0; memset((&G_B19_0), 0, sizeof(G_B19_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B19_1; memset((&G_B19_1), 0, sizeof(G_B19_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B19_2; memset((&G_B19_2), 0, sizeof(G_B19_2)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B21_0; memset((&G_B21_0), 0, sizeof(G_B21_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B21_1; memset((&G_B21_1), 0, sizeof(G_B21_1)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B20_0; memset((&G_B20_0), 0, sizeof(G_B20_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B20_1; memset((&G_B20_1), 0, sizeof(G_B20_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B22_0; memset((&G_B22_0), 0, sizeof(G_B22_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B22_1; memset((&G_B22_1), 0, sizeof(G_B22_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B22_2; memset((&G_B22_2), 0, sizeof(G_B22_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B24_0; memset((&G_B24_0), 0, sizeof(G_B24_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B23_0; memset((&G_B23_0), 0, sizeof(G_B23_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B25_0; memset((&G_B25_0), 0, sizeof(G_B25_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B35_0; memset((&G_B35_0), 0, sizeof(G_B35_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B34_0; memset((&G_B34_0), 0, sizeof(G_B34_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B36_0; memset((&G_B36_0), 0, sizeof(G_B36_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B36_1; memset((&G_B36_1), 0, sizeof(G_B36_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B39_0; memset((&G_B39_0), 0, sizeof(G_B39_0)); { goto IL_0008; } IL_0002: { int32_t* L_0 = ___0_index; int32_t* L_1 = ___0_index; int32_t L_2 = *((int32_t*)L_1); *((int32_t*)L_0) = (int32_t)((int32_t)il2cpp_codegen_add(L_2, 1)); } IL_0008: { int32_t* L_3 = ___0_index; int32_t L_4 = *((int32_t*)L_3); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_5 = ___3_dts; NullCheck(L_5); if ((((int32_t)L_4) >= ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) { goto IL_0023; } } { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_6 = ___3_dts; int32_t* L_7 = ___0_index; int32_t L_8 = *((int32_t*)L_7); NullCheck(L_6); int32_t L_9 = L_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = (L_6)->GetAt(static_cast(L_9)); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; bool L_12; L_12 = DateTime_op_Equality_m568A6320E27F3F7708C77BF8751925C8775DD921(L_10, L_11, NULL); if (L_12) { goto IL_0002; } } IL_0023: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_13 = ___2_rulesList; NullCheck(L_13); int32_t L_14; L_14 = List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline(L_13, List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); if (L_14) { goto IL_00c1; } } { int32_t* L_15 = ___0_index; int32_t L_16 = *((int32_t*)L_15); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_17 = ___3_dts; NullCheck(L_17); if ((((int32_t)L_16) >= ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))) { goto IL_00c1; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_18 = ___5_transitionTypes; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_19; L_19 = TimeZoneInfo_TZif_GetEarlyDateTransitionType_m30B59582E42557DDD62A80CF9CD3AF9FD94BA579(L_18, NULL); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_20 = ___3_dts; int32_t* L_21 = ___0_index; int32_t L_22 = *((int32_t*)L_21); NullCheck(L_20); int32_t L_23 = L_22; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = (L_20)->GetAt(static_cast(L_23)); V_0 = L_24; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_25 = L_19; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26 = L_25.___UtcOffset_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27 = ___1_timeZoneBaseUtcOffset; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_28; L_28 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5(L_26, L_27, NULL); V_1 = L_28; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_29 = L_25; bool L_30 = L_29.___IsDst_1; G_B7_0 = L_29; if (L_30) { G_B8_0 = L_29; goto IL_0064; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B9_0 = L_31; G_B9_1 = G_B7_0; goto IL_0065; } IL_0064: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_32 = V_1; G_B9_0 = L_32; G_B9_1 = G_B8_0; } IL_0065: { V_2 = G_B9_0; bool L_33 = G_B9_1.___IsDst_1; if (L_33) { goto IL_0070; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = V_1; G_B12_0 = L_34; goto IL_0075; } IL_0070: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B12_0 = L_35; } IL_0075: { V_3 = G_B12_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37; L_37 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_0), ((int64_t)(-1)), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38 = V_2; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_39 = V_5; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_40 = V_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_41 = V_3; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42; L_42 = AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8(L_36, L_37, L_38, L_39, L_40, L_41, (bool)1, NULL); V_4 = L_42; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43 = ___1_timeZoneBaseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_44 = V_4; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_45; L_45 = TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD(L_43, L_44, NULL); if (L_45) { goto IL_00b4; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_46 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mC4F4399C2DCDAAFF3E0AB3D159BC2048841E2203(L_46, (&V_4), NULL); } IL_00b4: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_47 = ___2_rulesList; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_48 = V_4; NullCheck(L_47); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_47, L_48, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0257; } IL_00c1: { int32_t* L_49 = ___0_index; int32_t L_50 = *((int32_t*)L_49); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_51 = ___3_dts; NullCheck(L_51); if ((((int32_t)L_50) >= ((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length))))) { goto IL_018e; } } { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_52 = ___3_dts; int32_t* L_53 = ___0_index; int32_t L_54 = *((int32_t*)L_53); NullCheck(L_52); int32_t L_55 = ((int32_t)il2cpp_codegen_subtract(L_54, 1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_56 = (L_52)->GetAt(static_cast(L_55)); TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_57 = ___5_transitionTypes; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_58 = ___4_typeOfLocalTime; int32_t* L_59 = ___0_index; int32_t L_60 = *((int32_t*)L_59); NullCheck(L_58); int32_t L_61 = ((int32_t)il2cpp_codegen_subtract(L_60, 1)); uint8_t L_62 = (L_58)->GetAt(static_cast(L_61)); NullCheck(L_57); uint8_t L_63 = L_62; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_64 = (L_57)->GetAt(static_cast(L_63)); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_65 = ___3_dts; int32_t* L_66 = ___0_index; int32_t L_67 = *((int32_t*)L_66); NullCheck(L_65); int32_t L_68 = L_67; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_69 = (L_65)->GetAt(static_cast(L_68)); V_6 = L_69; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_70 = L_64; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_71 = L_70.___UtcOffset_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_72 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_73; L_73 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5(L_71, L_72, NULL); V_7 = L_73; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_74 = L_70; bool L_75 = L_74.___IsDst_1; G_B17_0 = L_74; G_B17_1 = L_56; if (L_75) { G_B18_0 = L_74; G_B18_1 = L_56; goto IL_010a; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_76 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B19_0 = L_76; G_B19_1 = G_B17_0; G_B19_2 = G_B17_1; goto IL_010c; } IL_010a: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_77 = V_7; G_B19_0 = L_77; G_B19_1 = G_B18_0; G_B19_2 = G_B18_1; } IL_010c: { V_8 = G_B19_0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_78 = G_B19_1; bool L_79 = L_78.___IsDst_1; G_B20_0 = L_78; G_B20_1 = G_B19_2; if (L_79) { G_B21_0 = L_78; G_B21_1 = G_B19_2; goto IL_011a; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_80 = V_7; G_B22_0 = L_80; G_B22_1 = G_B20_0; G_B22_2 = G_B20_1; goto IL_011f; } IL_011a: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_81 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B22_0 = L_81; G_B22_1 = G_B21_0; G_B22_2 = G_B21_1; } IL_011f: { V_9 = G_B22_0; bool L_82 = G_B22_1.___IsDst_1; G_B23_0 = G_B22_2; if (!L_82) { G_B24_0 = G_B22_2; goto IL_0146; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_83; L_83 = DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), (2.0), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_84; L_84 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_83, 1, 1, NULL); V_10 = L_84; G_B25_0 = G_B23_0; goto IL_014e; } IL_0146: { il2cpp_codegen_initobj((&V_10), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); G_B25_0 = G_B24_0; } IL_014e: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_85; L_85 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_6), ((int64_t)(-1)), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_86 = V_8; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_87 = V_10; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_88 = V_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_89 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_90; L_90 = AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8(G_B25_0, L_85, L_86, L_87, L_88, L_89, (bool)1, NULL); V_11 = L_90; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_91 = ___1_timeZoneBaseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_92 = V_11; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_93; L_93 = TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD(L_91, L_92, NULL); if (L_93) { goto IL_0181; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_94 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mC4F4399C2DCDAAFF3E0AB3D159BC2048841E2203(L_94, (&V_11), NULL); } IL_0181: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_95 = ___2_rulesList; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_96 = V_11; NullCheck(L_95); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_95, L_96, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0257; } IL_018e: { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_97 = ___3_dts; int32_t* L_98 = ___0_index; int32_t L_99 = *((int32_t*)L_98); NullCheck(L_97); int32_t L_100 = ((int32_t)il2cpp_codegen_subtract(L_99, 1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_101 = (L_97)->GetAt(static_cast(L_100)); V_12 = L_101; String_t* L_102 = ___8_futureTransitionsPosixFormat; bool L_103; L_103 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_102, NULL); if (L_103) { goto IL_01d5; } } { String_t* L_104 = ___8_futureTransitionsPosixFormat; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_105 = V_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_106 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_107; L_107 = TimeZoneInfo_TZif_CreateAdjustmentRuleForPosixFormat_m7087938F3EC5AA7335616A5ABB2904F901D0475E(L_104, L_105, L_106, NULL); V_13 = L_107; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_108 = V_13; if (!L_108) { goto IL_0257; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_109 = ___1_timeZoneBaseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_110 = V_13; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_111; L_111 = TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD(L_109, L_110, NULL); if (L_111) { goto IL_01c8; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_112 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mC4F4399C2DCDAAFF3E0AB3D159BC2048841E2203(L_112, (&V_13), NULL); } IL_01c8: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_113 = ___2_rulesList; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_114 = V_13; NullCheck(L_113); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_113, L_114, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0257; } IL_01d5: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_115 = ___5_transitionTypes; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_116 = ___4_typeOfLocalTime; int32_t* L_117 = ___0_index; int32_t L_118 = *((int32_t*)L_117); NullCheck(L_116); int32_t L_119 = ((int32_t)il2cpp_codegen_subtract(L_118, 1)); uint8_t L_120 = (L_116)->GetAt(static_cast(L_119)); NullCheck(L_115); uint8_t L_121 = L_120; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_122 = (L_115)->GetAt(static_cast(L_121)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_123 = L_122; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_124 = L_123.___UtcOffset_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_125 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_126; L_126 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5(L_124, L_125, NULL); V_14 = L_126; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_127 = L_123; bool L_128 = L_127.___IsDst_1; G_B34_0 = L_127; if (L_128) { G_B35_0 = L_127; goto IL_0200; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_129 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B36_0 = L_129; G_B36_1 = G_B34_0; goto IL_0202; } IL_0200: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_130 = V_14; G_B36_0 = L_130; G_B36_1 = G_B35_0; } IL_0202: { V_15 = G_B36_0; bool L_131 = G_B36_1.___IsDst_1; if (L_131) { goto IL_020f; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_132 = V_14; G_B39_0 = L_132; goto IL_0214; } IL_020f: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_133 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B39_0 = L_133; } IL_0214: { V_16 = G_B39_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_134 = V_12; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_135 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_136 = V_15; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_137 = V_5; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_138 = V_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_139 = V_16; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_140; L_140 = AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8(L_134, L_135, L_136, L_137, L_138, L_139, (bool)1, NULL); V_17 = L_140; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_141 = ___1_timeZoneBaseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_142 = V_17; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_143; L_143 = TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD(L_141, L_142, NULL); if (L_143) { goto IL_024f; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_144 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mC4F4399C2DCDAAFF3E0AB3D159BC2048841E2203(L_144, (&V_17), NULL); } IL_024f: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_145 = ___2_rulesList; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_146 = V_17; NullCheck(L_145); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_145, L_146, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); } IL_0257: { int32_t* L_147 = ___0_index; int32_t* L_148 = ___0_index; int32_t L_149 = *((int32_t*)L_148); *((int32_t*)L_147) = (int32_t)((int32_t)il2cpp_codegen_add(L_149, 1)); return; } } // System.TimeSpan System.TimeZoneInfo::TZif_CalculateTransitionOffsetFromBase(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_transitionOffset, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeZoneBaseUtcOffset, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_transitionOffset; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeSpan_op_Subtraction_m56EC225AACB5E7C91E29A2ECB634B658A63289F7(L_0, L_1, NULL); V_0 = L_2; int64_t L_3; L_3 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_0), NULL); if (!((int64_t)(L_3%((int64_t)((int32_t)600000000))))) { goto IL_002e; } } { int32_t L_4; L_4 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&V_0), NULL); int32_t L_5; L_5 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&V_0), NULL); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_0), L_4, L_5, 0, NULL); } IL_002e: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = V_0; return L_6; } } // System.TimeZoneInfo/TZifType System.TimeZoneInfo::TZif_GetEarlyDateTransitionType(System.TimeZoneInfo/TZifType[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 TimeZoneInfo_TZif_GetEarlyDateTransitionType_m30B59582E42557DDD62A80CF9CD3AF9FD94BA579 (TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___0_transitionTypes, const RuntimeMethod* method) { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* V_0 = NULL; int32_t V_1 = 0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 V_2; memset((&V_2), 0, sizeof(V_2)); { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_0 = ___0_transitionTypes; V_0 = L_0; V_1 = 0; goto IL_001c; } IL_0006: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_1 = V_0; int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_4 = (L_1)->GetAt(static_cast(L_3)); V_2 = L_4; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_5 = V_2; bool L_6 = L_5.___IsDst_1; if (L_6) { goto IL_0018; } } { TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_7 = V_2; return L_7; } IL_0018: { int32_t L_8 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1)); } IL_001c: { int32_t L_9 = V_1; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_10 = V_0; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))) { goto IL_0006; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_11 = ___0_transitionTypes; NullCheck(L_11); if (!(((RuntimeArray*)L_11)->max_length)) { goto IL_002e; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_12 = ___0_transitionTypes; NullCheck(L_12); int32_t L_13 = 0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_14 = (L_12)->GetAt(static_cast(L_13)); return L_14; } IL_002e: { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_15 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_15); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ABDC3BE0D4AE0A52AF73DB2F567C19CF2E6E875)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_GetEarlyDateTransitionType_m30B59582E42557DDD62A80CF9CD3AF9FD94BA579_RuntimeMethod_var))); } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::TZif_CreateAdjustmentRuleForPosixFormat(System.String,System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_TZif_CreateAdjustmentRuleForPosixFormat_m7087938F3EC5AA7335616A5ABB2904F901D0475E (String_t* ___0_posixFormat, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_startTransitionDate, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_timeZoneBaseUtcOffset, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; String_t* V_4 = NULL; String_t* V_5 = NULL; String_t* V_6 = NULL; String_t* V_7 = NULL; Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_8; memset((&V_8), 0, sizeof(V_8)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_9; memset((&V_9), 0, sizeof(V_9)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_10; memset((&V_10), 0, sizeof(V_10)); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_11; memset((&V_11), 0, sizeof(V_11)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_12; memset((&V_12), 0, sizeof(V_12)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_13; memset((&V_13), 0, sizeof(V_13)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_14; memset((&V_14), 0, sizeof(V_14)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_15; memset((&V_15), 0, sizeof(V_15)); { String_t* L_0 = ___0_posixFormat; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_1; L_1 = TimeZoneInfo_TZif_ParsePosixFormat_m3BC659F9A49FF44432E402B21404EE4DCEF91914(L_0, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), (&V_5), (&V_6), (&V_7), NULL); if (!L_1) { goto IL_00ea; } } { String_t* L_2 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_3; L_3 = TimeZoneInfo_TZif_ParseOffsetString_m3BAD639153A20E90FD24C3B9AF09506515D9698F(L_2, NULL); V_8 = L_3; bool L_4; L_4 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_8), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); if (!L_4) { goto IL_00ea; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_8), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_10 = L_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_10), NULL); V_9 = L_6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = V_9; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___2_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5(L_7, L_8, NULL); V_9 = L_9; String_t* L_10 = V_2; bool L_11; L_11 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_10, NULL); if (L_11) { goto IL_00c2; } } { String_t* L_12 = V_3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_13; L_13 = TimeZoneInfo_TZif_ParseOffsetString_m3BAD639153A20E90FD24C3B9AF09506515D9698F(L_12, NULL); V_11 = L_13; bool L_14; L_14 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_11), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); if (L_14) { goto IL_0070; } } { TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_12), 1, 0, 0, NULL); goto IL_0097; } IL_0070: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_11), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_10 = L_15; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16; L_16 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_10), NULL); V_12 = L_16; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = V_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18 = ___2_timeZoneBaseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19; L_19 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5(L_17, L_18, NULL); V_12 = L_19; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20 = V_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21 = V_9; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22; L_22 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mEE7862A67AEA7E5652F913E9F7D0ADF3AB50E1C5(L_20, L_21, NULL); V_12 = L_22; } IL_0097: { String_t* L_23 = V_4; String_t* L_24 = V_5; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_25; L_25 = TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A(L_23, L_24, NULL); V_13 = L_25; String_t* L_26 = V_6; String_t* L_27 = V_7; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_28; L_28 = TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A(L_26, L_27, NULL); V_14 = L_28; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = ___1_startTransitionDate; 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; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = V_12; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_32 = V_13; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_33 = V_14; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_35; L_35 = AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8(L_29, L_30, L_31, L_32, L_33, L_34, (bool)0, NULL); return L_35; } IL_00c2: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36 = ___1_startTransitionDate; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; il2cpp_codegen_initobj((&V_15), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_39 = V_15; il2cpp_codegen_initobj((&V_15), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_40 = V_15; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_41 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42; L_42 = AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8(L_36, L_37, L_38, L_39, L_40, L_41, (bool)1, NULL); return L_42; } IL_00ea: { return (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; } } // System.Nullable`1 System.TimeZoneInfo::TZif_ParseOffsetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 TimeZoneInfo_TZif_ParseOffsetString_m3BAD639153A20E90FD24C3B9AF09506515D9698F (String_t* ___0_offset, 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*)&Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1); s_Il2CppMethodInitialized = true; } Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; int32_t V_2 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272)); String_t* L_0 = ___0_offset; bool L_1; L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL); if (L_1) { goto IL_008c; } } { String_t* L_2 = ___0_offset; NullCheck(L_2); Il2CppChar L_3; L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL); V_1 = (bool)((((int32_t)L_3) == ((int32_t)((int32_t)45)))? 1 : 0); bool L_4 = V_1; if (L_4) { goto IL_002a; } } { String_t* L_5 = ___0_offset; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)43))))) { goto IL_0033; } } IL_002a: { String_t* L_7 = ___0_offset; NullCheck(L_7); String_t* L_8; L_8 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_7, 1, NULL); ___0_offset = L_8; } IL_0033: { String_t* L_9 = ___0_offset; bool L_10; L_10 = Int32_TryParse_mC928DE2FEC1C35ED5298BDDCA9868076E94B8A21(L_9, (&V_2), NULL); if (!L_10) { goto IL_004e; } } { int32_t L_11 = V_2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12; memset((&L_12), 0, sizeof(L_12)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_12), L_11, 0, 0, /*hidden argument*/NULL); Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_0), L_12, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); goto IL_006a; } IL_004e: { String_t* L_13 = ___0_offset; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14; L_14 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_15; L_15 = TimeSpan_TryParseExact_m6736F3D7D2D1AF1345F85DD0466A371011C1761C(L_13, _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1, L_14, (&V_3), NULL); if (!L_15) { goto IL_006a; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16 = V_3; Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_0), L_16, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); } IL_006a: { bool L_17; L_17 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_0), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); bool L_18 = V_1; if (!((int32_t)((int32_t)L_17&(int32_t)L_18))) { goto IL_008c; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19; L_19 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_0), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_4 = L_19; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20; L_20 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_4), NULL); Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_0), L_20, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); } IL_008c: { Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_21 = V_0; return L_21; } } // System.DateTime System.TimeZoneInfo::ParseTimeOfDay(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ParseTimeOfDay_m1F13382A2B856A4ABF19832D6C8F337990E0215C (String_t* ___0_time, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_1; memset((&V_1), 0, sizeof(V_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2; memset((&V_2), 0, sizeof(V_2)); { String_t* L_0 = ___0_time; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_1; L_1 = TimeZoneInfo_TZif_ParseOffsetString_m3BAD639153A20E90FD24C3B9AF09506515D9698F(L_0, NULL); V_1 = L_1; bool L_2; L_2 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_1), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); if (!L_2) { goto IL_0088; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_2 = L_3; int32_t L_4; L_4 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&V_2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_2 = L_5; int32_t L_6; L_6 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&V_2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_2 = L_7; int32_t L_8; L_8 = TimeSpan_get_Seconds_m8CA21613DC31BD025C5D30D41BAD0ED50827578B((&V_2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; memset((&L_9), 0, sizeof(L_9)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_9), L_4, L_6, L_8, /*hidden argument*/NULL); Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_1), L_9, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_12; L_12 = TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF(L_10, L_11, NULL); if (!L_12) { goto IL_006b; } } { DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_0), 1, 1, 2, 0, 0, 0, NULL); goto IL_0078; } IL_006b: { DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_0), 1, 1, 1, 0, 0, 0, NULL); } IL_0078: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14; L_14 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_13, L_14, NULL); V_0 = L_15; goto IL_0095; } IL_0088: { DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_0), 1, 1, 1, 2, 0, 0, NULL); } IL_0095: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = V_0; return L_16; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo::TZif_CreateTransitionTimeFromPosixRule(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A (String_t* ___0_date, String_t* ___1_time, 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; } TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_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; { String_t* L_0 = ___0_date; bool L_1; L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL); if (!L_1) { goto IL_0012; } } { il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_2 = V_0; return L_2; } IL_0012: { String_t* L_3 = ___0_date; NullCheck(L_3); Il2CppChar L_4; L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)77))))) { goto IL_004b; } } { String_t* L_5 = ___0_date; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_6; L_6 = TimeZoneInfo_TZif_ParseMDateRule_m36506D047F326D1F9DBDB9BFEB1C70EE4832A832(L_5, (&V_1), (&V_2), (&V_3), NULL); if (L_6) { goto IL_003c; } } { String_t* L_7 = ___0_date; String_t* L_8; L_8 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5EBC0FB5BE3EB09AC4B447C54FE6F9F6DFEEF586)), L_7, NULL); InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_9 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_9); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_9, L_8, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A_RuntimeMethod_var))); } IL_003c: { String_t* L_10 = ___1_time; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; L_11 = TimeZoneInfo_ParseTimeOfDay_m1F13382A2B856A4ABF19832D6C8F337990E0215C(L_10, NULL); int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_15; L_15 = TransitionTime_CreateFloatingDateRule_mD28E1BEBB933C47A55017C515C8275ACFA56EB24(L_11, L_12, L_13, L_14, NULL); return L_15; } IL_004b: { String_t* L_16 = ___0_date; NullCheck(L_16); Il2CppChar L_17; L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_16, 0, NULL); if ((((int32_t)L_17) == ((int32_t)((int32_t)74)))) { goto IL_0061; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_18 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_18); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD539FFE7E4977C91A92DB478C9022FA2F1EEA698)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m039D32F130DEAFB0AB0B9668FCF18A92484CB14A_RuntimeMethod_var))); } IL_0061: { String_t* L_19 = ___0_date; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParseJulianDay_mEEA1FBA86FA26806049A4C232A6B243E08EBC697(L_19, (&V_4), (&V_5), NULL); String_t* L_20 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_21; L_21 = TimeZoneInfo_ParseTimeOfDay_m1F13382A2B856A4ABF19832D6C8F337990E0215C(L_20, NULL); int32_t L_22 = V_4; int32_t L_23 = V_5; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_24; L_24 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_21, L_22, L_23, NULL); return L_24; } } // System.Void System.TimeZoneInfo::TZif_ParseJulianDay(System.String,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseJulianDay_mEEA1FBA86FA26806049A4C232A6B243E08EBC697 (String_t* ___0_date, int32_t* ___1_month, int32_t* ___2_day, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_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; { int32_t* L_0 = ___1_month; int32_t* L_1 = ___2_day; int32_t L_2 = 0; V_4 = L_2; *((int32_t*)L_1) = (int32_t)L_2; int32_t L_3 = V_4; *((int32_t*)L_0) = (int32_t)L_3; V_0 = 1; int32_t L_4 = V_0; String_t* L_5 = ___0_date; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if ((((int32_t)L_4) >= ((int32_t)L_6))) { goto IL_0023; } } { String_t* L_7 = ___0_date; int32_t L_8 = V_0; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL); if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, ((int32_t)48)))) > ((uint32_t)((int32_t)9))))) { goto IL_002e; } } IL_0023: { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_10 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_10); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16C4C93B479961DF2612CEC287054707A7609904)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_ParseJulianDay_mEEA1FBA86FA26806049A4C232A6B243E08EBC697_RuntimeMethod_var))); } IL_002e: { V_1 = 0; } IL_0030: { int32_t L_11 = V_1; String_t* L_12 = ___0_date; int32_t L_13 = V_0; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL); V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)10))), ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, ((int32_t)48))))); int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1)); int32_t L_16 = V_0; String_t* L_17 = ___0_date; NullCheck(L_17); int32_t L_18; L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL); if ((((int32_t)L_16) >= ((int32_t)L_18))) { goto IL_005b; } } { String_t* L_19 = ___0_date; int32_t L_20 = V_0; NullCheck(L_19); Il2CppChar L_21; L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_19, L_20, NULL); if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, ((int32_t)48)))) > ((uint32_t)((int32_t)9))))) { goto IL_0030; } } IL_005b: { il2cpp_codegen_runtime_class_init_inline(GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = ((GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_StaticFields*)il2cpp_codegen_static_fields_for(GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var))->___DaysToMonth365_0; V_2 = L_22; int32_t L_23 = V_1; if (!L_23) { goto IL_006e; } } { int32_t L_24 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = V_2; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = V_2; NullCheck(L_26); NullCheck(L_25); int32_t L_27 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_26)->max_length)), 1)); int32_t L_28 = (L_25)->GetAt(static_cast(L_27)); if ((((int32_t)L_24) <= ((int32_t)L_28))) { goto IL_0079; } } IL_006e: { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_29 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_29); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16C4C93B479961DF2612CEC287054707A7609904)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_ParseJulianDay_mEEA1FBA86FA26806049A4C232A6B243E08EBC697_RuntimeMethod_var))); } IL_0079: { V_3 = 1; goto IL_0081; } IL_007d: { int32_t L_30 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_30, 1)); } IL_0081: { int32_t L_31 = V_3; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_32 = V_2; NullCheck(L_32); if ((((int32_t)L_31) >= ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))))) { goto IL_008d; } } { int32_t L_33 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); int32_t L_36 = L_35; int32_t L_37 = (L_34)->GetAt(static_cast(L_36)); if ((((int32_t)L_33) > ((int32_t)L_37))) { goto IL_007d; } } IL_008d: { int32_t* L_38 = ___1_month; int32_t L_39 = V_3; *((int32_t*)L_38) = (int32_t)L_39; int32_t* L_40 = ___2_day; int32_t L_41 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_42 = V_2; int32_t L_43 = V_3; NullCheck(L_42); int32_t L_44 = ((int32_t)il2cpp_codegen_subtract(L_43, 1)); int32_t L_45 = (L_42)->GetAt(static_cast(L_44)); *((int32_t*)L_40) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_41, L_45)); return; } } // System.Boolean System.TimeZoneInfo::TZif_ParseMDateRule(System.String,System.Int32&,System.Int32&,System.DayOfWeek&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParseMDateRule_m36506D047F326D1F9DBDB9BFEB1C70EE4832A832 (String_t* ___0_dateRule, int32_t* ___1_month, int32_t* ___2_week, int32_t* ___3_dayOfWeek, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { String_t* L_0 = ___0_dateRule; NullCheck(L_0); Il2CppChar L_1; L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)77))))) { goto IL_0067; } } { String_t* L_2 = ___0_dateRule; NullCheck(L_2); int32_t L_3; L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_2, ((int32_t)46), NULL); V_0 = L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_0067; } } { String_t* L_5 = ___0_dateRule; int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7; L_7 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_5, ((int32_t)46), ((int32_t)il2cpp_codegen_add(L_6, 1)), NULL); V_1 = L_7; int32_t L_8 = V_1; if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_0067; } } { String_t* L_9 = ___0_dateRule; int32_t L_10 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_11; L_11 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_9, 1, ((int32_t)il2cpp_codegen_subtract(L_10, 1)), NULL); int32_t* L_12 = ___1_month; bool L_13; L_13 = Int32_TryParse_m8550F4C901F1DD82515EA088A46E6B3400B26A68(L_11, L_12, NULL); if (!L_13) { goto IL_0067; } } { String_t* L_14 = ___0_dateRule; int32_t L_15 = V_0; int32_t L_16 = V_1; int32_t L_17 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_18; L_18 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_14, ((int32_t)il2cpp_codegen_add(L_15, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_16, L_17)), 1)), NULL); int32_t* L_19 = ___2_week; bool L_20; L_20 = Int32_TryParse_m8550F4C901F1DD82515EA088A46E6B3400B26A68(L_18, L_19, NULL); if (!L_20) { goto IL_0067; } } { String_t* L_21 = ___0_dateRule; int32_t L_22 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_23; L_23 = MemoryExtensions_AsSpan_mCDA6B03F6605094C599D7865D23DFB6A04DEE3B6_inline(L_21, ((int32_t)il2cpp_codegen_add(L_22, 1)), NULL); bool L_24; L_24 = Int32_TryParse_m8550F4C901F1DD82515EA088A46E6B3400B26A68(L_23, (&V_2), NULL); if (!L_24) { goto IL_0067; } } { int32_t* L_25 = ___3_dayOfWeek; int32_t L_26 = V_2; *((int32_t*)L_25) = (int32_t)L_26; return (bool)1; } IL_0067: { int32_t* L_27 = ___1_month; *((int32_t*)L_27) = (int32_t)0; int32_t* L_28 = ___2_week; *((int32_t*)L_28) = (int32_t)0; int32_t* L_29 = ___3_dayOfWeek; *((int32_t*)L_29) = (int32_t)0; return (bool)0; } } // System.Boolean System.TimeZoneInfo::TZif_ParsePosixFormat(System.String,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParsePosixFormat_m3BC659F9A49FF44432E402B21404EE4DCEF91914 (String_t* ___0_posixFormat, String_t** ___1_standardName, String_t** ___2_standardOffset, String_t** ___3_daylightSavingsName, String_t** ___4_daylightSavingsOffset, String_t** ___5_start, String_t** ___6_startTime, String_t** ___7_end, String_t** ___8_endTime, 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; } int32_t V_0 = 0; { String_t** L_0 = ___1_standardName; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___2_standardOffset; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); String_t** L_2 = ___3_daylightSavingsName; *((RuntimeObject**)L_2) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL); String_t** L_3 = ___4_daylightSavingsOffset; *((RuntimeObject**)L_3) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)NULL); String_t** L_4 = ___5_start; *((RuntimeObject**)L_4) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)NULL); String_t** L_5 = ___6_startTime; *((RuntimeObject**)L_5) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)NULL); String_t** L_6 = ___7_end; *((RuntimeObject**)L_6) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)NULL); String_t** L_7 = ___8_endTime; *((RuntimeObject**)L_7) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL); V_0 = 0; String_t** L_8 = ___1_standardName; String_t* L_9 = ___0_posixFormat; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_10; L_10 = TimeZoneInfo_TZif_ParsePosixName_m2DA504DB22B1F27D155CAFF670EF88963126C4AE(L_9, (&V_0), NULL); *((RuntimeObject**)L_8) = (RuntimeObject*)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_10); String_t** L_11 = ___2_standardOffset; String_t* L_12 = ___0_posixFormat; String_t* L_13; L_13 = TimeZoneInfo_TZif_ParsePosixOffset_mB4DBF456E3386E266967C8086CE2509FB46D557F(L_12, (&V_0), NULL); *((RuntimeObject**)L_11) = (RuntimeObject*)L_13; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_11, (void*)(RuntimeObject*)L_13); String_t** L_14 = ___3_daylightSavingsName; String_t* L_15 = ___0_posixFormat; String_t* L_16; L_16 = TimeZoneInfo_TZif_ParsePosixName_m2DA504DB22B1F27D155CAFF670EF88963126C4AE(L_15, (&V_0), NULL); *((RuntimeObject**)L_14) = (RuntimeObject*)L_16; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_16); String_t** L_17 = ___3_daylightSavingsName; String_t* L_18 = *((String_t**)L_17); bool L_19; L_19 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_18, NULL); if (L_19) { goto IL_0099; } } { String_t** L_20 = ___4_daylightSavingsOffset; String_t* L_21 = ___0_posixFormat; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_22; L_22 = TimeZoneInfo_TZif_ParsePosixOffset_mB4DBF456E3386E266967C8086CE2509FB46D557F(L_21, (&V_0), NULL); *((RuntimeObject**)L_20) = (RuntimeObject*)L_22; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_22); int32_t L_23 = V_0; String_t* L_24 = ___0_posixFormat; NullCheck(L_24); int32_t L_25; L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL); if ((((int32_t)L_23) >= ((int32_t)L_25))) { goto IL_0099; } } { String_t* L_26 = ___0_posixFormat; int32_t L_27 = V_0; NullCheck(L_26); Il2CppChar L_28; L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_26, L_27, NULL); if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)44))))) { goto IL_0099; } } { int32_t L_29 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_29, 1)); String_t* L_30 = ___0_posixFormat; String_t** L_31 = ___5_start; String_t** L_32 = ___6_startTime; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParsePosixDateTime_mD6602DC6D53A37CDD770776A65E8789EA2916BB8(L_30, (&V_0), L_31, L_32, NULL); int32_t L_33 = V_0; String_t* L_34 = ___0_posixFormat; 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_0099; } } { String_t* L_36 = ___0_posixFormat; int32_t L_37 = V_0; NullCheck(L_36); Il2CppChar L_38; L_38 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_36, L_37, NULL); if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)44))))) { goto IL_0099; } } { int32_t L_39 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_39, 1)); String_t* L_40 = ___0_posixFormat; String_t** L_41 = ___7_end; String_t** L_42 = ___8_endTime; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParsePosixDateTime_mD6602DC6D53A37CDD770776A65E8789EA2916BB8(L_40, (&V_0), L_41, L_42, NULL); } IL_0099: { String_t** L_43 = ___1_standardName; String_t* L_44 = *((String_t**)L_43); bool L_45; L_45 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_44, NULL); if (L_45) { goto IL_00ad; } } { String_t** L_46 = ___2_standardOffset; String_t* L_47 = *((String_t**)L_46); bool L_48; L_48 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_47, NULL); return (bool)((((int32_t)L_48) == ((int32_t)0))? 1 : 0); } IL_00ad: { return (bool)0; } } // System.String System.TimeZoneInfo::TZif_ParsePosixName(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixName_m2DA504DB22B1F27D155CAFF670EF88963126C4AE (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B6_0 = NULL; int32_t* G_B6_1 = NULL; String_t* G_B6_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B5_0 = NULL; int32_t* G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B9_0 = NULL; String_t* G_B7_0 = NULL; String_t* G_B8_0 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B12_0 = NULL; int32_t* G_B12_1 = NULL; String_t* G_B12_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B11_0 = NULL; int32_t* G_B11_1 = NULL; String_t* G_B11_2 = NULL; { int32_t* L_0 = ___1_index; int32_t L_1 = *((int32_t*)L_0); String_t* L_2 = ___0_posixFormat; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_1) >= ((int32_t)L_3))) { goto IL_0018; } } { String_t* L_4 = ___0_posixFormat; int32_t* L_5 = ___1_index; int32_t L_6 = *((int32_t*)L_5); NullCheck(L_4); Il2CppChar L_7; L_7 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_6, NULL); G_B3_0 = ((((int32_t)L_7) == ((int32_t)((int32_t)60)))? 1 : 0); goto IL_0019; } IL_0018: { G_B3_0 = 0; } IL_0019: { if (!G_B3_0) { goto IL_0064; } } { int32_t* L_8 = ___1_index; int32_t* L_9 = ___1_index; int32_t L_10 = *((int32_t*)L_9); *((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add(L_10, 1)); String_t* L_11 = ___0_posixFormat; int32_t* L_12 = ___1_index; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_13 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_1_1; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_14 = L_13; G_B5_0 = L_14; G_B5_1 = L_12; G_B5_2 = L_11; if (L_14) { G_B6_0 = L_14; G_B6_1 = L_12; G_B6_2 = L_11; goto IL_0042; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_15 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_16 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_16); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_16, L_15, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_17 = L_16; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_1_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_1_1), (void*)L_17); G_B6_0 = L_17; G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; } IL_0042: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_18; L_18 = TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5(G_B6_2, G_B6_1, G_B6_0, NULL); int32_t* L_19 = ___1_index; int32_t L_20 = *((int32_t*)L_19); String_t* L_21 = ___0_posixFormat; NullCheck(L_21); int32_t L_22; L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL); G_B7_0 = L_18; if ((((int32_t)L_20) >= ((int32_t)L_22))) { G_B9_0 = L_18; goto IL_0063; } } { String_t* L_23 = ___0_posixFormat; int32_t* L_24 = ___1_index; int32_t L_25 = *((int32_t*)L_24); NullCheck(L_23); Il2CppChar L_26; L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, L_25, NULL); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)62))))) { G_B9_0 = G_B7_0; goto IL_0063; } } { int32_t* L_27 = ___1_index; int32_t* L_28 = ___1_index; int32_t L_29 = *((int32_t*)L_28); *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add(L_29, 1)); G_B9_0 = G_B8_0; } IL_0063: { return G_B9_0; } IL_0064: { String_t* L_30 = ___0_posixFormat; int32_t* L_31 = ___1_index; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_32 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_0_2; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_33 = L_32; G_B11_0 = L_33; G_B11_1 = L_31; G_B11_2 = L_30; if (L_33) { G_B12_0 = L_33; G_B12_1 = L_31; G_B12_2 = L_30; goto IL_0085; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_34 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_35 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_35); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_35, L_34, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_36 = L_35; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_0_2 = L_36; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_0_2), (void*)L_36); G_B12_0 = L_36; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_0085: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_37; L_37 = TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5(G_B12_2, G_B12_1, G_B12_0, NULL); return L_37; } } // System.String System.TimeZoneInfo::TZif_ParsePosixOffset(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixOffset_mB4DBF456E3386E266967C8086CE2509FB46D557F (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B2_0 = NULL; int32_t* G_B2_1 = NULL; String_t* G_B2_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B1_0 = NULL; int32_t* G_B1_1 = NULL; String_t* G_B1_2 = NULL; { String_t* L_0 = ___0_posixFormat; int32_t* L_1 = ___1_index; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_2 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__35_0_3; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_3 = L_2; G_B1_0 = L_3; G_B1_1 = L_1; G_B1_2 = L_0; if (L_3) { G_B2_0 = L_3; G_B2_1 = L_1; G_B2_2 = L_0; goto IL_0021; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_4 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_5 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_5); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = L_5; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__35_0_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__35_0_3), (void*)L_6); G_B2_0 = L_6; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5(G_B2_2, G_B2_1, G_B2_0, NULL); return L_7; } } // System.Void System.TimeZoneInfo::TZif_ParsePosixDateTime(System.String,System.Int32&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParsePosixDateTime_mD6602DC6D53A37CDD770776A65E8789EA2916BB8 (String_t* ___0_posixFormat, int32_t* ___1_index, String_t** ___2_date, String_t** ___3_time, 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; } { String_t** L_0 = ___3_time; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___2_date; String_t* L_2 = ___0_posixFormat; int32_t* L_3 = ___1_index; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_4; L_4 = TimeZoneInfo_TZif_ParsePosixDate_m34BDBEE3008BC7B2D55C6B26FADB5B1BC92574A3(L_2, L_3, NULL); *((RuntimeObject**)L_1) = (RuntimeObject*)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)L_4); int32_t* L_5 = ___1_index; int32_t L_6 = *((int32_t*)L_5); String_t* L_7 = ___0_posixFormat; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); if ((((int32_t)L_6) >= ((int32_t)L_8))) { goto IL_0031; } } { String_t* L_9 = ___0_posixFormat; int32_t* L_10 = ___1_index; int32_t L_11 = *((int32_t*)L_10); NullCheck(L_9); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_9, L_11, NULL); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)47))))) { goto IL_0031; } } { int32_t* L_13 = ___1_index; int32_t* L_14 = ___1_index; int32_t L_15 = *((int32_t*)L_14); *((int32_t*)L_13) = (int32_t)((int32_t)il2cpp_codegen_add(L_15, 1)); String_t** L_16 = ___3_time; String_t* L_17 = ___0_posixFormat; int32_t* L_18 = ___1_index; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_19; L_19 = TimeZoneInfo_TZif_ParsePosixTime_m66A6243E6A91C09DAFFC9851F4552B1AB310DB7C(L_17, L_18, NULL); *((RuntimeObject**)L_16) = (RuntimeObject*)L_19; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_16, (void*)(RuntimeObject*)L_19); } IL_0031: { return; } } // System.String System.TimeZoneInfo::TZif_ParsePosixDate(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixDate_m34BDBEE3008BC7B2D55C6B26FADB5B1BC92574A3 (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B2_0 = NULL; int32_t* G_B2_1 = NULL; String_t* G_B2_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B1_0 = NULL; int32_t* G_B1_1 = NULL; String_t* G_B1_2 = NULL; { String_t* L_0 = ___0_posixFormat; int32_t* L_1 = ___1_index; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_2 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__37_0_4; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_3 = L_2; G_B1_0 = L_3; G_B1_1 = L_1; G_B1_2 = L_0; if (L_3) { G_B2_0 = L_3; G_B2_1 = L_1; G_B2_2 = L_0; goto IL_0021; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_4 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_5 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_5); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = L_5; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__37_0_4 = L_6; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__37_0_4), (void*)L_6); G_B2_0 = L_6; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5(G_B2_2, G_B2_1, G_B2_0, NULL); return L_7; } } // System.String System.TimeZoneInfo::TZif_ParsePosixTime(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixTime_m66A6243E6A91C09DAFFC9851F4552B1AB310DB7C (String_t* ___0_posixFormat, int32_t* ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B2_0 = NULL; int32_t* G_B2_1 = NULL; String_t* G_B2_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B1_0 = NULL; int32_t* G_B1_1 = NULL; String_t* G_B1_2 = NULL; { String_t* L_0 = ___0_posixFormat; int32_t* L_1 = ___1_index; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_2 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_5; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_3 = L_2; G_B1_0 = L_3; G_B1_1 = L_1; G_B1_2 = L_0; if (L_3) { G_B2_0 = L_3; G_B2_1 = L_1; G_B2_2 = L_0; goto IL_0021; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_4 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_5 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_5); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = L_5; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_5 = L_6; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_5), (void*)L_6); G_B2_0 = L_6; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5(G_B2_2, G_B2_1, G_B2_0, NULL); return L_7; } } // System.String System.TimeZoneInfo::TZif_ParsePosixString(System.String,System.Int32&,System.Func`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixString_m16915D4148D6A4E6FB07BB0150FD73201351C4E5 (String_t* ___0_posixFormat, int32_t* ___1_index, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___2_breakCondition, const RuntimeMethod* method) { int32_t V_0 = 0; Il2CppChar V_1 = 0x0; { int32_t* L_0 = ___1_index; int32_t L_1 = *((int32_t*)L_0); V_0 = L_1; goto IL_001d; } IL_0005: { String_t* L_2 = ___0_posixFormat; int32_t* L_3 = ___1_index; int32_t L_4 = *((int32_t*)L_3); NullCheck(L_2); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_4, NULL); V_1 = L_5; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = ___2_breakCondition; Il2CppChar L_7 = V_1; NullCheck(L_6); bool L_8; L_8 = Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_inline(L_6, L_7, NULL); if (L_8) { goto IL_0027; } } { int32_t* L_9 = ___1_index; int32_t* L_10 = ___1_index; int32_t L_11 = *((int32_t*)L_10); *((int32_t*)L_9) = (int32_t)((int32_t)il2cpp_codegen_add(L_11, 1)); } IL_001d: { int32_t* L_12 = ___1_index; int32_t L_13 = *((int32_t*)L_12); String_t* L_14 = ___0_posixFormat; 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_0005; } } IL_0027: { String_t* L_16 = ___0_posixFormat; int32_t L_17 = V_0; int32_t* L_18 = ___1_index; int32_t L_19 = *((int32_t*)L_18); int32_t L_20 = V_0; NullCheck(L_16); String_t* L_21; L_21 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_16, L_17, ((int32_t)il2cpp_codegen_subtract(L_19, L_20)), NULL); return L_21; } } // System.String System.TimeZoneInfo::TZif_GetZoneAbbreviation(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_GetZoneAbbreviation_mE36A95F754C060C08F283870D696E5743130B61C (String_t* ___0_zoneAbbreviations, int32_t ___1_index, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ___0_zoneAbbreviations; int32_t L_1 = ___1_index; NullCheck(L_0); int32_t L_2; L_2 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_0, 0, L_1, NULL); V_0 = L_2; int32_t L_3 = V_0; if ((((int32_t)L_3) > ((int32_t)0))) { goto IL_0015; } } { String_t* L_4 = ___0_zoneAbbreviations; int32_t L_5 = ___1_index; NullCheck(L_4); String_t* L_6; L_6 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_4, L_5, NULL); return L_6; } IL_0015: { String_t* L_7 = ___0_zoneAbbreviations; int32_t L_8 = ___1_index; int32_t L_9 = V_0; int32_t L_10 = ___1_index; NullCheck(L_7); String_t* L_11; L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL); return L_11; } } // System.Int32 System.TimeZoneInfo::TZif_ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) { uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; int32_t L_1 = ___1_startIndex; NullCheck(L_0); V_1 = ((L_0)->GetAddressAt(static_cast(L_1))); uint8_t* L_2 = V_1; V_0 = (uint8_t*)((uintptr_t)L_2); uint8_t* L_3 = V_0; int32_t L_4 = *((uint8_t*)L_3); uint8_t* L_5 = V_0; int32_t L_6 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 1))); uint8_t* L_7 = V_0; int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 2))); uint8_t* L_9 = V_0; int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, 3))); return ((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_4<<((int32_t)24)))|((int32_t)(L_6<<((int32_t)16)))))|((int32_t)(L_8<<8))))|L_10)); } } // System.Int64 System.TimeZoneInfo::TZif_ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToInt64_m381C7B020624BDAE9053360C6D87FD3B8A8D889B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) { uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; int32_t V_2 = 0; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; int32_t L_1 = ___1_startIndex; NullCheck(L_0); V_1 = ((L_0)->GetAddressAt(static_cast(L_1))); uint8_t* L_2 = V_1; V_0 = (uint8_t*)((uintptr_t)L_2); uint8_t* L_3 = V_0; int32_t L_4 = *((uint8_t*)L_3); uint8_t* L_5 = V_0; int32_t L_6 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 1))); uint8_t* L_7 = V_0; int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 2))); uint8_t* L_9 = V_0; int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, 3))); V_2 = ((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_4<<((int32_t)24)))|((int32_t)(L_6<<((int32_t)16)))))|((int32_t)(L_8<<8))))|L_10)); uint8_t* L_11 = V_0; int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 4))); uint8_t* L_13 = V_0; int32_t L_14 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, 5))); uint8_t* L_15 = V_0; int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, 6))); uint8_t* L_17 = V_0; int32_t L_18 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, 7))); int32_t L_19 = V_2; return ((int64_t)(((int64_t)(uint64_t)((uint32_t)((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_12<<((int32_t)24)))|((int32_t)(L_14<<((int32_t)16)))))|((int32_t)(L_16<<8))))|L_18))))|((int64_t)(((int64_t)L_19)<<((int32_t)32))))); } } // System.Int64 System.TimeZoneInfo::TZif_ToUnixTime(System.Byte[],System.Int32,System.TimeZoneInfo/TZVersion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToUnixTime_m74FF18291DDC0E41F6139FA0B088A911F61BB23A (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, uint8_t ___2_version, 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; } { uint8_t L_0 = ___2_version; if (L_0) { goto IL_000c; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_value; int32_t L_2 = ___1_startIndex; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_3; L_3 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_1, L_2, NULL); return ((int64_t)L_3); } IL_000c: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_value; int32_t L_5 = ___1_startIndex; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int64_t L_6; L_6 = TimeZoneInfo_TZif_ToInt64_m381C7B020624BDAE9053360C6D87FD3B8A8D889B(L_4, L_5, NULL); return L_6; } } // System.DateTime System.TimeZoneInfo::TZif_UnixTimeToDateTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TZif_UnixTimeToDateTime_mB0166067C1725CCFDEDBBA7553A62E493672930D (int64_t ___0_unixTime, 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*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_0; memset((&V_0), 0, sizeof(V_0)); { int64_t L_0 = ___0_unixTime; if ((((int64_t)L_0) < ((int64_t)((int64_t)-62135596800LL)))) { goto IL_002d; } } { int64_t L_1 = ___0_unixTime; if ((((int64_t)L_1) > ((int64_t)((int64_t)253402300799LL)))) { goto IL_0027; } } { int64_t L_2 = ___0_unixTime; il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var); DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_3; L_3 = DateTimeOffset_FromUnixTimeSeconds_mE1FA5E04CCCE8A0E8903C9DACC64526C721C0A47(L_2, NULL); V_0 = L_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&V_0), NULL); return L_4; } IL_0027: { 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))->___MaxValue_33; return L_5; } IL_002d: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_6; } } // System.Void System.TimeZoneInfo::TZif_ParseRaw(System.Byte[],System.TimeZoneInfo/TZifHead&,System.DateTime[]&,System.Byte[]&,System.TimeZoneInfo/TZifType[]&,System.String&,System.Boolean[]&,System.Boolean[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseRaw_m5BD8860EAEEBD32114790C756159AB486201E9CC (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* ___1_t, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** ___2_dts, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___3_typeOfLocalTime, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** ___4_transitionType, String_t** ___5_zoneAbbreviations, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___6_StandardTime, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___7_GmtTime, String_t** ___8_futureTransitionsPosixFormat, 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*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_2 = NULL; int32_t V_3 = 0; int64_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** L_0 = ___2_dts; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_1 = ___3_typeOfLocalTime; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** L_2 = ___4_transitionType; *((RuntimeObject**)L_2) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL); String_t** L_3 = ___5_zoneAbbreviations; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; *((RuntimeObject**)L_3) = (RuntimeObject*)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)L_4); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_5 = ___6_StandardTime; *((RuntimeObject**)L_5) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)NULL); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_6 = ___7_GmtTime; *((RuntimeObject**)L_6) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)NULL); String_t** L_7 = ___8_futureTransitionsPosixFormat; *((RuntimeObject**)L_7) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL); V_0 = 0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_8 = ___1_t; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___0_data; int32_t L_10 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 L_11; memset((&L_11), 0, sizeof(L_11)); TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A((&L_11), L_9, L_10, /*hidden argument*/NULL); *(TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852*)L_8 = L_11; int32_t L_12 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_12, ((int32_t)44))); V_1 = 4; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_13 = ___1_t; uint8_t L_14 = L_13->___Version_1; if (!L_14) { goto IL_0095; } } { int32_t L_15 = V_0; int32_t L_16 = V_1; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_17 = ___1_t; uint32_t L_18 = L_17->___TimeCount_5; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_19 = ___1_t; uint32_t L_20 = L_19->___TimeCount_5; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_21 = ___1_t; uint32_t L_22 = L_21->___TypeCount_6; int32_t L_23 = V_1; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_24 = ___1_t; uint32_t L_25 = L_24->___LeapCount_4; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_26 = ___1_t; uint32_t L_27 = L_26->___IsStdCount_3; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_28 = ___1_t; uint32_t L_29 = L_28->___IsGmtCount_2; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_30 = ___1_t; uint32_t L_31 = L_30->___CharCount_7; V_0 = ((int32_t)il2cpp_codegen_add(L_15, ((int32_t)((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply(((int64_t)L_16), ((int64_t)(uint64_t)L_18))), ((int64_t)(uint64_t)L_20))), ((int64_t)(uint64_t)((uint32_t)((int32_t)il2cpp_codegen_multiply(6, (int32_t)L_22)))))), ((int64_t)il2cpp_codegen_multiply(((int64_t)((int32_t)il2cpp_codegen_add(L_23, 4))), ((int64_t)(uint64_t)L_25))))), ((int64_t)(uint64_t)L_27))), ((int64_t)(uint64_t)L_29))), ((int64_t)(uint64_t)L_31)))))); TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_32 = ___1_t; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ___0_data; int32_t L_34 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 L_35; memset((&L_35), 0, sizeof(L_35)); TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A((&L_35), L_33, L_34, /*hidden argument*/NULL); *(TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852*)L_32 = L_35; int32_t L_36 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_36, ((int32_t)44))); V_1 = 8; } IL_0095: { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** L_37 = ___2_dts; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_38 = ___1_t; uint32_t L_39 = L_38->___TimeCount_5; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_40 = (DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1*)(DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1*)SZArrayNew(DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1_il2cpp_TypeInfo_var, (uint32_t)L_39); *((RuntimeObject**)L_37) = (RuntimeObject*)L_40; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_37, (void*)(RuntimeObject*)L_40); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_41 = ___3_typeOfLocalTime; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_42 = ___1_t; uint32_t L_43 = L_42->___TimeCount_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_44 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_43); *((RuntimeObject**)L_41) = (RuntimeObject*)L_44; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_41, (void*)(RuntimeObject*)L_44); TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** L_45 = ___4_transitionType; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_46 = ___1_t; uint32_t L_47 = L_46->___TypeCount_6; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_48 = (TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98*)(TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98*)SZArrayNew(TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98_il2cpp_TypeInfo_var, (uint32_t)L_47); *((RuntimeObject**)L_45) = (RuntimeObject*)L_48; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_45, (void*)(RuntimeObject*)L_48); String_t** L_49 = ___5_zoneAbbreviations; String_t* L_50 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; *((RuntimeObject**)L_49) = (RuntimeObject*)L_50; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_49, (void*)(RuntimeObject*)L_50); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_51 = ___6_StandardTime; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_52 = ___1_t; uint32_t L_53 = L_52->___TypeCount_6; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_54 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)L_53); *((RuntimeObject**)L_51) = (RuntimeObject*)L_54; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_51, (void*)(RuntimeObject*)L_54); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_55 = ___7_GmtTime; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_56 = ___1_t; uint32_t L_57 = L_56->___TypeCount_6; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_58 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)L_57); *((RuntimeObject**)L_55) = (RuntimeObject*)L_58; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_55, (void*)(RuntimeObject*)L_58); V_3 = 0; goto IL_010b; } IL_00e5: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_59 = ___0_data; int32_t L_60 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_61 = ___1_t; uint8_t L_62 = L_61->___Version_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int64_t L_63; L_63 = TimeZoneInfo_TZif_ToUnixTime_m74FF18291DDC0E41F6139FA0B088A911F61BB23A(L_59, L_60, L_62, NULL); V_4 = L_63; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** L_64 = ___2_dts; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_65 = *((DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1**)L_64); int32_t L_66 = V_3; int64_t L_67 = V_4; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_68; L_68 = TimeZoneInfo_TZif_UnixTimeToDateTime_mB0166067C1725CCFDEDBBA7553A62E493672930D(L_67, NULL); NullCheck(L_65); (L_65)->SetAt(static_cast(L_66), (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D)L_68); int32_t L_69 = V_0; int32_t L_70 = V_1; V_0 = ((int32_t)il2cpp_codegen_add(L_69, L_70)); int32_t L_71 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_71, 1)); } IL_010b: { int32_t L_72 = V_3; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_73 = ___1_t; uint32_t L_74 = L_73->___TimeCount_5; if ((((int64_t)((int64_t)L_72)) < ((int64_t)((int64_t)(uint64_t)L_74)))) { goto IL_00e5; } } { V_5 = 0; goto IL_012d; } IL_011b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_75 = ___3_typeOfLocalTime; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_76 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_75); int32_t L_77 = V_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_78 = ___0_data; int32_t L_79 = V_0; NullCheck(L_78); int32_t L_80 = L_79; uint8_t L_81 = (L_78)->GetAt(static_cast(L_80)); NullCheck(L_76); (L_76)->SetAt(static_cast(L_77), (uint8_t)L_81); int32_t L_82 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_82, 1)); int32_t L_83 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_83, 1)); } IL_012d: { int32_t L_84 = V_5; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_85 = ___1_t; uint32_t L_86 = L_85->___TimeCount_5; if ((((int64_t)((int64_t)L_84)) < ((int64_t)((int64_t)(uint64_t)L_86)))) { goto IL_011b; } } { V_6 = 0; goto IL_0159; } IL_013e: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** L_87 = ___4_transitionType; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_88 = *((TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98**)L_87); int32_t L_89 = V_6; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_90 = ___0_data; int32_t L_91 = V_0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_92; memset((&L_92), 0, sizeof(L_92)); TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179((&L_92), L_90, L_91, /*hidden argument*/NULL); NullCheck(L_88); (L_88)->SetAt(static_cast(L_89), (TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4)L_92); int32_t L_93 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_93, 6)); int32_t L_94 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_94, 1)); } IL_0159: { int32_t L_95 = V_6; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_96 = ___1_t; uint32_t L_97 = L_96->___TypeCount_6; if ((((int64_t)((int64_t)L_95)) < ((int64_t)((int64_t)(uint64_t)L_97)))) { goto IL_013e; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_98; L_98 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL); V_2 = L_98; String_t** L_99 = ___5_zoneAbbreviations; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_100 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_101 = ___0_data; int32_t L_102 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_103 = ___1_t; uint32_t L_104 = L_103->___CharCount_7; NullCheck(L_100); String_t* L_105; L_105 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_100, L_101, L_102, L_104); *((RuntimeObject**)L_99) = (RuntimeObject*)L_105; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_99, (void*)(RuntimeObject*)L_105); int32_t L_106 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_107 = ___1_t; uint32_t L_108 = L_107->___CharCount_7; V_0 = ((int32_t)il2cpp_codegen_add(L_106, (int32_t)L_108)); int32_t L_109 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_110 = ___1_t; uint32_t L_111 = L_110->___LeapCount_4; int32_t L_112 = V_1; V_0 = ((int32_t)il2cpp_codegen_add(L_109, ((int32_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(uint64_t)L_111), ((int64_t)((int32_t)il2cpp_codegen_add(L_112, 4)))))))); V_7 = 0; goto IL_01b0; } IL_019a: { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_113 = ___6_StandardTime; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_114 = *((BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**)L_113); int32_t L_115 = V_7; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_116 = ___0_data; int32_t L_117 = V_0; int32_t L_118 = L_117; V_0 = ((int32_t)il2cpp_codegen_add(L_118, 1)); NullCheck(L_116); int32_t L_119 = L_118; uint8_t L_120 = (L_116)->GetAt(static_cast(L_119)); NullCheck(L_114); (L_114)->SetAt(static_cast(L_115), (bool)((!(((uint32_t)L_120) <= ((uint32_t)0)))? 1 : 0)); int32_t L_121 = V_7; V_7 = ((int32_t)il2cpp_codegen_add(L_121, 1)); } IL_01b0: { int32_t L_122 = V_7; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_123 = ___1_t; uint32_t L_124 = L_123->___IsStdCount_3; if ((((int64_t)((int64_t)L_122)) >= ((int64_t)((int64_t)(uint64_t)L_124)))) { goto IL_01ce; } } { int32_t L_125 = V_7; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_126 = ___1_t; uint32_t L_127 = L_126->___TypeCount_6; if ((((int64_t)((int64_t)L_125)) >= ((int64_t)((int64_t)(uint64_t)L_127)))) { goto IL_01ce; } } { int32_t L_128 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = ___0_data; NullCheck(L_129); if ((((int32_t)L_128) < ((int32_t)((int32_t)(((RuntimeArray*)L_129)->max_length))))) { goto IL_019a; } } IL_01ce: { V_8 = 0; goto IL_01e9; } IL_01d3: { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_130 = ___7_GmtTime; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_131 = *((BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**)L_130); int32_t L_132 = V_8; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_133 = ___0_data; int32_t L_134 = V_0; int32_t L_135 = L_134; V_0 = ((int32_t)il2cpp_codegen_add(L_135, 1)); NullCheck(L_133); int32_t L_136 = L_135; uint8_t L_137 = (L_133)->GetAt(static_cast(L_136)); NullCheck(L_131); (L_131)->SetAt(static_cast(L_132), (bool)((!(((uint32_t)L_137) <= ((uint32_t)0)))? 1 : 0)); int32_t L_138 = V_8; V_8 = ((int32_t)il2cpp_codegen_add(L_138, 1)); } IL_01e9: { int32_t L_139 = V_8; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_140 = ___1_t; uint32_t L_141 = L_140->___IsGmtCount_2; if ((((int64_t)((int64_t)L_139)) >= ((int64_t)((int64_t)(uint64_t)L_141)))) { goto IL_0207; } } { int32_t L_142 = V_8; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_143 = ___1_t; uint32_t L_144 = L_143->___TypeCount_6; if ((((int64_t)((int64_t)L_142)) >= ((int64_t)((int64_t)(uint64_t)L_144)))) { goto IL_0207; } } { int32_t L_145 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_146 = ___0_data; NullCheck(L_146); if ((((int32_t)L_145) < ((int32_t)((int32_t)(((RuntimeArray*)L_146)->max_length))))) { goto IL_01d3; } } IL_0207: { TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_147 = ___1_t; uint8_t L_148 = L_147->___Version_1; if (!L_148) { goto IL_0237; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_149 = ___0_data; int32_t L_150 = V_0; int32_t L_151 = L_150; V_0 = ((int32_t)il2cpp_codegen_add(L_151, 1)); NullCheck(L_149); int32_t L_152 = L_151; uint8_t L_153 = (L_149)->GetAt(static_cast(L_152)); if ((!(((uint32_t)L_153) == ((uint32_t)((int32_t)10))))) { goto IL_0237; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_154 = ___0_data; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_155 = ___0_data; NullCheck(L_155); NullCheck(L_154); int32_t L_156 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_155)->max_length)), 1)); uint8_t L_157 = (L_154)->GetAt(static_cast(L_156)); if ((!(((uint32_t)L_157) == ((uint32_t)((int32_t)10))))) { goto IL_0237; } } { String_t** L_158 = ___8_futureTransitionsPosixFormat; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_159 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_160 = ___0_data; int32_t L_161 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_162 = ___0_data; NullCheck(L_162); int32_t L_163 = V_0; NullCheck(L_159); String_t* L_164; L_164 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_159, L_160, L_161, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_162)->max_length)), L_163)), 1))); *((RuntimeObject**)L_158) = (RuntimeObject*)L_164; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_158, (void*)(RuntimeObject*)L_164); } IL_0237: { return; } } // System.String System.TimeZoneInfo::get_DisplayName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m11B9CDA1B2BCE55E313D7D06D43DF635C7C87A79 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->____displayName_1; String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.String System.TimeZoneInfo::get_StandardName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_StandardName_mE9A075A18964E355D7AFF3A85C3C8EEDBB464A49 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->____standardDisplayName_2; String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.String System.TimeZoneInfo::get_DaylightName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DaylightName_m02E7E08179ACFB3544A0AE8E9C8B0040E8422764 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->____daylightDisplayName_3; String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.TimeSpan System.TimeZoneInfo::get_BaseUtcOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffset_4; return L_0; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetPreviousAdjustmentRule(System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___1_ruleIndex, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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); s_Il2CppMethodInitialized = true; } AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_0 = NULL; int32_t V_1 = 0; { bool L_0; L_0 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___1_ruleIndex), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var); if (!L_0) { goto IL_0035; } } { int32_t L_1; L_1 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___1_ruleIndex), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); if ((((int32_t)0) >= ((int32_t)L_1))) { goto IL_0035; } } { int32_t L_2; L_2 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___1_ruleIndex), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_3 = __this->____adjustmentRules_6; NullCheck(L_3); if ((((int32_t)L_2) >= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0035; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_4 = __this->____adjustmentRules_6; int32_t L_5; L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___1_ruleIndex), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); NullCheck(L_4); int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(L_5, 1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = (L_4)->GetAt(static_cast(L_6)); return L_7; } IL_0035: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_8 = ___0_rule; V_0 = L_8; V_1 = 1; goto IL_0057; } IL_003b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = ___0_rule; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_10 = __this->____adjustmentRules_6; int32_t L_11 = V_1; NullCheck(L_10); int32_t L_12 = L_11; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_13 = (L_10)->GetAt(static_cast(L_12)); if ((!(((RuntimeObject*)(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)L_9) == ((RuntimeObject*)(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)L_13)))) { goto IL_0053; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_14 = __this->____adjustmentRules_6; int32_t L_15 = V_1; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_subtract(L_15, 1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_17 = (L_14)->GetAt(static_cast(L_16)); V_0 = L_17; goto IL_0062; } IL_0053: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1)); } IL_0057: { int32_t L_19 = V_1; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_20 = __this->____adjustmentRules_6; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))) { goto IL_003b; } } IL_0062: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_21 = V_0; return L_21; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, 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; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69(__this, L_0, 2, L_1, NULL); return L_2; } } // System.TimeSpan System.TimeZoneInfo::GetLocalUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, 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; } CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* V_0 = NULL; { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_0 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; V_0 = L_0; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = V_0; NullCheck(L_1); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2; L_2 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_1, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___0_dateTime; int32_t L_4 = ___1_flags; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_5 = V_0; NullCheck(L_2); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69(L_2, L_3, L_4, L_5, NULL); return L_6; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m0BDDBF392737305C4A4AA517DD3CB0DA40C7D375 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, 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; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime; int32_t L_1 = ___1_flags; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69(__this, L_0, L_1, L_2, NULL); return L_3; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___2_cachedData, 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; } { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_002d; } } { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = ___2_cachedData; NullCheck(L_1); int32_t L_2; L_2 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_1, __this, NULL); if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_0050; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___0_dateTime; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = ___2_cachedData; NullCheck(L_4); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5; L_5 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_4, NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; int32_t L_7 = ___1_flags; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = TimeZoneInfo_ConvertTime_m360B114D8CE229DBBC4BFFD7259C2D4160A666D4(L_3, L_5, L_6, L_7, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeZoneInfo_GetUtcOffsetFromUtc_m8B4B5000BCA5D3198D135352F31CADDD63F404E5(L_8, __this, NULL); return L_9; } IL_002d: { int32_t L_10; L_10 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL); if ((!(((uint32_t)L_10) == ((uint32_t)1)))) { goto IL_0050; } } { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_11 = ___2_cachedData; NullCheck(L_11); int32_t L_12; L_12 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_11, __this, NULL); if ((!(((uint32_t)L_12) == ((uint32_t)1)))) { goto IL_0048; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_13 = __this->____baseUtcOffset_4; return L_13; } IL_0048: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14 = ___0_dateTime; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = TimeZoneInfo_GetUtcOffsetFromUtc_m8B4B5000BCA5D3198D135352F31CADDD63F404E5(L_14, __this, NULL); return L_15; } IL_0050: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = ___0_dateTime; int32_t L_17 = ___1_flags; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18; L_18 = TimeZoneInfo_GetUtcOffset_mC4507388951E039D442BC10507424EC6D3D0C880(L_16, __this, L_17, NULL); return L_18; } } // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_m360B114D8CE229DBBC4BFFD7259C2D4160A666D4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_sourceTimeZone, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___2_destinationTimeZone, int32_t ___3_flags, 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; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ___1_sourceTimeZone; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___2_destinationTimeZone; int32_t L_3 = ___3_flags; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5; L_5 = TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_sourceTimeZone, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___2_destinationTimeZone, int32_t ___3_flags, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___4_cachedData, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_1; memset((&V_1), 0, sizeof(V_1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_2 = NULL; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; bool V_5 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); bool V_7 = false; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 V_8; memset((&V_8), 0, sizeof(V_8)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B15_0; memset((&G_B15_0), 0, sizeof(G_B15_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B14_0; memset((&G_B14_0), 0, sizeof(G_B14_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B16_0; memset((&G_B16_0), 0, sizeof(G_B16_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B16_1; memset((&G_B16_1), 0, sizeof(G_B16_1)); { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___1_sourceTimeZone; 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*)&_stringLiteral6B509C55C6A5F6BAE3FB3BB16126FD45B8B9B163)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C_RuntimeMethod_var))); } IL_000e: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___2_destinationTimeZone; if (L_2) { goto IL_001c; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14BA113F909A778600AFFC621877E1CDD109444A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C_RuntimeMethod_var))); } IL_001c: { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = ___4_cachedData; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = ___1_sourceTimeZone; NullCheck(L_4); int32_t L_6; L_6 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_4, L_5, NULL); V_0 = L_6; int32_t L_7 = ___3_flags; if (((int32_t)((int32_t)L_7&2))) { goto IL_004d; } } { int32_t L_8; L_8 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL); if (!L_8) { goto IL_004d; } } { int32_t L_9; L_9 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL); int32_t L_10 = V_0; if ((((int32_t)L_9) == ((int32_t)L_10))) { goto IL_004d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_11); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA17989F20B9C34D562A6D393FB4B7703C2FF6069)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B509C55C6A5F6BAE3FB3BB16126FD45B8B9B163)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C_RuntimeMethod_var))); } IL_004d: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = ___1_sourceTimeZone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = ___0_dateTime; NullCheck(L_12); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14; L_14 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_12, L_13, (&V_1), NULL); V_2 = L_14; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_15 = ___1_sourceTimeZone; NullCheck(L_15); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16; L_16 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_15, NULL); V_3 = L_16; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_17 = V_2; if (!L_17) { goto IL_00ce; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18 = V_3; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = V_2; NullCheck(L_19); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20; L_20 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_19, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21; L_21 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_18, L_20, NULL); V_3 = L_21; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = V_2; NullCheck(L_22); bool L_23; L_23 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_22, NULL); if (!L_23) { goto IL_00ce; } } { V_7 = (bool)0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_24 = ___1_sourceTimeZone; int32_t L_25; L_25 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___0_dateTime), NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_26 = V_2; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_27 = V_1; NullCheck(L_24); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_28; L_28 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_24, L_25, L_26, L_27, NULL); V_8 = L_28; int32_t L_29 = ___3_flags; if (((int32_t)((int32_t)L_29&2))) { goto IL_00aa; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ___0_dateTime; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_31 = V_2; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_32 = V_8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_33; L_33 = TimeZoneInfo_GetIsInvalidTime_m0A0AC529B12DFD095D006AE35DE084BF36C2DAAF(L_30, L_31, L_32, NULL); if (!L_33) { goto IL_00aa; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_34 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_34); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_34, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1C0C9FCD992D47F7F8139E8C6E8743A057F3D0A8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C_RuntimeMethod_var))); } IL_00aa: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35 = ___0_dateTime; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_36 = V_2; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_37 = V_8; int32_t L_38 = ___3_flags; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_39; L_39 = TimeZoneInfo_GetIsDaylightSavings_m985A11385C9178014051FD186B6CF32F16FD1162(L_35, L_36, L_37, L_38, NULL); V_7 = L_39; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_3; bool L_41 = V_7; G_B14_0 = L_40; if (L_41) { G_B15_0 = L_40; goto IL_00c2; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_42 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B16_0 = L_42; G_B16_1 = G_B14_0; goto IL_00c8; } IL_00c2: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_43 = V_2; NullCheck(L_43); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44; L_44 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_43, NULL); G_B16_0 = L_44; G_B16_1 = G_B15_0; } IL_00c8: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_45; L_45 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(G_B16_1, G_B16_0, NULL); V_3 = L_45; } IL_00ce: { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_46 = ___4_cachedData; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_47 = ___2_destinationTimeZone; NullCheck(L_46); int32_t L_48; L_48 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_46, L_47, NULL); V_4 = L_48; int32_t L_49; L_49 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL); if (!L_49) { goto IL_00eb; } } { int32_t L_50 = V_0; if (!L_50) { goto IL_00eb; } } { int32_t L_51 = V_0; int32_t L_52 = V_4; if ((!(((uint32_t)L_51) == ((uint32_t)L_52)))) { goto IL_00eb; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_53 = ___0_dateTime; return L_53; } IL_00eb: { int64_t L_54; L_54 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL); int64_t L_55; L_55 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_56 = ___2_destinationTimeZone; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_57; L_57 = TimeZoneInfo_ConvertUtcToTimeZone_m62356BCBE6F46091C1F72499E6688B8807D2F29F(((int64_t)il2cpp_codegen_subtract(L_54, L_55)), L_56, (&V_5), NULL); V_6 = L_57; int32_t L_58 = V_4; if ((!(((uint32_t)L_58) == ((uint32_t)2)))) { goto IL_0119; } } { int64_t L_59; L_59 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_6), NULL); bool L_60 = V_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_61; memset((&L_61), 0, sizeof(L_61)); DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2((&L_61), L_59, 2, L_60, /*hidden argument*/NULL); return L_61; } IL_0119: { int64_t L_62; L_62 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_6), NULL); int32_t L_63 = V_4; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_64; memset((&L_64), 0, sizeof(L_64)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_64), L_62, L_63, /*hidden argument*/NULL); return L_64; } } // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTimeToUtc_m08D8D56D51765E340034FFEC1CE950BC3FA20484 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, 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; } CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* V_0 = NULL; { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_000c; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___0_dateTime; return L_1; } IL_000c: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; V_0 = L_2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___0_dateTime; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = V_0; NullCheck(L_4); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5; L_5 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_4, NULL); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; int32_t L_7 = ___1_flags; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_8 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TimeZoneInfo_ConvertTime_m6DE0F42177AD135483537A57393A217602A1466C(L_3, L_5, L_6, L_7, L_8, NULL); return L_9; } } // System.Boolean System.TimeZoneInfo::Equals(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_m986E0F7F5DF0E9FFE14F6D56BCE8742DE1C5A873 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___0_other, const RuntimeMethod* method) { { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___0_other; if (!L_0) { goto IL_001f; } } { String_t* L_1 = __this->____id_0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___0_other; NullCheck(L_2); String_t* L_3 = L_2->____id_0; bool L_4; L_4 = String_Equals_mCC34895D0DB2AD440C9D8767032215BC86B5C48B(L_1, L_3, 5, NULL); if (!L_4) { goto IL_001f; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = ___0_other; bool L_6; L_6 = TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE(__this, L_5, NULL); return L_6; } IL_001f: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_mCF6AE9E7BB04906CD262DBC4646F3A9E49E7ACD1 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, RuntimeObject* ___0_obj, 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; } { RuntimeObject* L_0 = ___0_obj; bool L_1; L_1 = TimeZoneInfo_Equals_m986E0F7F5DF0E9FFE14F6D56BCE8742DE1C5A873(__this, ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)IsInstSealed((RuntimeObject*)L_0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var)), NULL); return L_1; } } // System.Int32 System.TimeZoneInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_GetHashCode_m6AF228B01A4A7B629BE38E5D69897A774B6C6957 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_0; L_0 = StringComparer_get_OrdinalIgnoreCase_m071AA1B1747345CCA058A3879EBDEBBA2EA4B169_inline(NULL); String_t* L_1 = __this->____id_0; NullCheck(L_0); int32_t L_2; L_2 = VirtualFuncInvoker1< int32_t, String_t* >::Invoke(12 /* System.Int32 System.StringComparer::GetHashCode(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.TimeZoneInfo::HasSameRules(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___0_other, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* V_1 = NULL; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* V_2 = NULL; int32_t V_3 = 0; int32_t G_B11_0 = 0; { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___0_other; 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*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE_RuntimeMethod_var))); } IL_000e: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = __this->____baseUtcOffset_4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = ___0_other; NullCheck(L_3); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = L_3->____baseUtcOffset_4; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_5; L_5 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_2, L_4, NULL); if (L_5) { goto IL_002f; } } { bool L_6 = __this->____supportsDaylightSavingTime_5; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = ___0_other; NullCheck(L_7); bool L_8 = L_7->____supportsDaylightSavingTime_5; if ((((int32_t)L_6) == ((int32_t)L_8))) { goto IL_0031; } } IL_002f: { return (bool)0; } IL_0031: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_9 = __this->____adjustmentRules_6; V_1 = L_9; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_10 = ___0_other; NullCheck(L_10); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_11 = L_10->____adjustmentRules_6; V_2 = L_11; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_12 = V_1; if (L_12) { goto IL_0045; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_13 = V_2; if (!L_13) { goto IL_0051; } } IL_0045: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_14 = V_1; if (!L_14) { goto IL_004e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_15 = V_2; G_B11_0 = ((!(((RuntimeObject*)(AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); goto IL_0052; } IL_004e: { G_B11_0 = 0; goto IL_0052; } IL_0051: { G_B11_0 = 1; } IL_0052: { V_0 = (bool)G_B11_0; bool L_16 = V_0; if (L_16) { goto IL_0058; } } { return (bool)0; } IL_0058: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = V_1; if (!L_17) { goto IL_0082; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_18 = V_1; NullCheck(L_18); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_19 = V_2; NullCheck(L_19); if ((((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))) { goto IL_0065; } } { return (bool)0; } IL_0065: { V_3 = 0; goto IL_007c; } IL_0069: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_20 = V_1; int32_t L_21 = V_3; NullCheck(L_20); int32_t L_22 = L_21; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = (L_20)->GetAt(static_cast(L_22)); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_24 = V_2; int32_t L_25 = V_3; NullCheck(L_24); int32_t L_26 = L_25; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_27 = (L_24)->GetAt(static_cast(L_26)); NullCheck(L_23); bool L_28; L_28 = AdjustmentRule_Equals_m5DF61E016305C51AC3468B26C32BDFD68E8C1CAD(L_23, L_27, NULL); if (L_28) { goto IL_0078; } } { return (bool)0; } IL_0078: { int32_t L_29 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1)); } IL_007c: { int32_t L_30 = V_3; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_31 = V_1; NullCheck(L_31); if ((((int32_t)L_30) < ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length))))) { goto IL_0069; } } IL_0082: { bool L_32 = V_0; return L_32; } } // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F (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); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_0 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; NullCheck(L_0); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_0, NULL); return L_1; } } // System.String System.TimeZoneInfo::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_ToString_mEA9C721E15FD1651E86AED367B859BD44CF519E8 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = TimeZoneInfo_get_DisplayName_m11B9CDA1B2BCE55E313D7D06D43DF635C7C87A79(__this, NULL); return L_0; } } // System.TimeZoneInfo System.TimeZoneInfo::get_Utc() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Utc_m0690BFE721AA48181F69883884DDEFCC81EDDE0D (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 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; return L_0; } } // System.Void System.TimeZoneInfo::.ctor(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, String_t* ___2_displayName, String_t* ___3_standardDisplayName, String_t* ___4_daylightDisplayName, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___5_adjustmentRules, bool ___6_disableDaylightSavingTime, 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; } bool V_0 = false; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B2_0 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B1_0 = NULL; String_t* G_B3_0 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B3_1 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B5_0 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B4_0 = NULL; int32_t G_B6_0 = 0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B6_1 = NULL; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___0_id; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_baseUtcOffset; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_2 = ___5_adjustmentRules; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189(L_0, L_1, L_2, (&V_0), NULL); String_t* L_3 = ___0_id; __this->____id_0 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____id_0), (void*)L_3); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ___1_baseUtcOffset; __this->____baseUtcOffset_4 = L_4; String_t* L_5 = ___2_displayName; __this->____displayName_1 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)L_5); String_t* L_6 = ___3_standardDisplayName; __this->____standardDisplayName_2 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)L_6); bool L_7 = ___6_disableDaylightSavingTime; G_B1_0 = __this; if (L_7) { G_B2_0 = __this; goto IL_0037; } } { String_t* L_8 = ___4_daylightDisplayName; G_B3_0 = L_8; G_B3_1 = G_B1_0; goto IL_0038; } IL_0037: { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B2_0; } IL_0038: { NullCheck(G_B3_1); G_B3_1->____daylightDisplayName_3 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->____daylightDisplayName_3), (void*)G_B3_0); bool L_9 = V_0; G_B4_0 = __this; if (!L_9) { G_B5_0 = __this; goto IL_0048; } } { bool L_10 = ___6_disableDaylightSavingTime; G_B6_0 = ((((int32_t)L_10) == ((int32_t)0))? 1 : 0); G_B6_1 = G_B4_0; goto IL_0049; } IL_0048: { G_B6_0 = 0; G_B6_1 = G_B5_0; } IL_0049: { NullCheck(G_B6_1); G_B6_1->____supportsDaylightSavingTime_5 = (bool)G_B6_0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_11 = ___5_adjustmentRules; __this->____adjustmentRules_6 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->____adjustmentRules_6), (void*)L_11); return; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_m1079E3836F86BC963EE6B2651F76E968E85D03C2 (String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, String_t* ___2_displayName, String_t* ___3_standardDisplayName, 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; } { String_t* L_0 = ___0_id; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_baseUtcOffset; String_t* L_2 = ___2_displayName; String_t* L_3 = ___3_standardDisplayName; String_t* L_4 = ___3_standardDisplayName; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_5); TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715(L_5, L_0, L_1, L_2, L_3, L_4, (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)NULL, (bool)0, NULL); return L_5; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_m1161C2D45FC8415C5E63E349C6B2D0CC08CF8F56 (String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, String_t* ___2_displayName, String_t* ___3_standardDisplayName, String_t* ___4_daylightDisplayName, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___5_adjustmentRules, bool ___6_disableDaylightSavingTime, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___6_disableDaylightSavingTime; if (L_0) { goto IL_001b; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_1 = ___5_adjustmentRules; if (!L_1) { goto IL_001b; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_2 = ___5_adjustmentRules; NullCheck(L_2); if (!(((RuntimeArray*)L_2)->max_length)) { goto IL_001b; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_3 = ___5_adjustmentRules; NullCheck((RuntimeArray*)L_3); RuntimeObject* L_4; L_4 = Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042((RuntimeArray*)L_3, NULL); ___5_adjustmentRules = ((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)Castclass((RuntimeObject*)L_4, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var)); } IL_001b: { String_t* L_5 = ___0_id; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ___1_baseUtcOffset; String_t* L_7 = ___2_displayName; String_t* L_8 = ___3_standardDisplayName; String_t* L_9 = ___4_daylightDisplayName; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_10 = ___5_adjustmentRules; bool L_11 = ___6_disableDaylightSavingTime; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_12); TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715(L_12, L_5, L_6, L_7, L_8, L_9, L_10, L_11, NULL); return L_12; } } // System.Void System.TimeZoneInfo::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, RuntimeObject* ___0_sender, 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; } bool V_0 = false; ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_1 = NULL; InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { String_t* L_0 = __this->____id_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = __this->____baseUtcOffset_4; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_2 = __this->____adjustmentRules_6; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189(L_0, L_1, L_2, (&V_0), NULL); bool L_3 = V_0; bool L_4 = __this->____supportsDaylightSavingTime_5; if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0037_1; } } { String_t* L_5; L_5 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8C7519178C7F8017597493F458FE4E71F102399E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE)), NULL); SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_6 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_6); SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_6, L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var))); } IL_0037_1: { goto IL_0053; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0039; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0046; } throw e; } CATCH_0039: {// begin catch(System.ArgumentException) V_1 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = V_1; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_8 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_8); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_0046: {// begin catch(System.InvalidTimeZoneException) V_2 = ((InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)); InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_9 = V_2; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_10 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_10); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_9, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var))); }// end catch (depth: 1) IL_0053: { return; } } // System.Void System.TimeZoneInfo::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_m530C74071BC885ED139F52B6E63FE59E1F88D642 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C152F638579421698C1833EAD994B061F824CA0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_m530C74071BC885ED139F52B6E63FE59E1F88D642_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; String_t* L_3 = __this->____id_0; NullCheck(L_2); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_2, _stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; String_t* L_5 = __this->____displayName_1; NullCheck(L_4); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_4, _stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; String_t* L_7 = __this->____standardDisplayName_2; NullCheck(L_6); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_6, _stringLiteral7C152F638579421698C1833EAD994B061F824CA0, L_7, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_8 = ___0_info; String_t* L_9 = __this->____daylightDisplayName_3; NullCheck(L_8); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_8, _stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = __this->____baseUtcOffset_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = L_11; RuntimeObject* L_13 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_10, _stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D, L_13, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_15 = __this->____adjustmentRules_6; NullCheck(L_14); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_14, _stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD, (RuntimeObject*)L_15, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_16 = ___0_info; bool L_17 = __this->____supportsDaylightSavingTime_5; NullCheck(L_16); SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D(L_16, _stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE, L_17, NULL); return; } } // System.Void System.TimeZoneInfo::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_m7B38419A290B32854FB6623A338755B01F675DEA (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_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*)&String_t_0_0_0_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*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C152F638579421698C1833EAD994B061F824CA0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0); s_Il2CppMethodInitialized = true; } { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo__ctor_m7B38419A290B32854FB6623A338755B01F675DEA_RuntimeMethod_var))); } IL_0014: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C, L_4, NULL); __this->____id_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____id_0), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0, L_8, NULL); __this->____displayName_1 = ((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral7C152F638579421698C1833EAD994B061F824CA0, L_12, NULL); __this->____standardDisplayName_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2, L_16, NULL); __this->____daylightDisplayName_3 = ((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____daylightDisplayName_3), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D, L_20, NULL); __this->____baseUtcOffset_4 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_21, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL); NullCheck(L_22); RuntimeObject* L_25; L_25 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_22, _stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD, L_24, NULL); __this->____adjustmentRules_6 = ((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)Castclass((RuntimeObject*)L_25, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____adjustmentRules_6), (void*)((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)Castclass((RuntimeObject*)L_25, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_26 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; Type_t* L_28; L_28 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_27, NULL); NullCheck(L_26); RuntimeObject* L_29; L_29 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_26, _stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE, L_28, NULL); __this->____supportsDaylightSavingTime_5 = ((*(bool*)((bool*)(bool*)UnBox(L_29, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); return; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___1_ruleIndex, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_1 = ___1_ruleIndex; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2; L_2 = TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0(__this, L_0, (bool)0, L_1, NULL); return L_2; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Boolean,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, bool ___1_dateTimeisUtc, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___2_ruleIndex, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_5 = NULL; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_6 = NULL; int32_t V_7 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B6_0; memset((&G_B6_0), 0, sizeof(G_B6_0)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* G_B10_0 = NULL; { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_0 = __this->____adjustmentRules_6; if (!L_0) { goto IL_0011; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_1 = __this->____adjustmentRules_6; NullCheck(L_1); if ((((RuntimeArray*)L_1)->max_length)) { goto IL_001a; } } IL_0011: { Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = ___2_ruleIndex; il2cpp_codegen_initobj(L_2, sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28)); return (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; } IL_001a: { bool L_3 = ___1_dateTimeisUtc; if (L_3) { goto IL_0026; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D((&___0_dateTime), NULL); G_B6_0 = L_4; goto IL_003a; } IL_0026: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___0_dateTime; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(__this, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; L_7 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_5, L_6, NULL); V_3 = L_7; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D((&V_3), NULL); G_B6_0 = L_8; } IL_003a: { V_0 = G_B6_0; V_1 = 0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_9 = __this->____adjustmentRules_6; NullCheck(L_9); V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_9)->max_length)), 1)); goto IL_00a8; } IL_004a: { int32_t L_10 = V_1; int32_t L_11 = V_2; int32_t L_12 = V_1; V_4 = ((int32_t)il2cpp_codegen_add(L_10, ((int32_t)(((int32_t)il2cpp_codegen_subtract(L_11, L_12))>>1)))); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_13 = __this->____adjustmentRules_6; int32_t L_14 = V_4; NullCheck(L_13); int32_t L_15 = L_14; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = (L_13)->GetAt(static_cast(L_15)); V_5 = L_16; int32_t L_17 = V_4; if ((((int32_t)L_17) > ((int32_t)0))) { goto IL_0067; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = V_5; G_B10_0 = L_18; goto IL_0072; } IL_0067: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_19 = __this->____adjustmentRules_6; int32_t L_20 = V_4; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_subtract(L_20, 1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = (L_19)->GetAt(static_cast(L_21)); G_B10_0 = L_22; } IL_0072: { V_6 = G_B10_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = V_5; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = V_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_25 = ___0_dateTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26 = V_0; bool L_27 = ___1_dateTimeisUtc; int32_t L_28; L_28 = TimeZoneInfo_CompareAdjustmentRuleToDateTime_m742CAFF4CFBB4F4A172D2B99095AA2003D995472(__this, L_23, L_24, L_25, L_26, L_27, NULL); V_7 = L_28; int32_t L_29 = V_7; if (L_29) { goto IL_0097; } } { Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_30 = ___2_ruleIndex; int32_t L_31 = V_4; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_32; memset((&L_32), 0, sizeof(L_32)); Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_32), L_31, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var); *(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)L_30 = L_32; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_33 = V_5; return L_33; } IL_0097: { int32_t L_34 = V_7; if ((((int32_t)L_34) >= ((int32_t)0))) { goto IL_00a3; } } { int32_t L_35 = V_4; V_1 = ((int32_t)il2cpp_codegen_add(L_35, 1)); goto IL_00a8; } IL_00a3: { int32_t L_36 = V_4; V_2 = ((int32_t)il2cpp_codegen_subtract(L_36, 1)); } IL_00a8: { int32_t L_37 = V_1; int32_t L_38 = V_2; if ((((int32_t)L_37) <= ((int32_t)L_38))) { goto IL_004a; } } { Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_39 = ___2_ruleIndex; il2cpp_codegen_initobj(L_39, sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28)); return (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; } } // System.Int32 System.TimeZoneInfo::CompareAdjustmentRuleToDateTime(System.TimeZoneInfo/AdjustmentRule,System.TimeZoneInfo/AdjustmentRule,System.DateTime,System.DateTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_CompareAdjustmentRuleToDateTime_m742CAFF4CFBB4F4A172D2B99095AA2003D995472 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_rule, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_previousRule, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___2_dateTime, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___3_dateOnly, bool ___4_dateTimeisUtc, 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; } bool V_0 = false; bool V_1 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B4_0; memset((&G_B4_0), 0, sizeof(G_B4_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B12_0; memset((&G_B12_0), 0, sizeof(G_B12_0)); { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___0_rule; NullCheck(L_0); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_0, NULL); V_2 = L_1; int32_t L_2; L_2 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&V_2), NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_0039; } } { bool L_3 = ___4_dateTimeisUtc; if (L_3) { goto IL_002a; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___2_dateTime; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_5 = ___1_previousRule; NullCheck(L_5); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_5, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = ___1_previousRule; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_7, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03(__this, L_4, L_6, L_8, NULL); G_B4_0 = L_9; goto IL_002b; } IL_002a: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = ___2_dateTime; G_B4_0 = L_10; } IL_002b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_11 = ___0_rule; NullCheck(L_11); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; L_12 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_11, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_13; L_13 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(G_B4_0, L_12, NULL); V_0 = L_13; goto IL_0047; } IL_0039: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14 = ___3_dateOnly; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_15 = ___0_rule; NullCheck(L_15); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16; L_16 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_15, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_17; L_17 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_14, L_16, NULL); V_0 = L_17; } IL_0047: { bool L_18 = V_0; if (L_18) { goto IL_004c; } } { return 1; } IL_004c: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = ___0_rule; NullCheck(L_19); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20; L_20 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_19, NULL); V_2 = L_20; int32_t L_21; L_21 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&V_2), NULL); if ((!(((uint32_t)L_21) == ((uint32_t)1)))) { goto IL_0085; } } { bool L_22 = ___4_dateTimeisUtc; if (L_22) { goto IL_0076; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = ___2_dateTime; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = ___0_rule; NullCheck(L_24); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_25; L_25 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_24, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_26 = ___0_rule; NullCheck(L_26); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27; L_27 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_26, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28; L_28 = TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03(__this, L_23, L_25, L_27, NULL); G_B12_0 = L_28; goto IL_0077; } IL_0076: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = ___2_dateTime; G_B12_0 = L_29; } IL_0077: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_30 = ___0_rule; NullCheck(L_30); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31; L_31 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_30, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8(G_B12_0, L_31, NULL); V_1 = L_32; goto IL_0093; } IL_0085: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33 = ___3_dateOnly; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_34 = ___0_rule; NullCheck(L_34); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35; L_35 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_34, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_36; L_36 = DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8(L_33, L_35, NULL); V_1 = L_36; } IL_0093: { bool L_37 = V_1; if (L_37) { goto IL_0098; } } { return (-1); } IL_0098: { return 0; } } // System.DateTime System.TimeZoneInfo::ConvertToUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_daylightDelta, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_baseUtcOffsetDelta, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_daylightDelta; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___2_baseUtcOffsetDelta; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583(__this, L_0, L_1, L_2, (bool)1, NULL); return L_3; } } // System.DateTime System.TimeZoneInfo::ConvertFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_daylightDelta, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_baseUtcOffsetDelta, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_daylightDelta; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___2_baseUtcOffsetDelta; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583(__this, L_0, L_1, L_2, (bool)0, NULL); return L_3; } } // System.DateTime System.TimeZoneInfo::ConvertToFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_daylightDelta, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_baseUtcOffsetDelta, bool ___3_convertToUtc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); int64_t V_1 = 0; { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0; L_0 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(__this, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_daylightDelta; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_0, L_1, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ___2_baseUtcOffsetDelta; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4; L_4 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_2, L_3, NULL); V_0 = L_4; bool L_5 = ___3_convertToUtc; if (!L_5) { goto IL_001f; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_0), NULL); V_0 = L_6; } IL_001f: { int64_t L_7; L_7 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL); int64_t L_8; L_8 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_0), NULL); V_1 = ((int64_t)il2cpp_codegen_add(L_7, L_8)); int64_t L_9 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_10; L_10 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int64_t)L_9) > ((int64_t)L_10))) { goto IL_0056; } } { int64_t L_11 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_12; L_12 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int64_t)L_11) < ((int64_t)L_12))) { goto IL_0050; } } { int64_t L_13 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14; memset((&L_14), 0, sizeof(L_14)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_14), L_13, /*hidden argument*/NULL); return L_14; } IL_0050: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_15; } IL_0056: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; return L_16; } } // System.DateTime System.TimeZoneInfo::ConvertUtcToTimeZone(System.Int64,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertUtcToTimeZone_m62356BCBE6F46091C1F72499E6688B8807D2F29F (int64_t ___0_ticks, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_destinationTimeZone, bool* ___2_isAmbiguousLocalDst, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B5_0; memset((&G_B5_0), 0, sizeof(G_B5_0)); { int64_t L_0 = ___0_ticks; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_1; L_1 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int64_t)L_0) > ((int64_t)L_1))) { goto IL_0029; } } { int64_t L_2 = ___0_ticks; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_3; L_3 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int64_t)L_2) < ((int64_t)L_3))) { goto IL_0022; } } { int64_t L_4 = ___0_ticks; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5; memset((&L_5), 0, sizeof(L_5)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_5), L_4, /*hidden argument*/NULL); G_B5_0 = L_5; goto IL_002e; } IL_0022: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; G_B5_0 = L_6; goto IL_002e; } IL_0029: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; G_B5_0 = L_7; } IL_002e: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_8 = ___1_destinationTimeZone; bool* L_9 = ___2_isAmbiguousLocalDst; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = TimeZoneInfo_GetUtcOffsetFromUtc_m26EC9E50FA85D61B2DCEA55B176924111DE7D388(G_B5_0, L_8, L_9, NULL); V_0 = L_10; int64_t L_11 = ___0_ticks; int64_t L_12; L_12 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_0), NULL); ___0_ticks = ((int64_t)il2cpp_codegen_add(L_11, L_12)); int64_t L_13 = ___0_ticks; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_14; L_14 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int64_t)L_13) > ((int64_t)L_14))) { goto IL_0068; } } { int64_t L_15 = ___0_ticks; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_16; L_16 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int64_t)L_15) < ((int64_t)L_16))) { goto IL_0062; } } { int64_t L_17 = ___0_ticks; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; memset((&L_18), 0, sizeof(L_18)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_18), L_17, /*hidden argument*/NULL); return L_18; } IL_0062: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_19; } IL_0068: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; return L_20; } } // System.Globalization.DaylightTimeStruct System.TimeZoneInfo::GetDaylightTime(System.Int32,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, int32_t ___0_year, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___2_ruleIndex, 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; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_3 = NULL; { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___1_rule; NullCheck(L_0); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1; L_1 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_0, NULL); V_0 = L_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___1_rule; NullCheck(L_2); bool L_3; L_3 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_2, NULL); if (!L_3) { goto IL_004c; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___1_rule; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_5 = ___2_ruleIndex; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6; L_6 = TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3(__this, L_4, L_5, NULL); V_3 = L_6; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = ___1_rule; NullCheck(L_7); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_7, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = V_3; NullCheck(L_9); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_9, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_11 = V_3; NullCheck(L_11); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12; L_12 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_11, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13; L_13 = TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D(__this, L_8, L_10, L_12, NULL); V_1 = L_13; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14 = ___1_rule; NullCheck(L_14); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_14, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = ___1_rule; NullCheck(L_16); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17; L_17 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_16, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = ___1_rule; NullCheck(L_18); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19; L_19 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_18, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20; L_20 = TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D(__this, L_15, L_17, L_19, NULL); V_2 = L_20; goto IL_0066; } IL_004c: { int32_t L_21 = ___0_year; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = ___1_rule; NullCheck(L_22); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_23; L_23 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(L_22, NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24; L_24 = TimeZoneInfo_TransitionTimeToDateTime_mFA9EC26BD7A879068D5D09551A5286C907C20250(L_21, L_23, NULL); V_1 = L_24; int32_t L_25 = ___0_year; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_26 = ___1_rule; NullCheck(L_26); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_27; L_27 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(L_26, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28; L_28 = TimeZoneInfo_TransitionTimeToDateTime_mFA9EC26BD7A879068D5D09551A5286C907C20250(L_25, L_27, NULL); V_2 = L_28; } IL_0066: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = V_2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = V_0; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_32; memset((&L_32), 0, sizeof(L_32)); DaylightTimeStruct__ctor_m1A00C6B8123F9F3DD3D739155355DFC1E2ACA0CE((&L_32), L_29, L_30, L_31, /*hidden argument*/NULL); return L_32; } } // System.Boolean System.TimeZoneInfo::GetIsDaylightSavings(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavings_m985A11385C9178014051FD186B6CF32F16FD1162 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___2_daylightTime, int32_t ___3_flags, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); bool V_2 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B6_0; memset((&G_B6_0), 0, sizeof(G_B6_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B9_0; memset((&G_B9_0), 0, sizeof(G_B9_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B13_0; memset((&G_B13_0), 0, sizeof(G_B13_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B12_0; memset((&G_B12_0), 0, sizeof(G_B12_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B14_0; memset((&G_B14_0), 0, sizeof(G_B14_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B14_1; memset((&G_B14_1), 0, sizeof(G_B14_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B16_0; memset((&G_B16_0), 0, sizeof(G_B16_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B19_0; memset((&G_B19_0), 0, sizeof(G_B19_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B18_0; memset((&G_B18_0), 0, sizeof(G_B18_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B20_0; memset((&G_B20_0), 0, sizeof(G_B20_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B20_1; memset((&G_B20_1), 0, sizeof(G_B20_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B22_0; memset((&G_B22_0), 0, sizeof(G_B22_0)); { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___1_rule; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { int32_t L_1; L_1 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_time), NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0079; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___1_rule; NullCheck(L_2); bool L_3; L_3 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_2, NULL); if (L_3) { goto IL_002a; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_4 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = L_4.___Start_0; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_6 = ___2_daylightTime; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = L_6.___Delta_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_5, L_7, NULL); G_B6_0 = L_8; goto IL_0040; } IL_002a: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_9 = (&(&___2_daylightTime)->___Start_0); int32_t L_10; L_10 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_9, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_11), L_10, 1, 1, 0, 0, 0, /*hidden argument*/NULL); G_B6_0 = L_11; } IL_0040: { V_0 = G_B6_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_12 = ___1_rule; NullCheck(L_12); bool L_13; L_13 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_12, NULL); if (L_13) { goto IL_0051; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_14 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = L_14.___End_1; G_B9_0 = L_15; goto IL_0073; } IL_0051: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = (&(&___2_daylightTime)->___End_1); int32_t L_17; L_17 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_16, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; memset((&L_18), 0, sizeof(L_18)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_18), ((int32_t)il2cpp_codegen_add(L_17, 1)), 1, 1, 0, 0, 0, /*hidden argument*/NULL); V_3 = L_18; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19; L_19 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_3), ((int64_t)(-1)), NULL); G_B9_0 = L_19; } IL_0073: { V_1 = G_B9_0; goto IL_0116; } IL_0079: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_20 = ___1_rule; NullCheck(L_20); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21; L_21 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_20, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_23; L_23 = TimeSpan_op_GreaterThan_m346676C36494E3CD2560A604996F88CEC3D845C0(L_21, L_22, NULL); V_4 = L_23; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = ___1_rule; NullCheck(L_24); bool L_25; L_25 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_24, NULL); if (L_25) { goto IL_00b1; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_26 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27 = L_26.___Start_0; bool L_28 = V_4; G_B12_0 = L_27; if (L_28) { G_B13_0 = L_27; goto IL_00a4; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B14_0 = L_29; G_B14_1 = G_B12_0; goto IL_00aa; } IL_00a4: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_30 = ___1_rule; NullCheck(L_30); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31; L_31 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_30, NULL); G_B14_0 = L_31; G_B14_1 = G_B13_0; } IL_00aa: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32; L_32 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(G_B14_1, G_B14_0, NULL); G_B16_0 = L_32; goto IL_00c7; } IL_00b1: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_33 = (&(&___2_daylightTime)->___Start_0); int32_t L_34; L_34 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_33, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35; memset((&L_35), 0, sizeof(L_35)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_35), L_34, 1, 1, 0, 0, 0, /*hidden argument*/NULL); G_B16_0 = L_35; } IL_00c7: { V_0 = G_B16_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_36 = ___1_rule; NullCheck(L_36); bool L_37; L_37 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_36, NULL); if (L_37) { goto IL_00f3; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_38 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39 = L_38.___End_1; bool L_40 = V_4; G_B18_0 = L_39; if (L_40) { G_B19_0 = L_39; goto IL_00e1; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_41 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B20_0 = L_41; G_B20_1 = G_B18_0; goto IL_00ec; } IL_00e1: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42 = ___1_rule; NullCheck(L_42); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43; L_43 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_42, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44; L_44 = TimeSpan_op_UnaryNegation_mBD0F86C461C2CE1C9EAB62F2E41D28471CDE2493(L_43, NULL); G_B20_0 = L_44; G_B20_1 = G_B19_0; } IL_00ec: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45; L_45 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(G_B20_1, G_B20_0, NULL); G_B22_0 = L_45; goto IL_0115; } IL_00f3: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_46 = (&(&___2_daylightTime)->___End_1); int32_t L_47; L_47 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_46, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48; memset((&L_48), 0, sizeof(L_48)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_48), ((int32_t)il2cpp_codegen_add(L_47, 1)), 1, 1, 0, 0, 0, /*hidden argument*/NULL); V_3 = L_48; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49; L_49 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_3), ((int64_t)(-1)), NULL); G_B22_0 = L_49; } IL_0115: { V_1 = G_B22_0; } IL_0116: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_50 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = V_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_53 = ___1_rule; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_54; L_54 = TimeZoneInfo_CheckIsDst_m2656B1D652DB37ECF0C9E051E0F4CDFF26A4B3EE(L_50, L_51, L_52, (bool)0, L_53, NULL); V_2 = L_54; bool L_55 = V_2; if (!L_55) { goto IL_0140; } } { int32_t L_56; L_56 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_time), NULL); if ((!(((uint32_t)L_56) == ((uint32_t)2)))) { goto IL_0140; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_57 = ___0_time; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_58 = ___1_rule; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_59 = ___2_daylightTime; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_60; L_60 = TimeZoneInfo_GetIsAmbiguousTime_m67D31015F72F734D336900FDDECDDBEE8E544A02(L_57, L_58, L_59, NULL); if (!L_60) { goto IL_0140; } } { bool L_61; L_61 = DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27((&___0_time), NULL); V_2 = L_61; } IL_0140: { bool L_62 = V_2; return L_62; } } // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsStartOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc_m51CDB9591A7421A0CB8C410FCEA93544772F7710 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___2_ruleIndex, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_0 = NULL; { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___1_rule; NullCheck(L_0); bool L_1; L_1 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_0, NULL); if (!L_1) { goto IL_0029; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___1_rule; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___2_ruleIndex; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4; L_4 = TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3(__this, L_2, L_3, NULL); V_0 = L_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ___0_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = V_0; NullCheck(L_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_6, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_5, L_7, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = V_0; NullCheck(L_9); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_9, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11; L_11 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_8, L_10, NULL); return L_11; } IL_0029: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = ___0_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_13 = ___1_rule; NullCheck(L_13); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14; L_14 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_13, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_12, L_14, NULL); return L_15; } } // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsEndOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc_m8B8363BCFB2A08847D34732523F0A6262A3EC78D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___1_rule; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_0, L_2, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___1_rule; NullCheck(L_4); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_4, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_3, L_5, NULL); return L_6; } } // System.Boolean System.TimeZoneInfo::GetIsDaylightSavingsFromUtc(System.DateTime,System.Int32,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1,System.Boolean&,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavingsFromUtc_m6EDDB4065B837BA4C64E6BD1FEBE42498539980D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, int32_t ___1_year, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_utc, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___3_rule, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___4_ruleIndex, bool* ___5_isAmbiguousLocalDst, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___6_zone, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_7; memset((&V_7), 0, sizeof(V_7)); bool V_8 = false; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_9; memset((&V_9), 0, sizeof(V_9)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_10 = NULL; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_11; memset((&V_11), 0, sizeof(V_11)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_12 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_13; memset((&V_13), 0, sizeof(V_13)); il2cpp::utils::ExceptionSupportStack __active_exceptions; bool* G_B25_0 = NULL; bool* G_B24_0 = NULL; int32_t G_B26_0 = 0; bool* G_B26_1 = NULL; bool* G_B30_0 = NULL; bool* G_B29_0 = NULL; int32_t G_B31_0 = 0; bool* G_B31_1 = NULL; bool* G_B36_0 = NULL; bool* G_B35_0 = NULL; int32_t G_B37_0 = 0; bool* G_B37_1 = NULL; { bool* L_0 = ___5_isAmbiguousLocalDst; *((int8_t*)L_0) = (int8_t)0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___3_rule; if (L_1) { goto IL_0009; } } { return (bool)0; } IL_0009: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___6_zone; int32_t L_3 = ___1_year; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___3_rule; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_5 = ___4_ruleIndex; NullCheck(L_2); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_6; L_6 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_2, L_3, L_4, L_5, NULL); V_0 = L_6; V_1 = (bool)0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = ___6_zone; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___2_utc; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = ___3_rule; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_10 = ___4_ruleIndex; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11; L_11 = TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc_m51CDB9591A7421A0CB8C410FCEA93544772F7710(L_7, L_8, L_9, L_10, NULL); V_2 = L_11; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_12 = ___3_rule; NullCheck(L_12); bool L_13; L_13 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_12, NULL); if (!L_13) { goto IL_00cc; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&(&V_0)->___Start_0); int32_t L_15; L_15 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_14, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_16; L_16 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int32_t)L_15) <= ((int32_t)L_16))) { goto IL_00cc; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_17 = ___6_zone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_18 = (&(&V_0)->___Start_0); int32_t L_19; L_19 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_18, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20; memset((&L_20), 0, sizeof(L_20)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_20), ((int32_t)il2cpp_codegen_subtract(L_19, 1)), ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); NullCheck(L_17); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_21; L_21 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_17, L_20, (&V_9), NULL); V_10 = L_21; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = V_10; if (!L_22) { goto IL_00ad; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = V_10; NullCheck(L_23); bool L_24; L_24 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_23, NULL); if (!L_24) { goto IL_00ad; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_25 = ___6_zone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_26 = (&(&V_0)->___Start_0); int32_t L_27; L_27 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_26, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = V_10; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_29 = V_9; NullCheck(L_25); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_30; L_30 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_25, ((int32_t)il2cpp_codegen_subtract(L_27, 1)), L_28, L_29, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = L_30.___Start_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_32 = ___2_utc; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33; L_33 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_31, L_32, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_34 = V_10; NullCheck(L_34); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35; L_35 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_34, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36; L_36 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_33, L_35, NULL); V_3 = L_36; V_1 = (bool)1; goto IL_00d9; } IL_00ad: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_37 = (&(&V_0)->___Start_0); int32_t L_38; L_38 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_37, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39; memset((&L_39), 0, sizeof(L_39)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_39), L_38, 1, 1, 0, 0, 0, /*hidden argument*/NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_41; L_41 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_39, L_40, NULL); V_3 = L_41; goto IL_00d9; } IL_00cc: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_42 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = L_42.___Start_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45; L_45 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_43, L_44, NULL); V_3 = L_45; } IL_00d9: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_46 = ___6_zone; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47 = ___2_utc; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_48 = ___3_rule; NullCheck(L_46); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_49; L_49 = TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc_m8B8363BCFB2A08847D34732523F0A6262A3EC78D(L_46, L_47, L_48, NULL); V_4 = L_49; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_50 = ___3_rule; NullCheck(L_50); bool L_51; L_51 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_50, NULL); if (!L_51) { goto IL_01ef; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_52 = (&(&V_0)->___End_1); int32_t L_53; L_53 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_52, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_54; L_54 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int32_t)L_53) >= ((int32_t)L_54))) { goto IL_01ef; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_55 = ___6_zone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_56 = (&(&V_0)->___End_1); int32_t L_57; L_57 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_56, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_58; memset((&L_58), 0, sizeof(L_58)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_58), ((int32_t)il2cpp_codegen_add(L_57, 1)), 1, 1, /*hidden argument*/NULL); NullCheck(L_55); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_59; L_59 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_55, L_58, (&V_11), NULL); V_12 = L_59; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_60 = V_12; if (!L_60) { goto IL_01c1; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_61 = V_12; NullCheck(L_61); bool L_62; L_62 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_61, NULL); if (!L_62) { goto IL_01c1; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_63 = V_12; NullCheck(L_63); bool L_64; L_64 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_63, NULL); if (!L_64) { goto IL_017f; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_65 = (&(&V_0)->___End_1); int32_t L_66; L_66 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_65, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_67; memset((&L_67), 0, sizeof(L_67)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_67), ((int32_t)il2cpp_codegen_add(L_66, 1)), ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_68 = ___2_utc; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_69; L_69 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_67, L_68, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_70 = V_12; NullCheck(L_70); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_71; L_71 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_70, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_72; L_72 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_69, L_71, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_73 = V_12; NullCheck(L_73); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_74; L_74 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_73, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_75; L_75 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_72, L_74, NULL); V_5 = L_75; goto IL_01bd; } IL_017f: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_76 = ___6_zone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_77 = (&(&V_0)->___End_1); int32_t L_78; L_78 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_77, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_79 = V_12; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_80 = V_11; NullCheck(L_76); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_81; L_81 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_76, ((int32_t)il2cpp_codegen_add(L_78, 1)), L_79, L_80, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_82 = L_81.___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_83 = ___2_utc; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_84; L_84 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_82, L_83, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_85 = V_12; NullCheck(L_85); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_86; L_86 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_85, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_87; L_87 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_84, L_86, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_88 = V_12; NullCheck(L_88); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_89; L_89 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_88, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_90; L_90 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_87, L_89, NULL); V_5 = L_90; } IL_01bd: { V_1 = (bool)1; goto IL_01fe; } IL_01c1: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_91 = (&(&V_0)->___End_1); int32_t L_92; L_92 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_91, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_93; memset((&L_93), 0, sizeof(L_93)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_93), ((int32_t)il2cpp_codegen_add(L_92, 1)), 1, 1, 0, 0, 0, /*hidden argument*/NULL); V_13 = L_93; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_94; L_94 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_13), ((int64_t)(-1)), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_95 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_96; L_96 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_94, L_95, NULL); V_5 = L_96; goto IL_01fe; } IL_01ef: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_97 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_98 = L_97.___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_99 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_100; L_100 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_98, L_99, NULL); V_5 = L_100; } IL_01fe: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_101 = (&(&V_0)->___Delta_2); int64_t L_102; L_102 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_101, NULL); if ((((int64_t)L_102) <= ((int64_t)((int64_t)0)))) { goto IL_0223; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_103 = V_5; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_104 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_105 = L_104.___Delta_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_106; L_106 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_103, L_105, NULL); V_6 = L_106; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_107 = V_5; V_7 = L_107; goto IL_0234; } IL_0223: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_108 = V_3; V_6 = L_108; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_109 = V_3; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_110 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_111 = L_110.___Delta_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_112; L_112 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_109, L_111, NULL); V_7 = L_112; } IL_0234: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_113 = V_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_114 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_115 = V_5; bool L_116 = V_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_117 = ___3_rule; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_118; L_118 = TimeZoneInfo_CheckIsDst_m2656B1D652DB37ECF0C9E051E0F4CDFF26A4B3EE(L_113, L_114, L_115, L_116, L_117, NULL); V_8 = L_118; bool L_119 = V_8; if (!L_119) { goto IL_02d8; } } { bool* L_120 = ___5_isAmbiguousLocalDst; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_121 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_122 = V_6; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_123; L_123 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_121, L_122, NULL); G_B24_0 = L_120; if (!L_123) { G_B25_0 = L_120; goto IL_025e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_124 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_125 = V_7; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_126; L_126 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_124, L_125, NULL); G_B26_0 = ((int32_t)(L_126)); G_B26_1 = G_B24_0; goto IL_025f; } IL_025e: { G_B26_0 = 0; G_B26_1 = G_B25_0; } IL_025f: { *((int8_t*)G_B26_1) = (int8_t)G_B26_0; bool* L_127 = ___5_isAmbiguousLocalDst; int32_t L_128 = *((uint8_t*)L_127); if (L_128) { goto IL_02d8; } } { int32_t L_129; L_129 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_6), NULL); int32_t L_130; L_130 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_7), NULL); if ((((int32_t)L_129) == ((int32_t)L_130))) { goto IL_02d8; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_131; L_131 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_6), 1, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_132; L_132 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_7), 1, NULL); bool* L_133 = ___5_isAmbiguousLocalDst; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_134 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_135 = V_6; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_136; L_136 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_134, L_135, NULL); G_B29_0 = L_133; if (!L_136) { G_B30_0 = L_133; goto IL_029d_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_137 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_138 = V_7; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_139; L_139 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_137, L_138, NULL); G_B31_0 = ((int32_t)(L_139)); G_B31_1 = G_B29_0; goto IL_029e_1; } IL_029d_1: { G_B31_0 = 0; G_B31_1 = G_B30_0; } IL_029e_1: { *((int8_t*)G_B31_1) = (int8_t)G_B31_0; goto IL_02a4; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_02a1; } throw e; } CATCH_02a1: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_02a4; }// end catch (depth: 1) IL_02a4: { bool* L_140 = ___5_isAmbiguousLocalDst; int32_t L_141 = *((uint8_t*)L_140); if (L_141) { goto IL_02d8; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_142; L_142 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_6), (-1), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_143; L_143 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_7), (-1), NULL); bool* L_144 = ___5_isAmbiguousLocalDst; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_145 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_146 = V_6; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_147; L_147 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_145, L_146, NULL); G_B35_0 = L_144; if (!L_147) { G_B36_0 = L_144; goto IL_02d1_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_148 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_149 = V_7; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_150; L_150 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_148, L_149, NULL); G_B37_0 = ((int32_t)(L_150)); G_B37_1 = G_B35_0; goto IL_02d2_1; } IL_02d1_1: { G_B37_0 = 0; G_B37_1 = G_B36_0; } IL_02d2_1: { *((int8_t*)G_B37_1) = (int8_t)G_B37_0; goto IL_02d8; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_02d5; } throw e; } CATCH_02d5: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_02d8; }// end catch (depth: 1) IL_02d8: { bool L_151 = V_8; return L_151; } } // System.Boolean System.TimeZoneInfo::CheckIsDst(System.DateTime,System.DateTime,System.DateTime,System.Boolean,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CheckIsDst_m2656B1D652DB37ECF0C9E051E0F4CDFF26A4B3EE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_startTime, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_time, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___2_endTime, bool ___3_ignoreYearAdjustment, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___4_rule, 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; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { bool L_0 = ___3_ignoreYearAdjustment; if (L_0) { goto IL_0044; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___4_rule; NullCheck(L_1); bool L_2; L_2 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_1, NULL); if (L_2) { goto IL_0044; } } { int32_t L_3; L_3 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___0_startTime), NULL); V_0 = L_3; int32_t L_4; L_4 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___2_endTime), NULL); V_1 = L_4; int32_t L_5 = V_0; int32_t L_6 = V_1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_002c; } } { int32_t L_7 = V_0; int32_t L_8 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&___2_endTime), ((int32_t)il2cpp_codegen_subtract(L_7, L_8)), NULL); ___2_endTime = L_9; } IL_002c: { int32_t L_10; L_10 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___1_time), NULL); V_2 = L_10; int32_t L_11 = V_0; int32_t L_12 = V_2; if ((((int32_t)L_11) == ((int32_t)L_12))) { goto IL_0044; } } { int32_t L_13 = V_0; int32_t L_14 = V_2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&___1_time), ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), NULL); ___1_time = L_15; } IL_0044: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = ___0_startTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_17 = ___2_endTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_18; L_18 = DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F(L_16, L_17, NULL); if (!L_18) { goto IL_0060; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20 = ___2_endTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_21; L_21 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_19, L_20, NULL); if (L_21) { goto IL_005e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = ___0_startTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_24; L_24 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_22, L_23, NULL); return L_24; } IL_005e: { return (bool)1; } IL_0060: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = ___4_rule; NullCheck(L_25); bool L_26; L_26 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_25, NULL); if (!L_26) { goto IL_007c; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___0_startTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_29; L_29 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_27, L_28, NULL); if (!L_29) { goto IL_007a; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___2_endTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8(L_30, L_31, NULL); return L_32; } IL_007a: { return (bool)0; } IL_007c: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_34 = ___0_startTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_35; L_35 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_33, L_34, NULL); if (!L_35) { goto IL_008d; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36 = ___1_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37 = ___2_endTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_38; L_38 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_36, L_37, NULL); return L_38; } IL_008d: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::GetIsAmbiguousTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsAmbiguousTime_m67D31015F72F734D336900FDDECDDBEE8E544A02 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___2_daylightTime, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4; memset((&V_4), 0, sizeof(V_4)); il2cpp::utils::ExceptionSupportStack __active_exceptions; int32_t G_B13_0 = 0; int32_t G_B18_0 = 0; int32_t G_B24_0 = 0; { V_0 = (bool)0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___1_rule; if (!L_0) { goto IL_0017; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___1_rule; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_4; L_4 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_2, L_3, NULL); if (!L_4) { goto IL_0019; } } IL_0017: { bool L_5 = V_0; return L_5; } IL_0019: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = ___1_rule; NullCheck(L_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_6, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_9; L_9 = TimeSpan_op_GreaterThan_m346676C36494E3CD2560A604996F88CEC3D845C0(L_7, L_8, NULL); if (!L_9) { goto IL_0050; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = ___1_rule; NullCheck(L_10); bool L_11; L_11 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_10, NULL); if (!L_11) { goto IL_0035; } } { return (bool)0; } IL_0035: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_12 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = L_12.___End_1; V_1 = L_13; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_14 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = L_14.___End_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = ___1_rule; NullCheck(L_16); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17; L_17 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_16, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; L_18 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_15, L_17, NULL); V_2 = L_18; goto IL_0073; } IL_0050: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = ___1_rule; NullCheck(L_19); bool L_20; L_20 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_19, NULL); if (!L_20) { goto IL_005a; } } { return (bool)0; } IL_005a: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_21 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = L_21.___Start_0; V_1 = L_22; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_23 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = L_23.___Start_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = ___1_rule; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_25, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27; L_27 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_24, L_26, NULL); V_2 = L_27; } IL_0073: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_30; L_30 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_28, L_29, NULL); if (!L_30) { goto IL_0085; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_33; L_33 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_31, L_32, NULL); G_B13_0 = ((int32_t)(L_33)); goto IL_0086; } IL_0085: { G_B13_0 = 0; } IL_0086: { V_0 = (bool)G_B13_0; bool L_34 = V_0; if (L_34) { goto IL_00f7; } } { int32_t L_35; L_35 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_1), NULL); int32_t L_36; L_36 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); if ((((int32_t)L_35) == ((int32_t)L_36))) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37; L_37 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), 1, NULL); V_3 = L_37; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_38; L_38 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), 1, NULL); V_4 = L_38; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_41; L_41 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_39, L_40, NULL); if (!L_41) { goto IL_00c0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_42 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_44; L_44 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_42, L_43, NULL); G_B18_0 = ((int32_t)(L_44)); goto IL_00c1_1; } IL_00c0_1: { G_B18_0 = 0; } IL_00c1_1: { V_0 = (bool)G_B18_0; goto IL_00c7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00c4; } throw e; } CATCH_00c4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00c7; }// end catch (depth: 1) IL_00c7: { bool L_45 = V_0; if (L_45) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46; L_46 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), (-1), NULL); V_3 = L_46; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_47; L_47 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), (-1), NULL); V_4 = L_47; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_50; L_50 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_48, L_49, NULL); if (!L_50) { goto IL_00f0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_53; L_53 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_51, L_52, NULL); G_B24_0 = ((int32_t)(L_53)); goto IL_00f1_1; } IL_00f0_1: { G_B24_0 = 0; } IL_00f1_1: { V_0 = (bool)G_B24_0; goto IL_00f7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00f4; } throw e; } CATCH_00f4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00f7; }// end catch (depth: 1) IL_00f7: { bool L_54 = V_0; return L_54; } } // System.Boolean System.TimeZoneInfo::GetIsInvalidTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsInvalidTime_m0A0AC529B12DFD095D006AE35DE084BF36C2DAAF (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___2_daylightTime, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4; memset((&V_4), 0, sizeof(V_4)); il2cpp::utils::ExceptionSupportStack __active_exceptions; int32_t G_B13_0 = 0; int32_t G_B18_0 = 0; int32_t G_B24_0 = 0; { V_0 = (bool)0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___1_rule; if (!L_0) { goto IL_0017; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___1_rule; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_4; L_4 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_2, L_3, NULL); if (!L_4) { goto IL_0019; } } IL_0017: { bool L_5 = V_0; return L_5; } IL_0019: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = ___1_rule; NullCheck(L_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_6, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_9; L_9 = TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF(L_7, L_8, NULL); if (!L_9) { goto IL_0050; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = ___1_rule; NullCheck(L_10); bool L_11; L_11 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_10, NULL); if (!L_11) { goto IL_0035; } } { return (bool)0; } IL_0035: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_12 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = L_12.___End_1; V_1 = L_13; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_14 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = L_14.___End_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = ___1_rule; NullCheck(L_16); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17; L_17 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_16, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; L_18 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_15, L_17, NULL); V_2 = L_18; goto IL_0073; } IL_0050: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = ___1_rule; NullCheck(L_19); bool L_20; L_20 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_19, NULL); if (!L_20) { goto IL_005a; } } { return (bool)0; } IL_005a: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_21 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = L_21.___Start_0; V_1 = L_22; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_23 = ___2_daylightTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = L_23.___Start_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = ___1_rule; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_25, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27; L_27 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_24, L_26, NULL); V_2 = L_27; } IL_0073: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_30; L_30 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_28, L_29, NULL); if (!L_30) { goto IL_0085; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_33; L_33 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_31, L_32, NULL); G_B13_0 = ((int32_t)(L_33)); goto IL_0086; } IL_0085: { G_B13_0 = 0; } IL_0086: { V_0 = (bool)G_B13_0; bool L_34 = V_0; if (L_34) { goto IL_00f7; } } { int32_t L_35; L_35 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_1), NULL); int32_t L_36; L_36 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); if ((((int32_t)L_35) == ((int32_t)L_36))) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37; L_37 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), 1, NULL); V_3 = L_37; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_38; L_38 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), 1, NULL); V_4 = L_38; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_41; L_41 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_39, L_40, NULL); if (!L_41) { goto IL_00c0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_42 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_44; L_44 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_42, L_43, NULL); G_B18_0 = ((int32_t)(L_44)); goto IL_00c1_1; } IL_00c0_1: { G_B18_0 = 0; } IL_00c1_1: { V_0 = (bool)G_B18_0; goto IL_00c7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00c4; } throw e; } CATCH_00c4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00c7; }// end catch (depth: 1) IL_00c7: { bool L_45 = V_0; if (L_45) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46; L_46 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), (-1), NULL); V_3 = L_46; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_47; L_47 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), (-1), NULL); V_4 = L_47; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_50; L_50 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_48, L_49, NULL); if (!L_50) { goto IL_00f0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51 = ___0_time; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_53; L_53 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_51, L_52, NULL); G_B24_0 = ((int32_t)(L_53)); goto IL_00f1_1; } IL_00f0_1: { G_B24_0 = 0; } IL_00f1_1: { V_0 = (bool)G_B24_0; goto IL_00f7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00f4; } throw e; } CATCH_00f4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00f7; }// end catch (depth: 1) IL_00f7: { bool L_54 = V_0; return L_54; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mC4507388951E039D442BC10507424EC6D3D0C880 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, int32_t ___2_flags, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_1; memset((&V_1), 0, sizeof(V_1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_2 = NULL; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B4_0; memset((&G_B4_0), 0, sizeof(G_B4_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B5_0; memset((&G_B5_0), 0, sizeof(G_B5_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B5_1; memset((&G_B5_1), 0, sizeof(G_B5_1)); { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___1_zone; NullCheck(L_0); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1; L_1 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_0, NULL); V_0 = L_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___1_zone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___0_time; NullCheck(L_2); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4; L_4 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_2, L_3, (&V_1), NULL); V_2 = L_4; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_5 = V_2; if (!L_5) { goto IL_005c; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = V_2; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_7, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_6, L_8, NULL); V_0 = L_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = V_2; NullCheck(L_10); bool L_11; L_11 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_10, NULL); if (!L_11) { goto IL_005c; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = ___1_zone; int32_t L_13; L_13 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___0_time), NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14 = V_2; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_15 = V_1; NullCheck(L_12); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_16; L_16 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_12, L_13, L_14, L_15, NULL); V_3 = L_16; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_17 = ___0_time; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = V_2; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_19 = V_3; int32_t L_20 = ___2_flags; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_21; L_21 = TimeZoneInfo_GetIsDaylightSavings_m985A11385C9178014051FD186B6CF32F16FD1162(L_17, L_18, L_19, L_20, NULL); V_4 = L_21; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22 = V_0; bool L_23 = V_4; G_B3_0 = L_22; if (L_23) { G_B4_0 = L_22; goto IL_0050; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_24 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B5_0 = L_24; G_B5_1 = G_B3_0; goto IL_0056; } IL_0050: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = V_2; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_25, NULL); G_B5_0 = L_26; G_B5_1 = G_B4_0; } IL_0056: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27; L_27 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(G_B5_1, G_B5_0, NULL); V_0 = L_27; } IL_005c: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_28 = V_0; return L_28; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m8B4B5000BCA5D3198D135352F31CADDD63F404E5 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, 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; } bool V_0 = false; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_time; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ___1_zone; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetUtcOffsetFromUtc_m26EC9E50FA85D61B2DCEA55B176924111DE7D388(L_0, L_1, (&V_0), NULL); return L_2; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m26EC9E50FA85D61B2DCEA55B176924111DE7D388 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, bool* ___2_isDaylightSavings, 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; } bool V_0 = false; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_time; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ___1_zone; bool* L_2 = ___2_isDaylightSavings; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2(L_0, L_1, L_2, (&V_0), NULL); return L_3; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, bool* ___2_isDaylightSavings, bool* ___3_isAmbiguousLocalDst, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_2; memset((&V_2), 0, sizeof(V_2)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_3 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4; memset((&V_4), 0, sizeof(V_4)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B9_0; memset((&G_B9_0), 0, sizeof(G_B9_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B8_0; memset((&G_B8_0), 0, sizeof(G_B8_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B10_0; memset((&G_B10_0), 0, sizeof(G_B10_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B10_1; memset((&G_B10_1), 0, sizeof(G_B10_1)); { bool* L_0 = ___2_isDaylightSavings; *((int8_t*)L_0) = (int8_t)0; bool* L_1 = ___3_isAmbiguousLocalDst; *((int8_t*)L_1) = (int8_t)0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___1_zone; NullCheck(L_2); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_2, NULL); V_0 = L_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___0_time; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_maxDateOnly_9; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_6; L_6 = DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F(L_4, L_5, NULL); if (!L_6) { goto IL_0030; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = ___1_zone; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; NullCheck(L_7); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9; L_9 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_7, L_8, (&V_2), NULL); V_3 = L_9; V_1 = ((int32_t)9999); goto IL_006b; } IL_0030: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = ___0_time; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_minDateOnly_10; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_12; L_12 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_10, L_11, NULL); if (!L_12) { goto IL_004f; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_13 = ___1_zone; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; NullCheck(L_13); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_15; L_15 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_13, L_14, (&V_2), NULL); V_3 = L_15; V_1 = 1; goto IL_006b; } IL_004f: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_16 = ___1_zone; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_17 = ___0_time; NullCheck(L_16); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18; L_18 = TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0(L_16, L_17, (bool)1, (&V_2), NULL); V_3 = L_18; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = ___0_time; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20 = V_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_21; L_21 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_19, L_20, NULL); V_4 = L_21; int32_t L_22; L_22 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_4), NULL); V_1 = L_22; } IL_006b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = V_3; if (!L_23) { goto IL_00ae; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_24 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = V_3; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_25, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27; L_27 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_24, L_26, NULL); V_0 = L_27; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = V_3; NullCheck(L_28); bool L_29; L_29 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_28, NULL); if (!L_29) { goto IL_00ae; } } { bool* L_30 = ___2_isDaylightSavings; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___0_time; int32_t L_32 = V_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_33 = ___1_zone; NullCheck(L_33); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = L_33->____baseUtcOffset_4; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_35 = V_3; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_36 = V_2; bool* L_37 = ___3_isAmbiguousLocalDst; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_38 = ___1_zone; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_39; L_39 = TimeZoneInfo_GetIsDaylightSavingsFromUtc_m6EDDB4065B837BA4C64E6BD1FEBE42498539980D(L_31, L_32, L_34, L_35, L_36, L_37, L_38, NULL); *((int8_t*)L_30) = (int8_t)L_39; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_0; bool* L_41 = ___2_isDaylightSavings; int32_t L_42 = *((uint8_t*)L_41); G_B8_0 = L_40; if (L_42) { G_B9_0 = L_40; goto IL_00a2; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B10_0 = L_43; G_B10_1 = G_B8_0; goto IL_00a8; } IL_00a2: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_44 = V_3; NullCheck(L_44); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_45; L_45 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_44, NULL); G_B10_0 = L_45; G_B10_1 = G_B9_0; } IL_00a8: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_46; L_46 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(G_B10_1, G_B10_0, NULL); V_0 = L_46; } IL_00ae: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47 = V_0; return L_47; } } // System.DateTime System.TimeZoneInfo::TransitionTimeToDateTime(System.Int32,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TransitionTimeToDateTime_mFA9EC26BD7A879068D5D09551A5286C907C20250 (int32_t ___0_year, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___1_transitionTime, 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; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); 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 G_B3_0 = 0; int32_t G_B3_1 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B3_2 = NULL; int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B2_2 = NULL; int32_t G_B4_0 = 0; int32_t G_B4_1 = 0; int32_t G_B4_2 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B4_3 = NULL; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0; L_0 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&___1_transitionTime), NULL); V_1 = L_0; bool L_1; L_1 = TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline((&___1_transitionTime), NULL); if (!L_1) { goto IL_0063; } } { int32_t L_2 = ___0_year; int32_t L_3; L_3 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___1_transitionTime), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_4; L_4 = DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977(L_2, L_3, NULL); V_2 = L_4; int32_t L_5 = ___0_year; int32_t L_6; L_6 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___1_transitionTime), NULL); int32_t L_7 = V_2; int32_t L_8; L_8 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&___1_transitionTime), NULL); G_B2_0 = L_6; G_B2_1 = L_5; G_B2_2 = (&V_0); if ((((int32_t)L_7) < ((int32_t)L_8))) { G_B3_0 = L_6; G_B3_1 = L_5; G_B3_2 = (&V_0); goto IL_003c; } } { int32_t L_9; L_9 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&___1_transitionTime), NULL); G_B4_0 = L_9; G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; G_B4_3 = G_B2_2; goto IL_003d; } IL_003c: { int32_t L_10 = V_2; G_B4_0 = L_10; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; G_B4_3 = G_B3_2; } IL_003d: { int32_t L_11; L_11 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); int32_t L_12; L_12 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); int32_t L_13; L_13 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); int32_t L_14; L_14 = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878((&V_1), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201(G_B4_3, G_B4_2, G_B4_1, G_B4_0, L_11, L_12, L_13, L_14, NULL); goto IL_0142; } IL_0063: { int32_t L_15; L_15 = TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline((&___1_transitionTime), NULL); if ((((int32_t)L_15) > ((int32_t)4))) { goto IL_00d9; } } { int32_t L_16 = ___0_year; int32_t L_17; L_17 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___1_transitionTime), NULL); int32_t L_18; L_18 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); int32_t L_19; L_19 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); int32_t L_20; L_20 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); int32_t L_21; L_21 = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878((&V_1), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_0), L_16, L_17, 1, L_18, L_19, L_20, L_21, NULL); int32_t L_22; L_22 = DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68((&V_0), NULL); V_3 = L_22; int32_t L_23; L_23 = TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline((&___1_transitionTime), NULL); int32_t L_24 = V_3; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, L_24)); int32_t L_25 = V_4; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_00b7; } } { int32_t L_26 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_26, 7)); } IL_00b7: { int32_t L_27 = V_4; int32_t L_28; L_28 = TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline((&___1_transitionTime), NULL); V_4 = ((int32_t)il2cpp_codegen_add(L_27, ((int32_t)il2cpp_codegen_multiply(7, ((int32_t)il2cpp_codegen_subtract(L_28, 1)))))); int32_t L_29 = V_4; if ((((int32_t)L_29) <= ((int32_t)0))) { goto IL_0142; } } { int32_t L_30 = V_4; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31; L_31 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_0), ((double)L_30), NULL); V_0 = L_31; goto IL_0142; } IL_00d9: { int32_t L_32 = ___0_year; int32_t L_33; L_33 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___1_transitionTime), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_34; L_34 = DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977(L_32, L_33, NULL); V_5 = L_34; int32_t L_35 = ___0_year; int32_t L_36; L_36 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___1_transitionTime), NULL); int32_t L_37 = V_5; int32_t L_38; L_38 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); int32_t L_39; L_39 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); int32_t L_40; L_40 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); int32_t L_41; L_41 = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878((&V_1), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_0), L_35, L_36, L_37, L_38, L_39, L_40, L_41, NULL); int32_t L_42; L_42 = DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68((&V_0), NULL); int32_t L_43; L_43 = TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline((&___1_transitionTime), NULL); V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)L_43)); int32_t L_44 = V_6; if ((((int32_t)L_44) >= ((int32_t)0))) { goto IL_0131; } } { int32_t L_45 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_45, 7)); } IL_0131: { int32_t L_46 = V_6; if ((((int32_t)L_46) <= ((int32_t)0))) { goto IL_0142; } } { int32_t L_47 = V_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48; L_48 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_0), ((double)((-L_47))), NULL); V_0 = L_48; } IL_0142: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49 = V_0; return L_49; } } // System.Void System.TimeZoneInfo::ValidateTimeZoneInfo(System.String,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule[],System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189 (String_t* ___0_id, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_baseUtcOffset, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___2_adjustmentRules, bool* ___3_adjustmentRulesSupportDst, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_0 = NULL; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_1 = NULL; int32_t V_2 = 0; { String_t* L_0 = ___0_id; 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*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_id; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (L_3) { goto IL_002c; } } { String_t* L_4 = ___0_id; String_t* L_5; L_5 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD80BD0A851B9B4C3B7389277DE499F6B156E3F9F)), L_4, NULL); 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_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_002c: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = ___1_baseUtcOffset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_8; L_8 = TimeZoneInfo_UtcOffsetOutOfRange_mBBBB62F03290525D1570CC6BD6E27F2E1CD985D9(L_7, NULL); if (!L_8) { goto IL_0044; } } { 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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57A11AA8D8FC7CF3B0620CBC3C7E0CCA55D62E09)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral74D560302B70C9D57AC7C2692A505F648FD1B1A4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_0044: { int64_t L_10; L_10 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___1_baseUtcOffset), NULL); if (!((int64_t)(L_10%((int64_t)((int32_t)600000000))))) { goto IL_0064; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_11); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC093A43C681B135B2CCBFD21AF1C61BC84B52631)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57A11AA8D8FC7CF3B0620CBC3C7E0CCA55D62E09)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_0064: { bool* L_12 = ___3_adjustmentRulesSupportDst; *((int8_t*)L_12) = (int8_t)0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_13 = ___2_adjustmentRules; if (!L_13) { goto IL_00cc; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_14 = ___2_adjustmentRules; NullCheck(L_14); if (!(((RuntimeArray*)L_14)->max_length)) { goto IL_00cc; } } { bool* L_15 = ___3_adjustmentRulesSupportDst; *((int8_t*)L_15) = (int8_t)1; V_0 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; V_1 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; V_2 = 0; goto IL_00c6; } IL_0079: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = V_1; V_0 = L_16; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = ___2_adjustmentRules; int32_t L_18 = V_2; NullCheck(L_17); int32_t L_19 = L_18; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_20 = (L_17)->GetAt(static_cast(L_19)); V_1 = L_20; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_21 = V_1; if (L_21) { goto IL_008d; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_22 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_22); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA2E34A7DAEE39E18F61A4200A3E455B5B0924DC1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_008d: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_23 = ___1_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_25; L_25 = TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD(L_23, L_24, NULL); if (L_25) { goto IL_00a1; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_26 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_26); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral300B73ED5344F3E06BA53DFEA13CECB98D33880A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_00a1: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_27 = V_0; if (!L_27) { goto IL_00c2; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = V_1; NullCheck(L_28); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29; L_29 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_28, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_30 = V_0; NullCheck(L_30); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31; L_31 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_30, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8(L_29, L_31, NULL); if (!L_32) { goto IL_00c2; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_33 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_33); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_33, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB6FCDFEE719933C778C60D472C00101F05CD7A79)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m40B2959B3E40189643357A9BEA3194D37CEA9189_RuntimeMethod_var))); } IL_00c2: { int32_t L_34 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_34, 1)); } IL_00c6: { int32_t L_35 = V_2; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_36 = ___2_adjustmentRules; NullCheck(L_36); if ((((int32_t)L_35) < ((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length))))) { goto IL_0079; } } IL_00cc: { return; } } // System.Boolean System.TimeZoneInfo::UtcOffsetOutOfRange(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_UtcOffsetOutOfRange_mBBBB62F03290525D1570CC6BD6E27F2E1CD985D9 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_offset, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_offset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_2; L_2 = TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF(L_0, L_1, NULL); if (L_2) { goto IL_0019; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ___0_offset; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_5; L_5 = TimeSpan_op_GreaterThan_m346676C36494E3CD2560A604996F88CEC3D845C0(L_3, L_4, NULL); return L_5; } IL_0019: { return (bool)1; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m4A0A221EAF67A47B10CB98369885098FA84E6F67 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_adjustmentRule, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B2_0; memset((&G_B2_0), 0, sizeof(G_B2_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B1_0; memset((&G_B1_0), 0, sizeof(G_B1_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B3_1; memset((&G_B3_1), 0, sizeof(G_B3_1)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___1_adjustmentRule; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_0, L_2, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___1_adjustmentRule; NullCheck(L_4); bool L_5; L_5 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_4, NULL); G_B1_0 = L_3; if (L_5) { G_B2_0 = L_3; goto IL_001b; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B3_0 = L_6; G_B3_1 = G_B1_0; goto IL_0021; } IL_001b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = ___1_adjustmentRule; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_7, NULL); G_B3_0 = L_8; G_B3_1 = G_B2_0; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(G_B3_1, G_B3_0, NULL); return L_9; } } // System.Boolean System.TimeZoneInfo::IsValidAdjustmentRuleOffest(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsValidAdjustmentRuleOffest_mE6CEA279E31963DD1D5828A307DC496938F096FD (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_adjustmentRule, 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; } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___1_adjustmentRule; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetUtcOffset_m4A0A221EAF67A47B10CB98369885098FA84E6F67(L_0, L_1, NULL); bool L_3; L_3 = TimeZoneInfo_UtcOffsetOutOfRange_mBBBB62F03290525D1570CC6BD6E27F2E1CD985D9(L_2, NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } } // System.Void System.TimeZoneInfo::NormalizeAdjustmentRuleOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_NormalizeAdjustmentRuleOffset_mC4F4399C2DCDAAFF3E0AB3D159BC2048841E2203 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_baseUtcOffset, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** ___1_adjustmentRule, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1; memset((&V_1), 0, sizeof(V_1)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_baseUtcOffset; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_1 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_1); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffset_m4A0A221EAF67A47B10CB98369885098FA84E6F67(L_0, L_2, NULL); V_0 = L_3; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; V_1 = L_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; bool L_7; L_7 = TimeSpan_op_GreaterThan_m346676C36494E3CD2560A604996F88CEC3D845C0(L_5, L_6, NULL); if (!L_7) { goto IL_002a; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = TimeSpan_op_Subtraction_m56EC225AACB5E7C91E29A2ECB634B658A63289F7(L_8, L_9, NULL); V_1 = L_10; goto IL_0043; } IL_002a: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_13; L_13 = TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF(L_11, L_12, NULL); if (!L_13) { goto IL_0043; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16; L_16 = TimeSpan_op_Subtraction_m56EC225AACB5E7C91E29A2ECB634B658A63289F7(L_14, L_15, NULL); V_1 = L_16; } IL_0043: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_19; L_19 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_17, L_18, NULL); if (!L_19) { goto IL_008e; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_20 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_21 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_21); NullCheck(L_22); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23; L_23 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_22, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_24 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_24); NullCheck(L_25); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26; L_26 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_25, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_27 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_27); NullCheck(L_28); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29; L_29 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_28, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_30 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_31 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_30); NullCheck(L_31); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_32; L_32 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(L_31, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_33 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_34 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_33); NullCheck(L_34); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_35; L_35 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(L_34, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_36 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_37 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_36); NullCheck(L_37); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38; L_38 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_37, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_39 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40; L_40 = TimeSpan_op_Addition_mD8B0E0E30595D82C7336CCCA411FE384441DE1A6(L_38, L_39, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_41 = ___1_adjustmentRule; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_41); NullCheck(L_42); bool L_43; L_43 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_42, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_44; L_44 = AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8(L_23, L_26, L_29, L_32, L_35, L_40, L_43, NULL); *((RuntimeObject**)L_20) = (RuntimeObject*)L_44; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_44); } IL_008e: { return; } } // System.String System.TimeZoneInfo::GetTimeZoneDirectoryUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectoryUnity_mC243B810BBC87D97D387CB623C7B3ECE3DB6ED32 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } // System.Collections.Generic.List`1 System.TimeZoneInfo::CreateAdjustmentRule(System.Int32,System.Int64[]&,System.String[]&,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* TimeZoneInfo_CreateAdjustmentRule_mD15D002D8315CE9B06D046951D0D4BDF70510FB3 (int32_t ___0_year, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___1_data, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___2_names, String_t* ___3_standardNameCurrentYear, String_t* ___4_daylightNameCurrentYear, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_0 = NULL; bool V_1 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_7; memset((&V_7), 0, sizeof(V_7)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_8; memset((&V_8), 0, sizeof(V_8)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_9; memset((&V_9), 0, sizeof(V_9)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_10 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_11; memset((&V_11), 0, sizeof(V_11)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_12; memset((&V_12), 0, sizeof(V_12)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_13; memset((&V_13), 0, sizeof(V_13)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_14 = NULL; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_15; memset((&V_15), 0, sizeof(V_15)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_16; memset((&V_16), 0, sizeof(V_16)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_17 = NULL; { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_0 = (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*)il2cpp_codegen_object_new(List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); NullCheck(L_0); List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A(L_0, List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); V_0 = L_0; int32_t L_1 = ___0_year; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_2 = ___1_data; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_3 = ___2_names; bool L_4; L_4 = CurrentSystemTimeZone_GetTimeZoneData_mFC1D68546EAF36314223F5227C131ECAEA1F2D16(L_1, L_2, L_3, (&V_1), NULL); if (L_4) { goto IL_0014; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_5 = V_0; return L_5; } IL_0014: { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_6 = ___1_data; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_7 = *((Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**)L_6); NullCheck(L_7); int32_t L_8 = 0; int64_t L_9 = (L_7)->GetAt(static_cast(L_8)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&V_2), L_9, NULL); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_10 = ___1_data; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_11 = *((Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**)L_10); NullCheck(L_11); int32_t L_12 = 1; int64_t L_13 = (L_11)->GetAt(static_cast(L_12)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&V_3), L_13, NULL); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_14 = ___1_data; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_15 = *((Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**)L_14); NullCheck(L_15); int32_t L_16 = 3; int64_t L_17 = (L_15)->GetAt(static_cast(L_16)); TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&V_4), L_17, NULL); String_t* L_18 = ___3_standardNameCurrentYear; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_19 = ___2_names; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = *((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248**)L_19); NullCheck(L_20); int32_t L_21 = 0; String_t* L_22 = (L_20)->GetAt(static_cast(L_21)); bool L_23; L_23 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_18, L_22, NULL); if (!L_23) { goto IL_0043; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_24 = V_0; return L_24; } IL_0043: { String_t* L_25 = ___4_daylightNameCurrentYear; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_26 = ___2_names; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = *((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248**)L_26); NullCheck(L_27); int32_t L_28 = 1; String_t* L_29 = (L_27)->GetAt(static_cast(L_28)); bool L_30; L_30 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_25, L_29, NULL); if (!L_30) { goto IL_0052; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_31 = V_0; return L_31; } IL_0052: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = V_3; bool L_33; L_33 = DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B((&V_2), L_32, NULL); if (!L_33) { goto IL_005e; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_34 = V_0; return L_34; } IL_005e: { int32_t L_35 = ___0_year; DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_5), L_35, 1, 1, 0, 0, 0, 0, NULL); int32_t L_36 = ___0_year; int32_t L_37 = ___0_year; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_38; L_38 = DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977(L_37, ((int32_t)12), NULL); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&V_6), L_36, ((int32_t)12), L_38, NULL); int32_t L_39 = ___0_year; int32_t L_40 = ___0_year; int32_t L_41; L_41 = DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977(L_40, ((int32_t)12), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_7), L_39, ((int32_t)12), L_41, ((int32_t)23), ((int32_t)59), ((int32_t)59), ((int32_t)999), NULL); bool L_42 = V_1; if (L_42) { goto IL_0116; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43; memset((&L_43), 0, sizeof(L_43)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_43), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_43; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44; L_44 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45; L_45 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_44, NULL); int32_t L_46; L_46 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_47; L_47 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_48; L_48 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_45, L_46, L_47, NULL); V_8 = L_48; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49; memset((&L_49), 0, sizeof(L_49)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_49), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_49; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_50; L_50 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_3), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51; L_51 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_50, NULL); int32_t L_52; L_52 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_3), NULL); int32_t L_53; L_53 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_3), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_54; L_54 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_51, L_52, L_53, NULL); V_9 = L_54; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_55 = V_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_56 = V_6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_57 = V_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_58 = V_8; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_59 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_60; L_60 = AdjustmentRule_CreateAdjustmentRule_m42A40EDEF286C571A354680FD4B8D1F1F59EE606(L_55, L_56, L_57, L_58, L_59, NULL); V_10 = L_60; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_61 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_62 = V_10; NullCheck(L_61); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_61, L_62, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0228; } IL_0116: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_63; memset((&L_63), 0, sizeof(L_63)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_63), 1, 1, 1, /*hidden argument*/NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_64; L_64 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_63, 1, 1, NULL); V_12 = L_64; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_65; memset((&L_65), 0, sizeof(L_65)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_65), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_65; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_66; L_66 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_67; L_67 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_66, NULL); int32_t L_68; L_68 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_69; L_69 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_70; L_70 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_67, L_68, L_69, NULL); V_13 = L_70; int32_t L_71 = ___0_year; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_72; memset((&L_72), 0, sizeof(L_72)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_72), L_71, 1, 1, /*hidden argument*/NULL); int32_t L_73; L_73 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); int32_t L_74; L_74 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_75; L_75 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_76; memset((&L_76), 0, sizeof(L_76)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_76), L_73, L_74, L_75, /*hidden argument*/NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_77 = V_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_78 = V_12; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_79 = V_13; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_80; L_80 = AdjustmentRule_CreateAdjustmentRule_m42A40EDEF286C571A354680FD4B8D1F1F59EE606(L_72, L_76, L_77, L_78, L_79, NULL); V_14 = L_80; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_81 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_82 = V_14; NullCheck(L_81); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_81, L_82, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_83; memset((&L_83), 0, sizeof(L_83)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_83), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_83; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_84; L_84 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_3), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_85; L_85 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_84, NULL); int32_t L_86; L_86 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_3), NULL); int32_t L_87; L_87 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_3), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_88; L_88 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_85, L_86, L_87, NULL); V_15 = L_88; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_89; memset((&L_89), 0, sizeof(L_89)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_89), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_89; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_90; L_90 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_7), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_91; L_91 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_90, NULL); int32_t L_92; L_92 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_7), NULL); int32_t L_93; L_93 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_7), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_94; L_94 = TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914(L_91, L_92, L_93, NULL); V_16 = L_94; int32_t L_95; L_95 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); int32_t L_96; L_96 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_97; L_97 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_98; memset((&L_98), 0, sizeof(L_98)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_98), L_95, L_96, L_97, /*hidden argument*/NULL); V_11 = L_98; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_99; L_99 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_11), (1.0), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_100 = V_6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_101 = V_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_102 = V_15; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_103 = V_16; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_104; L_104 = AdjustmentRule_CreateAdjustmentRule_m42A40EDEF286C571A354680FD4B8D1F1F59EE606(L_99, L_100, L_101, L_102, L_103, NULL); V_17 = L_104; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_105 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_106 = V_17; NullCheck(L_105); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_105, L_106, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); } IL_0228: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_107 = V_0; return L_107; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateLocalUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateLocalUnity_m2CC27D4772C2E7C6F9180DF0845B3F46C6AFCD12 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BABAAD88AAA5E60D93C31ED61C095184AFF093D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral904E141B4F250943BE820466C5ACAC36DFD71291); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDEF72BF02D7DBDB7455CEDB9985B8D2A87B5FB3); s_Il2CppMethodInitialized = true; } Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* V_0 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL; bool V_2 = false; int32_t V_3 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); Il2CppChar V_5 = 0x0; String_t* V_6 = NULL; String_t* V_7 = NULL; String_t* V_8 = NULL; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_9 = NULL; bool V_10 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_11; memset((&V_11), 0, sizeof(V_11)); int32_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_15 = NULL; int32_t V_16 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_17 = NULL; int32_t G_B5_0 = 0; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* G_B16_0 = NULL; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* G_B16_1 = NULL; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* G_B15_0 = NULL; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* G_B15_1 = NULL; { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0; L_0 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL); V_11 = L_0; int32_t L_1; L_1 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_11), NULL); V_3 = L_1; int32_t L_2 = V_3; bool L_3; L_3 = CurrentSystemTimeZone_GetTimeZoneData_mFC1D68546EAF36314223F5227C131ECAEA1F2D16(L_2, (&V_0), (&V_1), (&V_2), NULL); if (L_3) { goto IL_0028; } } { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_4 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_4); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94175649577A71BF619AB00E3FD4DBB0DF7198CD)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_CreateLocalUnity_m2CC27D4772C2E7C6F9180DF0845B3F46C6AFCD12_RuntimeMethod_var))); } IL_0028: { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_5 = V_0; NullCheck(L_5); int32_t L_6 = 2; int64_t L_7 = (L_5)->GetAt(static_cast(L_6)); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003(L_7, NULL); V_4 = L_8; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = V_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_11; L_11 = TimeSpan_op_GreaterThanOrEqual_m75F60A7DA7C0BB62E4A21E7784E6FFE6D2D73CFE(L_9, L_10, NULL); if (L_11) { goto IL_0044; } } { G_B5_0 = ((int32_t)45); goto IL_0046; } IL_0044: { G_B5_0 = ((int32_t)43); } IL_0046: { V_5 = G_B5_0; String_t* L_12; L_12 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_5), NULL); String_t* L_13; L_13 = TimeSpan_ToString_m5B50613FCD29547F04EAE305B2226CB9F490C432((&V_4), _stringLiteral8BABAAD88AAA5E60D93C31ED61C095184AFF093D, NULL); String_t* L_14; L_14 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(_stringLiteralEDEF72BF02D7DBDB7455CEDB9985B8D2A87B5FB3, L_12, L_13, _stringLiteral904E141B4F250943BE820466C5ACAC36DFD71291, NULL); V_6 = L_14; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = V_1; NullCheck(L_15); int32_t L_16 = 0; String_t* L_17 = (L_15)->GetAt(static_cast(L_16)); V_7 = L_17; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = V_1; NullCheck(L_18); int32_t L_19 = 1; String_t* L_20 = (L_18)->GetAt(static_cast(L_19)); V_8 = L_20; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_21 = (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*)il2cpp_codegen_object_new(List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); NullCheck(L_21); List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A(L_21, List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); V_9 = L_21; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_22 = V_0; NullCheck(L_22); int32_t L_23 = 3; int64_t L_24 = (L_22)->GetAt(static_cast(L_23)); V_10 = (bool)((((int64_t)L_24) == ((int64_t)((int64_t)0)))? 1 : 0); bool L_25 = V_10; if (L_25) { goto IL_012d; } } { V_12 = ((int32_t)1971); V_13 = ((int32_t)2037); int32_t L_26 = V_3; V_14 = L_26; goto IL_00ca; } IL_00a0: { int32_t L_27 = V_14; String_t* L_28 = V_7; String_t* L_29 = V_8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_30; L_30 = TimeZoneInfo_CreateAdjustmentRule_mD15D002D8315CE9B06D046951D0D4BDF70510FB3(L_27, (&V_0), (&V_1), L_28, L_29, NULL); V_15 = L_30; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_31 = V_15; NullCheck(L_31); int32_t L_32; L_32 = List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline(L_31, List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); if ((((int32_t)L_32) <= ((int32_t)0))) { goto IL_00d0; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_33 = V_9; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_34 = V_15; NullCheck(L_33); List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF(L_33, L_34, List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var); int32_t L_35 = V_14; V_14 = ((int32_t)il2cpp_codegen_add(L_35, 1)); } IL_00ca: { int32_t L_36 = V_14; int32_t L_37 = V_13; if ((((int32_t)L_36) <= ((int32_t)L_37))) { goto IL_00a0; } } IL_00d0: { int32_t L_38 = V_3; V_16 = ((int32_t)il2cpp_codegen_subtract(L_38, 1)); goto IL_0101; } IL_00d7: { int32_t L_39 = V_16; String_t* L_40 = V_7; String_t* L_41 = V_8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_42; L_42 = TimeZoneInfo_CreateAdjustmentRule_mD15D002D8315CE9B06D046951D0D4BDF70510FB3(L_39, (&V_0), (&V_1), L_40, L_41, NULL); V_17 = L_42; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_43 = V_17; NullCheck(L_43); int32_t L_44; L_44 = List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline(L_43, List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); if ((((int32_t)L_44) <= ((int32_t)0))) { goto IL_0107; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_45 = V_9; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_46 = V_17; NullCheck(L_45); List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF(L_45, L_46, List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var); int32_t L_47 = V_16; V_16 = ((int32_t)il2cpp_codegen_subtract(L_47, 1)); } IL_0101: { int32_t L_48 = V_16; int32_t L_49 = V_12; if ((((int32_t)L_48) >= ((int32_t)L_49))) { goto IL_00d7; } } IL_0107: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_50 = V_9; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_51 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__161_0_6; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_52 = L_51; G_B15_0 = L_52; G_B15_1 = L_50; if (L_52) { G_B16_0 = L_52; G_B16_1 = L_50; goto IL_0128; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_53 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_54 = (Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301*)il2cpp_codegen_object_new(Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301_il2cpp_TypeInfo_var); NullCheck(L_54); Comparison_1__ctor_m7A877570D0AD7F3AAC5D08B1E242799C783C6323(L_54, L_53, (intptr_t)((void*)U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909_RuntimeMethod_var), NULL); Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_55 = L_54; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__161_0_6 = L_55; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__161_0_6), (void*)L_55); G_B16_0 = L_55; G_B16_1 = G_B15_1; } IL_0128: { NullCheck(G_B16_1); List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C(G_B16_1, G_B16_0, List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C_RuntimeMethod_var); } IL_012d: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_56 = V_4; String_t* L_57 = V_6; String_t* L_58 = V_7; String_t* L_59 = V_8; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_60 = V_9; NullCheck(L_60); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_61; L_61 = List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260(L_60, List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); bool L_62 = V_10; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_63; L_63 = TimeZoneInfo_CreateCustomTimeZone_m1161C2D45FC8415C5E63E349C6B2D0CC08CF8F56(_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101, L_56, L_57, L_58, L_59, L_61, L_62, NULL); return L_63; } } // System.Void System.TimeZoneInfo::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__cctor_m8EBBB1CA172143D40424AFA72C71B9191E4C9ED0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = TimeZoneInfo_CreateCustomTimeZone_m1079E3836F86BC963EE6B2651F76E968E85D03C2(_stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649, L_0, _stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649, _stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649, NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7), (void*)L_1); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF*)il2cpp_codegen_object_new(CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF_il2cpp_TypeInfo_var); NullCheck(L_2); CachedData__ctor_m0B9484D26A9B27A4B34444C869F3F29F1908B6D4(L_2, NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8 = L_2; Il2CppCodeGenWriteBarrier((void**)(&((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8), (void*)L_2); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; memset((&L_3), 0, sizeof(L_3)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_3), ((int32_t)9999), ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_maxDateOnly_9 = L_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; memset((&L_4), 0, sizeof(L_4)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_4), 1, 1, 2, /*hidden argument*/NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_minDateOnly_10 = L_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = TimeSpan_FromHours_mBF56E93F18A822E3EA1C593E8151F154709AC6BA((14.0), NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11 = L_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = TimeSpan_op_UnaryNegation_mBD0F86C461C2CE1C9EAB62F2E41D28471CDE2493(L_6, NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12 = L_7; return; } } // System.Void System.TimeZoneInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01_RuntimeMethod_var); 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 // Conversion methods for marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_pinvoke(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke& marshaled) { marshaled.___UtcOffset_0 = unmarshaled.___UtcOffset_0; marshaled.___IsDst_1 = static_cast(unmarshaled.___IsDst_1); marshaled.___AbbreviationIndex_2 = unmarshaled.___AbbreviationIndex_2; } IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_pinvoke_back(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke& marshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled) { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A unmarshaledUtcOffset_temp_0; memset((&unmarshaledUtcOffset_temp_0), 0, sizeof(unmarshaledUtcOffset_temp_0)); unmarshaledUtcOffset_temp_0 = marshaled.___UtcOffset_0; unmarshaled.___UtcOffset_0 = unmarshaledUtcOffset_temp_0; bool unmarshaledIsDst_temp_1 = false; unmarshaledIsDst_temp_1 = static_cast(marshaled.___IsDst_1); unmarshaled.___IsDst_1 = unmarshaledIsDst_temp_1; uint8_t unmarshaledAbbreviationIndex_temp_2 = 0x0; unmarshaledAbbreviationIndex_temp_2 = marshaled.___AbbreviationIndex_2; unmarshaled.___AbbreviationIndex_2 = unmarshaledAbbreviationIndex_temp_2; } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_pinvoke_cleanup(TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_com(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com& marshaled) { marshaled.___UtcOffset_0 = unmarshaled.___UtcOffset_0; marshaled.___IsDst_1 = static_cast(unmarshaled.___IsDst_1); marshaled.___AbbreviationIndex_2 = unmarshaled.___AbbreviationIndex_2; } IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_com_back(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com& marshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled) { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A unmarshaledUtcOffset_temp_0; memset((&unmarshaledUtcOffset_temp_0), 0, sizeof(unmarshaledUtcOffset_temp_0)); unmarshaledUtcOffset_temp_0 = marshaled.___UtcOffset_0; unmarshaled.___UtcOffset_0 = unmarshaledUtcOffset_temp_0; bool unmarshaledIsDst_temp_1 = false; unmarshaledIsDst_temp_1 = static_cast(marshaled.___IsDst_1); unmarshaled.___IsDst_1 = unmarshaledIsDst_temp_1; uint8_t unmarshaledAbbreviationIndex_temp_2 = 0x0; unmarshaledAbbreviationIndex_temp_2 = marshaled.___AbbreviationIndex_2; unmarshaled.___AbbreviationIndex_2 = unmarshaledAbbreviationIndex_temp_2; } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_com_cleanup(TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com& marshaled) { } // System.Void System.TimeZoneInfo/TZifType::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179 (TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_index, 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; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data; if (!L_0) { goto IL_000b; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_data; NullCheck(L_1); int32_t L_2 = ___1_index; if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)((int32_t)il2cpp_codegen_add(L_2, 6))))) { goto IL_001b; } } IL_000b: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B9E3B5807482B6C32D7111C75D4826AEFC0F71F)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179_RuntimeMethod_var))); } IL_001b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_data; int32_t L_5 = ___1_index; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_6; L_6 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_4, L_5, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; memset((&L_7), 0, sizeof(L_7)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_7), 0, 0, L_6, /*hidden argument*/NULL); __this->___UtcOffset_0 = L_7; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___0_data; int32_t L_9 = ___1_index; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add(L_9, 4)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); __this->___IsDst_1 = (bool)((!(((uint32_t)L_11) <= ((uint32_t)0)))? 1 : 0); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_data; int32_t L_13 = ___1_index; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add(L_13, 5)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); __this->___AbbreviationIndex_2 = L_15; return; } } IL2CPP_EXTERN_C void TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179_AdjustorThunk (RuntimeObject* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_index, const RuntimeMethod* method) { TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179(_thisAdjusted, ___0_data, ___1_index, 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 System.TimeZoneInfo/TZifHead::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A (TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_index, 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; } uint8_t V_0 = 0x0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B9_0 = NULL; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B6_0 = NULL; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B8_0 = NULL; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B7_0 = NULL; int32_t G_B10_0 = 0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B10_1 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data; if (!L_0) { goto IL_000a; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_data; NullCheck(L_1); if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)((int32_t)44)))) { goto IL_001a; } } IL_000a: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB6DE8EF43C1BC546AA303BA65584166F1FB051BE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_RuntimeMethod_var))); } IL_001a: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_data; int32_t L_4 = ___1_index; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_5; L_5 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_3, L_4, NULL); __this->___Magic_0 = L_5; uint32_t L_6 = __this->___Magic_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)1415211366)))) { goto IL_0044; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral81FE848029299D2E16A8CD1E3C9267FBB8445B4B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_RuntimeMethod_var))); } IL_0044: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___0_data; int32_t L_9 = ___1_index; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add(L_9, 4)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); V_0 = L_11; uint8_t L_12 = V_0; G_B6_0 = __this; if ((((int32_t)L_12) == ((int32_t)((int32_t)50)))) { G_B9_0 = __this; goto IL_005b; } } { uint8_t L_13 = V_0; G_B7_0 = G_B6_0; if ((((int32_t)L_13) == ((int32_t)((int32_t)51)))) { G_B8_0 = G_B6_0; goto IL_0058; } } { G_B10_0 = 0; G_B10_1 = G_B7_0; goto IL_005c; } IL_0058: { G_B10_0 = 2; G_B10_1 = G_B8_0; goto IL_005c; } IL_005b: { G_B10_0 = 1; G_B10_1 = G_B9_0; } IL_005c: { G_B10_1->___Version_1 = G_B10_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = ___0_data; int32_t L_15 = ___1_index; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_16; L_16 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_14, ((int32_t)il2cpp_codegen_add(L_15, ((int32_t)20))), NULL); __this->___IsGmtCount_2 = L_16; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ___0_data; int32_t L_18 = ___1_index; int32_t L_19; L_19 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_17, ((int32_t)il2cpp_codegen_add(L_18, ((int32_t)24))), NULL); __this->___IsStdCount_3 = L_19; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ___0_data; int32_t L_21 = ___1_index; int32_t L_22; L_22 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_20, ((int32_t)il2cpp_codegen_add(L_21, ((int32_t)28))), NULL); __this->___LeapCount_4 = L_22; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = ___0_data; int32_t L_24 = ___1_index; int32_t L_25; L_25 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_23, ((int32_t)il2cpp_codegen_add(L_24, ((int32_t)32))), NULL); __this->___TimeCount_5 = L_25; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = ___0_data; int32_t L_27 = ___1_index; int32_t L_28; L_28 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_26, ((int32_t)il2cpp_codegen_add(L_27, ((int32_t)36))), NULL); __this->___TypeCount_6 = L_28; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ___0_data; int32_t L_30 = ___1_index; int32_t L_31; L_31 = TimeZoneInfo_TZif_ToInt32_mEF1B3AC603826B55846122DC53095F2A2B04704F(L_29, ((int32_t)il2cpp_codegen_add(L_30, ((int32_t)40))), NULL); __this->___CharCount_7 = L_31; return; } } IL2CPP_EXTERN_C void TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_AdjustorThunk (RuntimeObject* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_index, const RuntimeMethod* method) { TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A(_thisAdjusted, ___0_data, ___1_index, 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.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateStart_0; return L_0; } } // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateEnd_1; return L_0; } } // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_DaylightDelta() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____daylightDelta_2; return L_0; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionStart_3; return L_0; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionEnd_4; return L_0; } } // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_BaseUtcOffsetDelta() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffsetDelta_5; return L_0; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_NoDaylightTransitions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { bool L_0 = __this->____noDaylightTransitions_6; return L_0; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_HasDaylightSaving() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0; L_0 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(__this, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_2; L_2 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_0, L_1, NULL); if (L_2) { goto IL_0081; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; L_3 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = V_0; bool L_5; L_5 = TransitionTime_op_Inequality_mF8FC2CB80F2B4FFACF9CFEB6398B4A2D23BA2336(L_3, L_4, NULL); if (!L_5) { goto IL_0042; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_6; L_6 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; L_7 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; bool L_9; L_9 = DateTime_op_Inequality_mFB20C42AFEA4EEDE607352300499C54680797974(L_7, L_8, NULL); if (L_9) { goto IL_0081; } } IL_0042: { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_10; L_10 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11 = V_0; bool L_12; L_12 = TransitionTime_op_Inequality_mF8FC2CB80F2B4FFACF9CFEB6398B4A2D23BA2336(L_10, L_11, NULL); if (!L_12) { goto IL_007f; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_13; L_13 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_13; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14; L_14 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), (1.0), NULL); bool L_16; L_16 = DateTime_op_Inequality_mFB20C42AFEA4EEDE607352300499C54680797974(L_14, L_15, NULL); return L_16; } IL_007f: { return (bool)0; } IL_0081: { return (bool)1; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::Equals(System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_Equals_m5DF61E016305C51AC3468B26C32BDFD68E8C1CAD (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_other, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___0_other; if (!L_0) { goto IL_0074; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = __this->____dateStart_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___0_other; NullCheck(L_2); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = L_2->____dateStart_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_4; L_4 = DateTime_op_Equality_m568A6320E27F3F7708C77BF8751925C8775DD921(L_1, L_3, NULL); if (!L_4) { goto IL_0074; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = __this->____dateEnd_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = ___0_other; NullCheck(L_6); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = L_6->____dateEnd_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_8; L_8 = DateTime_op_Equality_m568A6320E27F3F7708C77BF8751925C8775DD921(L_5, L_7, NULL); if (!L_8) { goto IL_0074; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = __this->____daylightDelta_2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = ___0_other; NullCheck(L_10); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = L_10->____daylightDelta_2; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_12; L_12 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_9, L_11, NULL); if (!L_12) { goto IL_0074; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_13 = __this->____baseUtcOffsetDelta_5; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14 = ___0_other; NullCheck(L_14); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15 = L_14->____baseUtcOffsetDelta_5; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_16; L_16 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_13, L_15, NULL); if (!L_16) { goto IL_0074; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* L_17 = (&__this->____daylightTransitionEnd_4); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = ___0_other; NullCheck(L_18); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_19 = L_18->____daylightTransitionEnd_4; bool L_20; L_20 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(L_17, L_19, NULL); if (!L_20) { goto IL_0074; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* L_21 = (&__this->____daylightTransitionStart_3); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = ___0_other; NullCheck(L_22); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_23 = L_22->____daylightTransitionStart_3; bool L_24; L_24 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(L_21, L_23, NULL); return L_24; } IL_0074: { return (bool)0; } } // System.Int32 System.TimeZoneInfo/AdjustmentRule::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AdjustmentRule_GetHashCode_mD8C22D580DDE7E6FF60B4DD8508FCF515F5458AC (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_0 = (&__this->____dateStart_0); int32_t L_1; L_1 = DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99(L_0, NULL); return L_1; } } // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___5_baseUtcOffsetDelta, bool ___6_noDaylightTransitions, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateStart; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___1_dateEnd; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___2_daylightDelta; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = ___3_daylightTransitionStart; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___4_daylightTransitionEnd; bool L_5 = ___6_noDaylightTransitions; AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B(L_0, L_1, L_2, L_3, L_4, L_5, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ___0_dateStart; __this->____dateStart_0 = L_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = ___1_dateEnd; __this->____dateEnd_1 = L_7; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___2_daylightDelta; __this->____daylightDelta_2 = L_8; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_9 = ___3_daylightTransitionStart; __this->____daylightTransitionStart_3 = L_9; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_10 = ___4_daylightTransitionEnd; __this->____daylightTransitionEnd_4 = L_10; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ___5_baseUtcOffsetDelta; __this->____baseUtcOffsetDelta_5 = L_11; bool L_12 = ___6_noDaylightTransitions; __this->____noDaylightTransitions_6 = L_12; return; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_m42A40EDEF286C571A354680FD4B8D1F1F59EE606 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateStart; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___1_dateEnd; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___2_daylightDelta; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = ___3_daylightTransitionStart; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___4_daylightTransitionEnd; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)il2cpp_codegen_object_new(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); NullCheck(L_6); AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F(L_6, L_0, L_1, L_2, L_3, L_4, L_5, (bool)0, NULL); return L_6; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_m976CA3BF6AB913496821EBFFCBDBACCD8C20DBE8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___5_baseUtcOffsetDelta, bool ___6_noDaylightTransitions, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateStart; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___1_dateEnd; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___2_daylightDelta; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = ___3_daylightTransitionStart; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___4_daylightTransitionEnd; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ___5_baseUtcOffsetDelta; bool L_6 = ___6_noDaylightTransitions; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)il2cpp_codegen_object_new(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); NullCheck(L_7); AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F(L_7, L_0, L_1, L_2, L_3, L_4, L_5, L_6, NULL); return L_7; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsStartDateMarkerForBeginningOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); { bool L_0; L_0 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(__this, NULL); if (L_0) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_1; L_1 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_1; int32_t L_2; L_2 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&V_0), NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; L_3 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_3; int32_t L_4; L_4 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&V_0), NULL); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_5; L_5 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6; L_6 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_6; int32_t L_7; L_7 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); if (L_7) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_8; L_8 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_9; int32_t L_10; L_10 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); if (L_10) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11; L_11 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_11; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; L_12 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_12; int32_t L_13; L_13 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); if (L_13) { goto IL_008e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&__this->____dateStart_0); int32_t L_15; L_15 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_14, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = (&__this->____dateEnd_1); int32_t L_17; L_17 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_16, NULL); return (bool)((((int32_t)L_15) == ((int32_t)L_17))? 1 : 0); } IL_008e: { return (bool)0; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsEndDateMarkerForEndOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); { bool L_0; L_0 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(__this, NULL); if (L_0) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_1; L_1 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_1; int32_t L_2; L_2 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&V_0), NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; L_3 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_3; int32_t L_4; L_4 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&V_0), NULL); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_5; L_5 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6; L_6 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_6; int32_t L_7; L_7 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); if (L_7) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_8; L_8 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_9; int32_t L_10; L_10 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); if (L_10) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11; L_11 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_11; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; L_12 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_12; int32_t L_13; L_13 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); if (L_13) { goto IL_008e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&__this->____dateStart_0); int32_t L_15; L_15 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_14, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = (&__this->____dateEnd_1); int32_t L_17; L_17 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_16, NULL); return (bool)((((int32_t)L_15) == ((int32_t)L_17))? 1 : 0); } IL_008e: { return (bool)0; } } // System.Void System.TimeZoneInfo/AdjustmentRule::ValidateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateStart, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateEnd, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_daylightDelta, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___3_daylightTransitionStart, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___4_daylightTransitionEnd, bool ___5_noDaylightTransitions, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateStart), NULL); if (!L_0) { goto IL_0023; } } { int32_t L_1; L_1 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateStart), NULL); if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0023; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01B12D4BB9DCEC213EE52153F25C3475874C454D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_0023: { int32_t L_3; L_3 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___1_dateEnd), NULL); if (!L_3) { goto IL_0046; } } { int32_t L_4; L_4 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___1_dateEnd), NULL); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0046; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01B12D4BB9DCEC213EE52153F25C3475874C454D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral445399A595B24C0202D28AE23969D8FFF38F572A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_0046: { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_6 = ___4_daylightTransitionEnd; bool L_7; L_7 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455((&___3_daylightTransitionStart), L_6, NULL); if (!L_7) { goto IL_0065; } } { bool L_8 = ___5_noDaylightTransitions; if (L_8) { goto IL_0065; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA8C788F462D3BDFF1A2C0A8B053AAA9567571BA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4236146F56D25D2D915B8BCD28F0936D3257EE6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_0065: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = ___0_dateStart; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11 = ___1_dateEnd; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_12; L_12 = DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F(L_10, L_11, NULL); if (!L_12) { goto IL_007e; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_13); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral018504CD3A7D232B591A18D6B7B570DEE8B65BAB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_007e: { double L_14; L_14 = TimeSpan_get_TotalHours_m753DFC812CEC8F9214EF5F9839C5B4A4DB0D2883((&___2_daylightDelta), NULL); if ((((double)L_14) < ((double)(-23.0)))) { goto IL_00a2; } } { double L_15; L_15 = TimeSpan_get_TotalHours_m753DFC812CEC8F9214EF5F9839C5B4A4DB0D2883((&___2_daylightDelta), NULL); if ((!(((double)L_15) > ((double)(14.0))))) { goto IL_00b8; } } IL_00a2: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16 = ___2_daylightDelta; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = L_16; RuntimeObject* L_18 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)), &L_17); ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_19 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_19); ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral97788FC356CCFD978CEEDA2BF269D6954F4D0740)), L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral74D560302B70C9D57AC7C2692A505F648FD1B1A4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_00b8: { int64_t L_20; L_20 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___2_daylightDelta), NULL); if (!((int64_t)(L_20%((int64_t)((int32_t)600000000))))) { goto IL_00d8; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_21 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_21); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC093A43C681B135B2CCBFD21AF1C61BC84B52631)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral97788FC356CCFD978CEEDA2BF269D6954F4D0740)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_00d8: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = ___0_dateStart; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; bool L_24; L_24 = DateTime_op_Inequality_mFB20C42AFEA4EEDE607352300499C54680797974(L_22, L_23, NULL); if (!L_24) { goto IL_0111; } } { int32_t L_25; L_25 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateStart), NULL); if (L_25) { goto IL_0111; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&___0_dateStart), NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_28; L_28 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_26, L_27, NULL); if (!L_28) { goto IL_0111; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_29); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7CB599B22D521F814BCCB6E5B683D86AA12640B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_0111: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ___1_dateEnd; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; bool L_32; L_32 = DateTime_op_Inequality_mFB20C42AFEA4EEDE607352300499C54680797974(L_30, L_31, NULL); if (!L_32) { goto IL_014a; } } { int32_t L_33; L_33 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___1_dateEnd), NULL); if (L_33) { goto IL_014a; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34; L_34 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&___1_dateEnd), NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_36; L_36 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_34, L_35, NULL); if (!L_36) { goto IL_014a; } } { 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_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_37, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7CB599B22D521F814BCCB6E5B683D86AA12640B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral445399A595B24C0202D28AE23969D8FFF38F572A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B_RuntimeMethod_var))); } IL_014a: { return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mB8F32624CFFFCC0C8DBDECAABCA58EC2F8F5AFB9 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method) { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateStart_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = __this->____dateEnd_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = __this->____daylightDelta_2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = __this->____daylightTransitionStart_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = __this->____daylightTransitionEnd_4; bool L_5 = __this->____noDaylightTransitions_6; AdjustmentRule_ValidateAdjustmentRule_mE8DEA349BA0FD45B6F489B6190078BA6248FC95B(L_0, L_1, L_2, L_3, L_4, L_5, NULL); goto IL_0038; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_002b; } throw e; } CATCH_002b: {// begin catch(System.ArgumentException) V_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = V_0; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_7 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_7); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_6, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mB8F32624CFFFCC0C8DBDECAABCA58EC2F8F5AFB9_RuntimeMethod_var))); }// end catch (depth: 1) IL_0038: { return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m764F67E36C8B7FE592310FBCF864FA72251304FF (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m764F67E36C8B7FE592310FBCF864FA72251304FF_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____dateStart_0; NullCheck(L_2); SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_2, _stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = __this->____dateEnd_1; NullCheck(L_4); SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_4, _stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = __this->____daylightDelta_2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = L_7; RuntimeObject* L_9 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_6, _stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11 = __this->____daylightTransitionStart_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_12 = L_11; RuntimeObject* L_13 = Box(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_10, _stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F, L_13, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_15 = __this->____daylightTransitionEnd_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_16 = L_15; RuntimeObject* L_17 = Box(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_14, _stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7, L_17, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___0_info; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19 = __this->____baseUtcOffsetDelta_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20 = L_19; RuntimeObject* L_21 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_20); NullCheck(L_18); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_18, _stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7, L_21, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___0_info; bool L_23 = __this->____noDaylightTransitions_6; NullCheck(L_22); SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D(L_22, _stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163, L_23, NULL); return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m1315C12A85D7BCDBED55550CE87DF985D1FE8A65 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_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*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule__ctor_m1315C12A85D7BCDBED55550CE87DF985D1FE8A65_RuntimeMethod_var))); } IL_0014: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A, L_4, NULL); __this->____dateStart_0 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_5, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927, L_8, NULL); __this->____dateEnd_1 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_9, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD, L_12, NULL); __this->____daylightDelta_2 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_13, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F, L_16, NULL); __this->____daylightTransitionStart_3 = ((*(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)((TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)UnBox(L_17, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7, L_20, NULL); __this->____daylightTransitionEnd_4 = ((*(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)((TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)UnBox(L_21, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL); NullCheck(L_22); RuntimeObject* L_25; L_25 = SerializationInfo_GetValueNoThrow_mC2AB5CF14F11B0C67E384D5CEF15C9ADDC754D06(L_22, _stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7, L_24, NULL); V_0 = L_25; RuntimeObject* L_26 = V_0; if (!L_26) { goto IL_00d9; } } { RuntimeObject* L_27 = V_0; __this->____baseUtcOffsetDelta_5 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_27, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))); } IL_00d9: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_28 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_30; L_30 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_29, NULL); NullCheck(L_28); RuntimeObject* L_31; L_31 = SerializationInfo_GetValueNoThrow_mC2AB5CF14F11B0C67E384D5CEF15C9ADDC754D06(L_28, _stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163, L_30, NULL); V_0 = L_31; RuntimeObject* L_32 = V_0; if (!L_32) { goto IL_00fe; } } { RuntimeObject* L_33 = V_0; __this->____noDaylightTransitions_6 = ((*(bool*)((bool*)(bool*)UnBox(L_33, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); } IL_00fe: { return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D_RuntimeMethod_var); 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 // Conversion methods for marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_pinvoke(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke& marshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_pinvoke_back(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke& marshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_pinvoke_cleanup(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_com(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com& marshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_com_back(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com& marshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_com_cleanup(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com& marshaled) { } // System.DateTime System.TimeZoneInfo/TransitionTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____timeOfDay_0; return L_0; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____month_1; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::get_Week() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____week_2; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____day_3; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline(_thisAdjusted, method); return _returnValue; } // System.DayOfWeek System.TimeZoneInfo/TransitionTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____dayOfWeek_4; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline(_thisAdjusted, method); return _returnValue; } // System.Boolean System.TimeZoneInfo/TransitionTime::get_IsFixedDateRule() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isFixedDateRule_5; return L_0; } } IL2CPP_EXTERN_C bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline(_thisAdjusted, method); return _returnValue; } // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_obj; if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var))) { goto IL_0015; } } { RuntimeObject* L_1 = ___0_obj; bool L_2; L_2 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(__this, ((*(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)((TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)UnBox(L_1, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var)))), NULL); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Boolean System.TimeZoneInfo/TransitionTime::op_Inequality(System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_op_Inequality_mF8FC2CB80F2B4FFACF9CFEB6398B4A2D23BA2336 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___0_t1, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___1_t2, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = ___1_t2; bool L_1; L_1 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455((&___0_t1), L_0, NULL); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___0_other, 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; } { bool L_0 = __this->____isFixedDateRule_5; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_1 = ___0_other; bool L_2 = L_1.____isFixedDateRule_5; if ((!(((uint32_t)L_0) == ((uint32_t)L_2)))) { goto IL_0065; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____timeOfDay_0; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___0_other; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = L_4.____timeOfDay_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_6; L_6 = DateTime_op_Equality_m568A6320E27F3F7708C77BF8751925C8775DD921(L_3, L_5, NULL); if (!L_6) { goto IL_0065; } } { uint8_t L_7 = __this->____month_1; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_8 = ___0_other; uint8_t L_9 = L_8.____month_1; if ((!(((uint32_t)L_7) == ((uint32_t)L_9)))) { goto IL_0065; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_10 = ___0_other; bool L_11 = L_10.____isFixedDateRule_5; if (L_11) { goto IL_0056; } } { uint8_t L_12 = __this->____week_2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_13 = ___0_other; uint8_t L_14 = L_13.____week_2; if ((!(((uint32_t)L_12) == ((uint32_t)L_14)))) { goto IL_0054; } } { int32_t L_15 = __this->____dayOfWeek_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_16 = ___0_other; int32_t L_17 = L_16.____dayOfWeek_4; return (bool)((((int32_t)L_15) == ((int32_t)L_17))? 1 : 0); } IL_0054: { return (bool)0; } IL_0056: { uint8_t L_18 = __this->____day_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_19 = ___0_other; uint8_t L_20 = L_19.____day_3; return (bool)((((int32_t)L_18) == ((int32_t)L_20))? 1 : 0); } IL_0065: { return (bool)0; } } IL2CPP_EXTERN_C bool TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455_AdjustorThunk (RuntimeObject* __this, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___0_other, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(_thisAdjusted, ___0_other, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____month_1; uint8_t L_1 = __this->____week_2; return ((int32_t)((int32_t)L_0^((int32_t)((int32_t)L_1<<8)))); } } IL2CPP_EXTERN_C int32_t TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60(_thisAdjusted, method); return _returnValue; } // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_day, int32_t ___4_dayOfWeek, bool ___5_isFixedDateRule, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_timeOfDay; int32_t L_1 = ___1_month; int32_t L_2 = ___2_week; int32_t L_3 = ___3_day; int32_t L_4 = ___4_dayOfWeek; TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454(L_0, L_1, L_2, L_3, L_4, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___0_timeOfDay; __this->____timeOfDay_0 = L_5; int32_t L_6 = ___1_month; __this->____month_1 = (uint8_t)((int32_t)(uint8_t)L_6); int32_t L_7 = ___2_week; __this->____week_2 = (uint8_t)((int32_t)(uint8_t)L_7); int32_t L_8 = ___3_day; __this->____day_3 = (uint8_t)((int32_t)(uint8_t)L_8); int32_t L_9 = ___4_dayOfWeek; __this->____dayOfWeek_4 = L_9; bool L_10 = ___5_isFixedDateRule; __this->____isFixedDateRule_5 = L_10; return; } } IL2CPP_EXTERN_C void TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_day, int32_t ___4_dayOfWeek, bool ___5_isFixedDateRule, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6(_thisAdjusted, ___0_timeOfDay, ___1_month, ___2_week, ___3_day, ___4_dayOfWeek, ___5_isFixedDateRule, method); } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFixedDateRule_mA9CC3F9DCB5DFBA0808B0DCFDD427E5C4C939914 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_timeOfDay; int32_t L_1 = ___1_month; int32_t L_2 = ___2_day; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; memset((&L_3), 0, sizeof(L_3)); TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6((&L_3), L_0, L_1, 1, L_2, 0, (bool)1, /*hidden argument*/NULL); return L_3; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFloatingDateRule_mD28E1BEBB933C47A55017C515C8275ACFA56EB24 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_dayOfWeek, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_timeOfDay; int32_t L_1 = ___1_month; int32_t L_2 = ___2_week; int32_t L_3 = ___3_dayOfWeek; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4; memset((&L_4), 0, sizeof(L_4)); TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6((&L_4), L_0, L_1, L_2, 1, L_3, (bool)0, /*hidden argument*/NULL); return L_4; } } // System.Void System.TimeZoneInfo/TransitionTime::ValidateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_timeOfDay, int32_t ___1_month, int32_t ___2_week, int32_t ___3_day, int32_t ___4_dayOfWeek, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_timeOfDay), NULL); if (!L_0) { goto IL_0019; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE5A6B5B780158F734FA0A11A802E762EF7BDD272)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC71EEB076C9C234A1E39FDB9B0DCFC8851BA4D7F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var))); } IL_0019: { int32_t L_2 = ___1_month; if ((((int32_t)L_2) < ((int32_t)1))) { goto IL_0022; } } { int32_t L_3 = ___1_month; if ((((int32_t)L_3) <= ((int32_t)((int32_t)12)))) { goto IL_0032; } } IL_0022: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5E0D3D064AAABFE3EC781EFE9126A80D40BED15)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var))); } IL_0032: { int32_t L_5 = ___3_day; if ((((int32_t)L_5) < ((int32_t)1))) { goto IL_003b; } } { int32_t L_6 = ___3_day; if ((((int32_t)L_6) <= ((int32_t)((int32_t)31)))) { goto IL_004b; } } IL_003b: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral645F0B83FF7CADECF44AD1B83B13002DA97FBA1E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B63EF6929AE971A204D72191783C54436124C51)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var))); } IL_004b: { int32_t L_8 = ___2_week; if ((((int32_t)L_8) < ((int32_t)1))) { goto IL_0053; } } { int32_t L_9 = ___2_week; if ((((int32_t)L_9) <= ((int32_t)5))) { goto IL_0063; } } IL_0053: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_10 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0A2679566878DB123603B221EB69443EBD3A7BCB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27898ED9175E943FDE24F2BF2E86B60EEDFF15D2)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var))); } IL_0063: { int32_t L_11 = ___4_dayOfWeek; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_006d; } } { int32_t L_12 = ___4_dayOfWeek; if ((((int32_t)L_12) <= ((int32_t)6))) { goto IL_007d; } } IL_006d: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_13 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_13); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA50A38EF2D7858A83B908FDB41C862EF6FD5FAE1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral83DC2909B9E8CF20AD23217F95DC9967B22DD3F5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var))); } IL_007d: { DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D((&___0_timeOfDay), (&V_0), (&V_1), (&V_2), NULL); int32_t L_14 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_00a6; } } { int32_t L_15 = V_1; if ((!(((uint32_t)L_15) == ((uint32_t)1)))) { goto IL_00a6; } } { int32_t L_16 = V_2; if ((!(((uint32_t)L_16) == ((uint32_t)1)))) { goto IL_00a6; } } { int64_t L_17; L_17 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_timeOfDay), NULL); if (!((int64_t)(L_17%((int64_t)((int32_t)10000))))) { goto IL_00b6; } } IL_00a6: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_18 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_18); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1C55B63DB181316212E6D01717E65E1FB557B6B8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC71EEB076C9C234A1E39FDB9B0DCFC8851BA4D7F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454_RuntimeMethod_var))); } IL_00b6: { return; } } // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method) { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____timeOfDay_0; uint8_t L_1 = __this->____month_1; uint8_t L_2 = __this->____week_2; uint8_t L_3 = __this->____day_3; int32_t L_4 = __this->____dayOfWeek_4; TransitionTime_ValidateTransitionTime_m0A841DB6DDF28D59FA1E2BD8A8D5859BF4974454(L_0, L_1, L_2, L_3, L_4, NULL); goto IL_0032; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0025; } throw e; } CATCH_0025: {// begin catch(System.ArgumentException) V_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = V_0; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_6 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_6); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C_RuntimeMethod_var))); }// end catch (depth: 1) IL_0032: { return; } } IL2CPP_EXTERN_C void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C(_thisAdjusted, ___0_sender, method); } // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83A0203482067140327BBF852248E02658CAE786); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____timeOfDay_0; NullCheck(L_2); SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_2, _stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; uint8_t L_5 = __this->____month_1; NullCheck(L_4); SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB(L_4, _stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; uint8_t L_7 = __this->____week_2; NullCheck(L_6); SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB(L_6, _stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F, L_7, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_8 = ___0_info; uint8_t L_9 = __this->____day_3; NullCheck(L_8); SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB(L_8, _stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; int32_t L_11 = __this->____dayOfWeek_4; int32_t L_12 = L_11; RuntimeObject* L_13 = Box(DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_10, _stringLiteral83A0203482067140327BBF852248E02658CAE786, L_13, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; bool L_15 = __this->____isFixedDateRule_5; NullCheck(L_14); SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D(L_14, _stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947, L_15, NULL); return; } } IL2CPP_EXTERN_C void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5(_thisAdjusted, ___0_info, ___1_context, method); } // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83A0203482067140327BBF852248E02658CAE786); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F, L_4, NULL); __this->____timeOfDay_0 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_5, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5, L_8, NULL); __this->____month_1 = ((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_9, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F, L_12, NULL); __this->____week_2 = ((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_13, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E, L_16, NULL); __this->____day_3 = ((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_17, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteral83A0203482067140327BBF852248E02658CAE786, L_20, NULL); __this->____dayOfWeek_4 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_21, DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL); NullCheck(L_22); RuntimeObject* L_25; L_25 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_22, _stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947, L_24, NULL); __this->____isFixedDateRule_5 = ((*(bool*)((bool*)(bool*)UnBox(L_25, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); return; } } IL2CPP_EXTERN_C void TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5(_thisAdjusted, ___0_info, ___1_context, 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.TimeZoneInfo System.TimeZoneInfo/CachedData::CreateLocal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_CreateLocal_mD7DC783B2F7E554AD9C1513CE83D01D197707564 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, 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; } CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* V_0 = NULL; bool V_1 = false; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_2 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_3 = NULL; { V_0 = __this; V_1 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0057: {// begin finally (depth: 1) { bool L_0 = V_1; if (!L_0) { goto IL_0060; } } { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = V_0; Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_1, NULL); } IL_0060: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = V_0; Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_2, (&V_1), NULL); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = __this->____localTimeZone_0; il2cpp_codegen_memory_barrier(); V_2 = L_3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_4 = V_2; if (L_4) { goto IL_0053_1; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5; L_5 = TimeZoneInfo_GetLocalTimeZone_mE1D084C0A44BDF36D73FF5428EBB8FCE6F346089(__this, NULL); V_2 = L_5; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = V_2; NullCheck(L_6); String_t* L_7 = L_6->____id_0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_8 = V_2; NullCheck(L_8); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = L_8->____baseUtcOffset_4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_10 = V_2; NullCheck(L_10); String_t* L_11 = L_10->____displayName_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = V_2; NullCheck(L_12); String_t* L_13 = L_12->____standardDisplayName_2; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_14 = V_2; NullCheck(L_14); String_t* L_15 = L_14->____daylightDisplayName_3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_16 = V_2; NullCheck(L_16); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = L_16->____adjustmentRules_6; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_18 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_18); TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715(L_18, L_7, L_9, L_11, L_13, L_15, L_17, (bool)0, NULL); V_2 = L_18; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_19 = V_2; il2cpp_codegen_memory_barrier(); __this->____localTimeZone_0 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->____localTimeZone_0), (void*)L_19); } IL_0053_1: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_20 = V_2; V_3 = L_20; goto IL_0061; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0061: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_21 = V_3; return L_21; } } // System.TimeZoneInfo System.TimeZoneInfo/CachedData::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_0 = NULL; { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = __this->____localTimeZone_0; il2cpp_codegen_memory_barrier(); V_0 = L_0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = V_0; if (L_1) { goto IL_0013; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2; L_2 = CachedData_CreateLocal_mD7DC783B2F7E554AD9C1513CE83D01D197707564(__this, NULL); V_0 = L_2; } IL_0013: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = V_0; return L_3; } } // System.DateTimeKind System.TimeZoneInfo/CachedData::GetCorrespondingKind(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___0_timeZone, 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; } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___0_timeZone; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; if ((((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_0) == ((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_1))) { goto IL_0017; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___0_timeZone; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = __this->____localTimeZone_0; il2cpp_codegen_memory_barrier(); if ((((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_2) == ((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_3))) { goto IL_0015; } } { return (int32_t)(0); } IL_0015: { return (int32_t)(2); } IL_0017: { return (int32_t)(1); } } // System.Void System.TimeZoneInfo/CachedData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedData__ctor_m0B9484D26A9B27A4B34444C869F3F29F1908B6D4 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __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.Void System.TimeZoneInfo/<>c__DisplayClass16_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass16_0__ctor_mBA6BC752E40ECF2E8E0A473CF1B047F750FF5171 (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Boolean System.TimeZoneInfo/<>c__DisplayClass16_0::b__0(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8 (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* __this, String_t* ___0_filePath, 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; } { String_t* L_0 = ___0_filePath; String_t* L_1 = __this->___localtimeFilePath_0; bool L_2; L_2 = String_Equals_mCC34895D0DB2AD440C9D8767032215BC86B5C48B(L_0, L_1, 5, NULL); if (L_2) { goto IL_006b; } } { String_t* L_3 = ___0_filePath; String_t* L_4 = __this->___posixrulesFilePath_1; bool L_5; L_5 = String_Equals_mCC34895D0DB2AD440C9D8767032215BC86B5C48B(L_3, L_4, 5, NULL); if (L_5) { goto IL_006b; } } { String_t* L_6 = ___0_filePath; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___buffer_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___rawData_3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_9; L_9 = TimeZoneInfo_CompareTimeZoneFile_mC7AB75C3040CA3A1E3E608E1BB6D92ACFF8E6910(L_6, L_7, L_8, NULL); if (!L_9) { goto IL_006b; } } { String_t* L_10 = ___0_filePath; __this->___id_4 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___id_4), (void*)L_10); String_t* L_11 = __this->___id_4; String_t* L_12 = __this->___timeZoneDirectory_5; NullCheck(L_11); bool L_13; L_13 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_11, L_12, 4, NULL); if (!L_13) { goto IL_0069; } } { String_t* L_14 = __this->___id_4; String_t* L_15 = __this->___timeZoneDirectory_5; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); NullCheck(L_14); String_t* L_17; L_17 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_14, L_16, NULL); __this->___id_4 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___id_4), (void*)L_17); } IL_0069: { return (bool)1; } IL_006b: { 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 System.TimeZoneInfo/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m4BFEDBD1491AA2BE84DCB2247C3AC41AD3BBD49C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_0 = (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124*)il2cpp_codegen_object_new(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); NullCheck(L_0); U3CU3Ec__ctor_m735BCFFD24463BD5C90C9B0A386C9BCF979B4DA5(L_0, NULL); ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0); return; } } // System.Void System.TimeZoneInfo/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m735BCFFD24463BD5C90C9B0A386C9BCF979B4DA5 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Boolean System.TimeZoneInfo/<>c::b__34_1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; return (bool)((((int32_t)L_0) == ((int32_t)((int32_t)62)))? 1 : 0); } } // System.Boolean System.TimeZoneInfo/<>c::b__34_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsDigit_m8C1A38685D548E89FB8A05525B55261CC8D271B2(L_0, NULL); if (L_1) { goto IL_0018; } } { Il2CppChar L_2 = ___0_c; if ((((int32_t)L_2) == ((int32_t)((int32_t)43)))) { goto IL_0018; } } { Il2CppChar L_3 = ___0_c; if ((((int32_t)L_3) == ((int32_t)((int32_t)45)))) { goto IL_0018; } } { Il2CppChar L_4 = ___0_c; return (bool)((((int32_t)L_4) == ((int32_t)((int32_t)44)))? 1 : 0); } IL_0018: { return (bool)1; } } // System.Boolean System.TimeZoneInfo/<>c::b__35_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsDigit_m8C1A38685D548E89FB8A05525B55261CC8D271B2(L_0, NULL); if (L_1) { goto IL_001b; } } { Il2CppChar L_2 = ___0_c; if ((((int32_t)L_2) == ((int32_t)((int32_t)43)))) { goto IL_001b; } } { Il2CppChar L_3 = ___0_c; if ((((int32_t)L_3) == ((int32_t)((int32_t)45)))) { goto IL_001b; } } { Il2CppChar L_4 = ___0_c; return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)((int32_t)58)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001b: { return (bool)0; } } // System.Boolean System.TimeZoneInfo/<>c::b__37_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) == ((int32_t)((int32_t)47)))) { goto IL_000b; } } { Il2CppChar L_1 = ___0_c; return (bool)((((int32_t)L_1) == ((int32_t)((int32_t)44)))? 1 : 0); } IL_000b: { return (bool)1; } } // System.Boolean System.TimeZoneInfo/<>c::b__38_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; return (bool)((((int32_t)L_0) == ((int32_t)((int32_t)44)))? 1 : 0); } } // System.Int32 System.TimeZoneInfo/<>c::b__161_0(System.TimeZoneInfo/AdjustmentRule,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___0_rule1, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___1_rule2, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___0_rule1; NullCheck(L_0); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_0, NULL); V_0 = L_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___1_rule2; NullCheck(L_2); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_2, NULL); int32_t L_4; L_4 = DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D((&V_0), L_3, 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 void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Multicast(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); for (il2cpp_array_size_t i = 0; i < length; i++) { Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, reinterpret_cast(currentDelegate->___method_3)); } } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenInst(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(method); } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenStatic(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(method); } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenStaticInvoker(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { InvokerActionInvoker0::Invoke(__this->___method_ptr_0, method, NULL); } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_ClosedStaticInvoker(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2); } IL2CPP_EXTERN_C void DelegatePInvokeWrapper_Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this)); // Native function invocation il2cppPInvokeFunc(); } // System.Void System.Action::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method); __this->___method_3 = ___1_method; __this->___m_target_2 = ___0_object; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object); int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method); __this->___method_code_6 = (intptr_t)__this; if (MethodIsStatic((RuntimeMethod*)___1_method)) { bool isOpen = parameterCount == 0; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenStatic; else { __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } else { if (___0_object == NULL) il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } __this->___extra_arg_5 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Multicast; } // System.Void System.Action::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, reinterpret_cast(__this->___method_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 System.AggregateException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mEA3C73327112AA93972A8051A2E8CC4D9A17CCA8 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisException_t_m79C5AE8419A8C51A465AC2EA5A3008854ED35713_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, NULL); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_0; L_0 = Array_Empty_TisException_t_m79C5AE8419A8C51A465AC2EA5A3008854ED35713_inline(Array_Empty_TisException_t_m79C5AE8419A8C51A465AC2EA5A3008854ED35713_RuntimeMethod_var); ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_1 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_1); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_1, (RuntimeObject*)L_0, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_1); return; } } // System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m36C9769557880F4E90AE5EE44C39F98D86347E1F (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, RuntimeObject* ___0_innerExceptions, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_innerExceptions; AggregateException__ctor_m4D9F61E91F24BDFF09932C33BBB931DC620A52B4(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, L_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mE5898BED8E2DBD0CDB82837AEF7E9A26A6074AA9 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___0_innerExceptions, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_0 = ___0_innerExceptions; AggregateException__ctor_m484E445B9CF69C95E9FF2286BD03F445EDB8B688(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, L_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m4D9F61E91F24BDFF09932C33BBB931DC620A52B4 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptions, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B4_0 = NULL; String_t* G_B4_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_2 = NULL; RuntimeObject* G_B1_0 = NULL; String_t* G_B1_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_2 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; { String_t* L_0 = ___0_message; RuntimeObject* L_1 = ___1_innerExceptions; RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var)); G_B1_0 = L_2; G_B1_1 = L_0; G_B1_2 = __this; if (L_2) { G_B4_0 = L_2; G_B4_1 = L_0; G_B4_2 = __this; goto IL_0018; } } { RuntimeObject* L_3 = ___1_innerExceptions; G_B2_0 = G_B1_1; G_B2_1 = G_B1_2; if (!L_3) { G_B3_0 = G_B1_1; G_B3_1 = G_B1_2; goto IL_0017; } } { RuntimeObject* L_4 = ___1_innerExceptions; List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* L_5 = (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*)il2cpp_codegen_object_new(List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var); NullCheck(L_5); List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03(L_5, L_4, List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03_RuntimeMethod_var); G_B4_0 = ((RuntimeObject*)(L_5)); G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0018; } IL_0017: { G_B4_0 = ((RuntimeObject*)(NULL)); G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0018: { AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D(G_B4_2, G_B4_1, G_B4_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m484E445B9CF69C95E9FF2286BD03F445EDB8B688 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___1_innerExceptions, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_1 = ___1_innerExceptions; AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D(__this, L_0, (RuntimeObject*)L_1, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptions, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; int32_t V_1 = 0; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; String_t* G_B1_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_1 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; Exception_t* G_B4_0 = NULL; String_t* G_B4_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_2 = NULL; { String_t* L_0 = ___0_message; RuntimeObject* L_1 = ___1_innerExceptions; G_B1_0 = L_0; G_B1_1 = __this; if (!L_1) { G_B2_0 = L_0; G_B2_1 = __this; goto IL_000e; } } { RuntimeObject* L_2 = ___1_innerExceptions; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var, L_2); G_B2_0 = G_B1_0; G_B2_1 = G_B1_1; if ((((int32_t)L_3) > ((int32_t)0))) { G_B3_0 = G_B1_0; G_B3_1 = G_B1_1; goto IL_0011; } } IL_000e: { G_B4_0 = ((Exception_t*)(NULL)); G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0018; } IL_0011: { RuntimeObject* L_4 = ___1_innerExceptions; NullCheck(L_4); Exception_t* L_5; L_5 = InterfaceFuncInvoker1< Exception_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var, L_4, 0); G_B4_0 = L_5; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0018: { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(G_B4_2, G_B4_1, G_B4_0, NULL); RuntimeObject* L_6 = ___1_innerExceptions; if (L_6) { goto IL_002b; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_7 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3522BB4F702C4C273D265239651571707FCCD42D)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D_RuntimeMethod_var))); } IL_002b: { RuntimeObject* L_8 = ___1_innerExceptions; NullCheck(L_8); int32_t L_9; L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var, L_8); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_10 = (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)SZArrayNew(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var, (uint32_t)L_9); V_0 = L_10; V_1 = 0; goto IL_0059; } IL_003b: { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_11 = V_0; int32_t L_12 = V_1; RuntimeObject* L_13 = ___1_innerExceptions; int32_t L_14 = V_1; NullCheck(L_13); Exception_t* L_15; L_15 = InterfaceFuncInvoker1< Exception_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var, L_13, L_14); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_15); (L_11)->SetAt(static_cast(L_12), (Exception_t*)L_15); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_16 = V_0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = L_17; Exception_t* L_19 = (L_16)->GetAt(static_cast(L_18)); if (L_19) { goto IL_0055; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_20); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6348CDEC7DB6251FDA976EE379E172B4319202A3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D_RuntimeMethod_var))); } IL_0055: { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_21, 1)); } IL_0059: { int32_t L_22 = V_1; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_23 = V_0; NullCheck(L_23); if ((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))) { goto IL_003b; } } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_24 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_25 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_25); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_25, (RuntimeObject*)L_24, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_25); return; } } // System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m92F4EE32C2117DAC17373506FE5BD8AD7425E7F8 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, RuntimeObject* ___0_innerExceptionInfos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_innerExceptionInfos; AggregateException__ctor_m49BC0CD4DE05E205244170A24F20295004C9721F(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, L_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49BC0CD4DE05E205244170A24F20295004C9721F (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptionInfos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B4_0 = NULL; String_t* G_B4_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_2 = NULL; RuntimeObject* G_B1_0 = NULL; String_t* G_B1_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_2 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; { String_t* L_0 = ___0_message; RuntimeObject* L_1 = ___1_innerExceptionInfos; RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var)); G_B1_0 = L_2; G_B1_1 = L_0; G_B1_2 = __this; if (L_2) { G_B4_0 = L_2; G_B4_1 = L_0; G_B4_2 = __this; goto IL_0018; } } { RuntimeObject* L_3 = ___1_innerExceptionInfos; G_B2_0 = G_B1_1; G_B2_1 = G_B1_2; if (!L_3) { G_B3_0 = G_B1_1; G_B3_1 = G_B1_2; goto IL_0017; } } { RuntimeObject* L_4 = ___1_innerExceptionInfos; List_1_t51CBE3470AD8637D621A307190A51C60E66F370B* L_5 = (List_1_t51CBE3470AD8637D621A307190A51C60E66F370B*)il2cpp_codegen_object_new(List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_il2cpp_TypeInfo_var); NullCheck(L_5); List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF(L_5, L_4, List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF_RuntimeMethod_var); G_B4_0 = ((RuntimeObject*)(L_5)); G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0018; } IL_0017: { G_B4_0 = ((RuntimeObject*)(NULL)); G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0018: { AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC(G_B4_2, G_B4_1, G_B4_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___0_message, RuntimeObject* ___1_innerExceptionInfos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; int32_t V_1 = 0; ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* V_2 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; String_t* G_B1_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_1 = NULL; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; String_t* G_B4_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_1 = NULL; Exception_t* G_B5_0 = NULL; String_t* G_B5_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B5_2 = NULL; { String_t* L_0 = ___0_message; RuntimeObject* L_1 = ___1_innerExceptionInfos; G_B1_0 = L_0; G_B1_1 = __this; if (!L_1) { G_B3_0 = L_0; G_B3_1 = __this; goto IL_0017; } } { RuntimeObject* L_2 = ___1_innerExceptionInfos; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var, L_2); G_B2_0 = G_B1_0; G_B2_1 = G_B1_1; if ((((int32_t)L_3) <= ((int32_t)0))) { G_B3_0 = G_B1_0; G_B3_1 = G_B1_1; goto IL_0017; } } { RuntimeObject* L_4 = ___1_innerExceptionInfos; NullCheck(L_4); ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_5; L_5 = InterfaceFuncInvoker1< ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var, L_4, 0); G_B3_0 = G_B2_0; G_B3_1 = G_B2_1; if (L_5) { G_B4_0 = G_B2_0; G_B4_1 = G_B2_1; goto IL_001a; } } IL_0017: { G_B5_0 = ((Exception_t*)(NULL)); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0026; } IL_001a: { RuntimeObject* L_6 = ___1_innerExceptionInfos; NullCheck(L_6); ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_7; L_7 = InterfaceFuncInvoker1< ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var, L_6, 0); NullCheck(L_7); Exception_t* L_8; L_8 = ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline(L_7, NULL); G_B5_0 = L_8; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0026: { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(G_B5_2, G_B5_1, G_B5_0, NULL); RuntimeObject* L_9 = ___1_innerExceptionInfos; if (L_9) { goto IL_0039; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_10 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDA595DC5A57F5E8916402DFA6D50EB60A7DF3F30)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC_RuntimeMethod_var))); } IL_0039: { RuntimeObject* L_11 = ___1_innerExceptionInfos; NullCheck(L_11); int32_t L_12; L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var, L_11); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_13 = (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)SZArrayNew(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var, (uint32_t)L_12); V_0 = L_13; V_1 = 0; goto IL_0071; } IL_0049: { RuntimeObject* L_14 = ___1_innerExceptionInfos; int32_t L_15 = V_1; NullCheck(L_14); ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_16; L_16 = InterfaceFuncInvoker1< ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var, L_14, L_15); V_2 = L_16; ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_17 = V_2; if (!L_17) { goto IL_005d; } } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_18 = V_0; int32_t L_19 = V_1; ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_20 = V_2; NullCheck(L_20); Exception_t* L_21; L_21 = ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline(L_20, NULL); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_21); (L_18)->SetAt(static_cast(L_19), (Exception_t*)L_21); } IL_005d: { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_22 = V_0; int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = L_23; Exception_t* L_25 = (L_22)->GetAt(static_cast(L_24)); if (L_25) { goto IL_006d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_26 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_26); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6348CDEC7DB6251FDA976EE379E172B4319202A3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC_RuntimeMethod_var))); } IL_006d: { int32_t L_27 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1)); } IL_0071: { int32_t L_28 = V_1; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_29 = V_0; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))) { goto IL_0049; } } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_30 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_31 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_31); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_31, (RuntimeObject*)L_30, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_31; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_31); return; } } // System.Void System.AggregateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; if (L_2) { goto IL_0016; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A_RuntimeMethod_var))); } IL_0016: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_6; L_6 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_5, NULL); NullCheck(L_4); RuntimeObject* L_7; L_7 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_4, _stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916, L_6, NULL); V_0 = ((ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)IsInst((RuntimeObject*)L_7, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var)); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_8 = V_0; if (L_8) { goto IL_003f; } } { SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_9 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_9); SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2DD54EF3C66B10F36F9AE6F20237BFAFA2C9E444)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A_RuntimeMethod_var))); } IL_003f: { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_10 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_11 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_11); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_11, (RuntimeObject*)L_10, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_11); return; } } // System.Void System.AggregateException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException_GetObjectData_m585639C351A56166A0A7DB2FF38D2DC23F058EFC (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_2 = __this->___m_innerExceptions_18; NullCheck(L_2); int32_t L_3; L_3 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_2, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_4 = (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)SZArrayNew(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var, (uint32_t)L_3); V_0 = L_4; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_5 = __this->___m_innerExceptions_18; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_6 = V_0; NullCheck(L_5); ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1(L_5, L_6, 0, ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1_RuntimeMethod_var); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_7 = ___0_info; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_8 = V_0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_10; L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL); NullCheck(L_7); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_7, _stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916, (RuntimeObject*)L_8, L_10, NULL); return; } } // System.String System.AggregateException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AggregateException_get_Message_m7A1884B973C7C05CBFB08C05FA433E9D923E3D65 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC087E631060AB76B7C814C0E1B92D5C7C4C4B924); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; int32_t V_1 = 0; { ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_0 = __this->___m_innerExceptions_18; NullCheck(L_0); int32_t L_1; L_1 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_0, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); if (L_1) { goto IL_0014; } } { String_t* L_2; L_2 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); return L_2; } IL_0014: { StringBuilder_t* L_3; L_3 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)16), NULL); V_0 = L_3; StringBuilder_t* L_4 = V_0; String_t* L_5; L_5 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); NullCheck(L_4); StringBuilder_t* L_6; L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_4, L_5, NULL); StringBuilder_t* L_7 = V_0; NullCheck(L_7); StringBuilder_t* L_8; L_8 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_7, ((int32_t)32), NULL); V_1 = 0; goto IL_0067; } IL_0036: { StringBuilder_t* L_9 = V_0; NullCheck(L_9); StringBuilder_t* L_10; L_10 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)40), NULL); StringBuilder_t* L_11 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_12 = __this->___m_innerExceptions_18; int32_t L_13 = V_1; NullCheck(L_12); Exception_t* L_14; L_14 = ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628(L_12, L_13, ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_14); NullCheck(L_11); StringBuilder_t* L_16; L_16 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_11, L_15, NULL); StringBuilder_t* L_17 = V_0; NullCheck(L_17); StringBuilder_t* L_18; L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteralC087E631060AB76B7C814C0E1B92D5C7C4C4B924, NULL); int32_t L_19 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1)); } IL_0067: { int32_t L_20 = V_1; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_21 = __this->___m_innerExceptions_18; NullCheck(L_21); int32_t L_22; L_22 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_21, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); if ((((int32_t)L_20) < ((int32_t)L_22))) { goto IL_0036; } } { StringBuilder_t* L_23 = V_0; StringBuilder_t* L_24 = L_23; NullCheck(L_24); int32_t L_25; L_25 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_24, NULL); NullCheck(L_24); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_24, ((int32_t)il2cpp_codegen_subtract(L_25, 1)), NULL); StringBuilder_t* L_26 = V_0; String_t* L_27; L_27 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_26, NULL); return L_27; } } // System.String System.AggregateException::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AggregateException_ToString_m2BB913143184062068CD55719EB94CE7119E4141 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, 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*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE83E205B069FB6EB573A2EF371C8C84AB214E8A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB209907A052ABB2C21994BF17D3B45327D812D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1D9D681ED3F17FB88D66F3F260041BE534C7879); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; int32_t V_1 = 0; { 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; StringBuilder_t* L_1 = V_0; String_t* L_2; L_2 = Exception_ToString_m86C837E2A0387AD13424708D0F9292A27FA06A4B(__this, NULL); NullCheck(L_1); StringBuilder_t* L_3; L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, L_2, NULL); V_1 = 0; goto IL_0070; } IL_0017: { StringBuilder_t* L_4 = V_0; NullCheck(L_4); StringBuilder_t* L_5; L_5 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_4, NULL); StringBuilder_t* L_6 = V_0; NullCheck(L_6); StringBuilder_t* L_7; L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, _stringLiteralF1D9D681ED3F17FB88D66F3F260041BE534C7879, NULL); StringBuilder_t* L_8 = V_0; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_9; L_9 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); int32_t L_10 = V_1; int32_t L_11 = L_10; RuntimeObject* L_12 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_11); NullCheck(L_8); StringBuilder_t* L_13; L_13 = StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E(L_8, L_9, _stringLiteralE83E205B069FB6EB573A2EF371C8C84AB214E8A7, L_12, NULL); StringBuilder_t* L_14 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_15 = __this->___m_innerExceptions_18; int32_t L_16 = V_1; NullCheck(L_15); Exception_t* L_17; L_17 = ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628(L_15, L_16, ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17); NullCheck(L_14); StringBuilder_t* L_19; L_19 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_14, L_18, NULL); StringBuilder_t* L_20 = V_0; NullCheck(L_20); StringBuilder_t* L_21; L_21 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, _stringLiteralEB209907A052ABB2C21994BF17D3B45327D812D2, NULL); StringBuilder_t* L_22 = V_0; NullCheck(L_22); StringBuilder_t* L_23; L_23 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_22, NULL); int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1)); } IL_0070: { int32_t L_25 = V_1; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_26 = __this->___m_innerExceptions_18; NullCheck(L_26); int32_t L_27; L_27 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_26, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); if ((((int32_t)L_25) < ((int32_t)L_27))) { goto IL_0017; } } { StringBuilder_t* L_28 = V_0; NullCheck(L_28); String_t* L_29; L_29 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); return L_29; } } #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 System.ApplicationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m481B0251BEC0BF28EAAF3FCB11A47EFCB2E56E2A (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAEAB3D729B68F0D07CACB56068349A9D081F5BAD); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, _stringLiteralAEAB3D729B68F0D07CACB56068349A9D081F5BAD, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232832), NULL); return; } } // System.Void System.ApplicationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mE51100DFCDB0A0DF23B482CC43EC8E396BE7BE82 (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, String_t* ___0_message, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_message; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232832), NULL); return; } } // System.Void System.ApplicationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m924E77609BAFA0595453363EB8B7BCCBA03B32DD (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_message; Exception_t* L_1 = ___1_innerException; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232832), NULL); return; } } // System.Void System.ApplicationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mFF00B1678B9B13F1C9FEB0829C495F6507CAF031 (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120(__this, L_0, L_1, 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 System.ArgumentException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m34A925BA55EC4CE4253404E363B5F6A53EB51CA3 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50EF455B956027DF24259B3FB1863653BB4878FD); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral50EF455B956027DF24259B3FB1863653BB4878FD, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mFDDC94E3C94B43E2DFBDA15DD749315C5B246512 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; Exception_t* L_1 = ___1_innerException; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); String_t* L_1 = ___1_paramName; __this->____paramName_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____paramName_18), (void*)L_1); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE55B43308212050F52D65FEF9469774AEB10590); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; NullCheck(L_2); String_t* L_3; L_3 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_2, _stringLiteralDE55B43308212050F52D65FEF9469774AEB10590, NULL); __this->____paramName_18 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____paramName_18), (void*)L_3); return; } } // System.Void System.ArgumentException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException_GetObjectData_m203105469CF041A816427B18882BCFAF7193EA67 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE55B43308212050F52D65FEF9469774AEB10590); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; String_t* L_3 = __this->____paramName_18; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_5; L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL); NullCheck(L_2); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_2, _stringLiteralDE55B43308212050F52D65FEF9469774AEB10590, L_3, L_5, NULL); return; } } // System.String System.ArgumentException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentException_get_Message_m78A896B7D565DAFF78B1987C12FB40374EE1C628 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2565F69A6EDDD61DD4960B022D88743E25BCCD32); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0; L_0 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); V_0 = L_0; String_t* L_1 = __this->____paramName_18; bool L_2; L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL); if (L_2) { goto IL_0032; } } { String_t* L_3 = __this->____paramName_18; String_t* L_4; L_4 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteral2565F69A6EDDD61DD4960B022D88743E25BCCD32, L_3, NULL); V_1 = L_4; String_t* L_5 = V_0; String_t* L_6; L_6 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL); String_t* L_7 = V_1; String_t* L_8; L_8 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_5, L_6, L_7, NULL); return L_8; } IL_0032: { String_t* L_9 = V_0; return L_9; } } #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 System.ArgumentNullException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m4A0936689D360EBC545690326B4DF187196BF2B9 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B876A297E470749B85E75AB089B8F37384700D8); s_Il2CppMethodInitialized = true; } { ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(__this, _stringLiteral6B876A297E470749B85E75AB089B8F37384700D8, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B876A297E470749B85E75AB089B8F37384700D8); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_paramName; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, _stringLiteral6B876A297E470749B85E75AB089B8F37384700D8, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) { { String_t* L_0 = ___1_message; String_t* L_1 = ___0_paramName; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.ArgumentNullException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mF28B965A25876F0BCFDCBBE4251A9DAA2DA07B40 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A(__this, L_0, L_1, 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 System.ArgumentOutOfRangeException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F); s_Il2CppMethodInitialized = true; } { ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(__this, _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_paramName; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) { { String_t* L_0 = ___1_message; String_t* L_1 = ___0_paramName; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, RuntimeObject* ___1_actualValue, String_t* ___2_message, const RuntimeMethod* method) { { String_t* L_0 = ___2_message; String_t* L_1 = ___0_paramName; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, L_0, L_1, NULL); RuntimeObject* L_2 = ___1_actualValue; __this->____actualValue_19 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->____actualValue_19), (void*)L_2); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6A78DDC3447BE37A3E14C9B6EEE3026BE9FBAFB5 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3, L_4, NULL); __this->____actualValue_19 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____actualValue_19), (void*)L_5); return; } } // System.Void System.ArgumentOutOfRangeException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException_GetObjectData_m44838EEEED0AD60223B653BFED709E401BC04B44 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; ArgumentException_GetObjectData_m203105469CF041A816427B18882BCFAF7193EA67(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; RuntimeObject* L_3 = __this->____actualValue_19; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_5; L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL); NullCheck(L_2); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_2, _stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3, L_3, L_5, NULL); return; } } // System.String System.ArgumentOutOfRangeException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentOutOfRangeException_get_Message_m62E50C7CB4E53EAA5F389BF63BF27838DC0FF450 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0; L_0 = ArgumentException_get_Message_m78A896B7D565DAFF78B1987C12FB40374EE1C628(__this, NULL); V_0 = L_0; RuntimeObject* L_1 = __this->____actualValue_19; if (!L_1) { goto IL_0037; } } { RuntimeObject* L_2 = __this->____actualValue_19; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2); String_t* L_4; L_4 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A, L_3, NULL); V_1 = L_4; String_t* L_5 = V_0; if (L_5) { goto IL_002a; } } { String_t* L_6 = V_1; return L_6; } IL_002a: { String_t* L_7 = V_0; String_t* L_8; L_8 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL); String_t* L_9 = V_1; String_t* L_10; L_10 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_7, L_8, L_9, NULL); return L_10; } IL_0037: { String_t* L_11 = V_0; return L_11; } } #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 System.ArithmeticException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m1CD22804E6929CDFBE5CB651FCE80C0C668D3FB0 (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BAC3D20C34EF3D0825E7EAAE03BE6034C6297A9); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral4BAC3D20C34EF3D0825E7EAAE03BE6034C6297A9, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024362), NULL); return; } } // System.Void System.ArithmeticException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m84E573C2093803DC9E6219461275B351D225C16A (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, String_t* ___0_message, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024362), NULL); return; } } // System.Void System.ArithmeticException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m880D58CC9B6CD2F0E867298BA748343216D89A8B (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; Exception_t* L_1 = ___1_innerException; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024362), NULL); return; } } // System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m9F97AB2FDC9EED4A59627F1F2F6165AB592F8942 (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, 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 System.ArrayTypeMismatchException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_mD1BAAE9B73BA9E5948655553019ED8DE4F306D8B (ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13772F1D89F55EDAC4913EE35CA9BC5DB5CCC798); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral13772F1D89F55EDAC4913EE35CA9BC5DB5CCC798, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233085), NULL); return; } } // System.Void System.ArrayTypeMismatchException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_mF0B088F92F9ECD9B10168671FD9347BA8B809C6C (ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, 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 System.AssemblyLoadEventArgs::.ctor(System.Reflection.Assembly) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventArgs__ctor_m58EB2A5D3B2E763F15ED98634EC68FFB61249E73 (AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* __this, Assembly_t* ___0_loadedAssembly, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var); EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(__this, NULL); Assembly_t* L_0 = ___0_loadedAssembly; __this->___U3CLoadedAssemblyU3Ek__BackingField_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLoadedAssemblyU3Ek__BackingField_1), (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 void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Multicast(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); for (il2cpp_array_size_t i = 0; i < length; i++) { AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E*, const RuntimeMethod*); ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___0_sender, ___1_args, reinterpret_cast(currentDelegate->___method_3)); } } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenInst(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { NullCheck(___0_sender); typedef void (*FunctionPointerType) (RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_sender, ___1_args, method); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenStatic(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_sender, ___1_args, method); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenStaticInvoker(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(__this->___method_ptr_0, method, NULL, ___0_sender, ___1_args); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_ClosedStaticInvoker(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___0_sender, ___1_args); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenVirtual(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { NullCheck(___0_sender); VirtualActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_sender, ___1_args); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenInterface(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { NullCheck(___0_sender); InterfaceActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_sender, ___1_args); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericVirtual(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { NullCheck(___0_sender); GenericVirtualActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(method, ___0_sender, ___1_args); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericInterface(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { NullCheck(___0_sender); GenericInterfaceActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(method, ___0_sender, ___1_args); } // System.Void System.AssemblyLoadEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler__ctor_m951FB423DAB774D166ABBB569CAB69AD939A8087 (AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method); __this->___method_3 = ___1_method; __this->___m_target_2 = ___0_object; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object); int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method); __this->___method_code_6 = (intptr_t)__this; if (MethodIsStatic((RuntimeMethod*)___1_method)) { bool isOpen = parameterCount == 2; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenStatic; else { __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } else { bool isOpen = parameterCount == 1; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenInst; } } else { if (___0_object == NULL) il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } __this->___extra_arg_5 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Multicast; } // System.Void System.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F (AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___0_sender, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___1_args, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_args, reinterpret_cast(__this->___method_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 void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Multicast(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); for (il2cpp_array_size_t i = 0; i < length; i++) { AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___0_ar, reinterpret_cast(currentDelegate->___method_3)); } } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenInst(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { NullCheck(___0_ar); typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_ar, method); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenStatic(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_ar, method); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenStaticInvoker(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___0_ar); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_ClosedStaticInvoker(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___0_ar); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenVirtual(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { NullCheck(___0_ar); VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___0_ar); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenInterface(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { NullCheck(___0_ar); InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_ar); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericVirtual(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { NullCheck(___0_ar); GenericVirtualActionInvoker0::Invoke(method, ___0_ar); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericInterface(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { NullCheck(___0_ar); GenericInterfaceActionInvoker0::Invoke(method, ___0_ar); } // System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method); __this->___method_3 = ___1_method; __this->___m_target_2 = ___0_object; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object); int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method); __this->___method_code_6 = (intptr_t)__this; if (MethodIsStatic((RuntimeMethod*)___1_method)) { bool isOpen = parameterCount == 1; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenStatic; else { __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } else { bool isOpen = parameterCount == 0; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenInst; } } else { if (___0_object == NULL) il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } __this->___extra_arg_5 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Multicast; } // System.Void System.AsyncCallback::Invoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910 (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_ar, reinterpret_cast(__this->___method_3)); } // System.IAsyncResult System.AsyncCallback::BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncCallback_BeginInvoke_m3CBD8B256174D206DC85F42A48F1F88E097E5975 (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_ar, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___1_callback, RuntimeObject* ___2_object, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___0_ar; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___1_callback, (RuntimeObject*)___2_object); } // System.Void System.AsyncCallback::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_EndInvoke_mDF9BB40CE3E562BB89BADDB29F0DEAE72584BFA3 (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_result, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 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 System.AttributeUsageAttribute::.ctor(System.AttributeTargets) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mB1DAD99081C9A5BFCC36040E1979D6CDB6F0BEA0 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, int32_t ___0_validOn, const RuntimeMethod* method) { { __this->____attributeTarget_0 = ((int32_t)32767); __this->____inherited_2 = (bool)1; Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL); int32_t L_0 = ___0_validOn; __this->____attributeTarget_0 = L_0; return; } } // System.Boolean System.AttributeUsageAttribute::get_AllowMultiple() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mC8AE28D991D7D51DF0F2770DDB20607A65D71709 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, const RuntimeMethod* method) { { bool L_0 = __this->____allowMultiple_1; return L_0; } } // System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_m1C02AF31622E3DE6748D37056E1D391AB8CA7A17 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->____allowMultiple_1 = L_0; return; } } // System.Boolean System.AttributeUsageAttribute::get_Inherited() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_m7D987A2CD060666ABDA765A4610D8147C4580AFB (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, const RuntimeMethod* method) { { bool L_0 = __this->____inherited_2; return L_0; } } // System.Void System.AttributeUsageAttribute::set_Inherited(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_Inherited_mDF036E8D5BCDF7C912F99C1A569D11D11C3D3508 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->____inherited_2 = L_0; return; } } // System.Void System.AttributeUsageAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__cctor_m0706EFC7AF8D90FC2D557EB9462FE5E6AD2233DD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* L_0 = (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49*)il2cpp_codegen_object_new(AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var); NullCheck(L_0); AttributeUsageAttribute__ctor_mB1DAD99081C9A5BFCC36040E1979D6CDB6F0BEA0(L_0, ((int32_t)32767), NULL); ((AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_StaticFields*)il2cpp_codegen_static_fields_for(AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var))->___Default_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_StaticFields*)il2cpp_codegen_static_fields_for(AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var))->___Default_3), (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 System.BadImageFormatException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mFA467420DBBF233F47279CF451DE13F956A9FC59 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mBE3FC6F66F5F872F8333D9FFBC7382A5FA81E78B (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, String_t* ___0_message, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m247648079D9BED8CB3547D97A1A4A13A588221BB (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, String_t* ___0_message, Exception_t* ___1_inner, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; Exception_t* L_1 = ___1_inner; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mC09A8955CAC2940A52BA62E8F85C16D8DF82BCF9 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, String_t* ___0_message, String_t* ___1_fileName, const RuntimeMethod* method) { { String_t* L_0 = ___0_message; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); String_t* L_1 = ___1_fileName; __this->____fileName_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____fileName_18), (void*)L_1); return; } } // System.Void System.BadImageFormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m06D5B344A4B0AACA6F645B85E6DE08324D926582 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; NullCheck(L_2); String_t* L_3; L_3 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_2, _stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC, NULL); __this->____fileName_18 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____fileName_18), (void*)L_3); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; NullCheck(L_4); String_t* L_5; L_5 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_4, _stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93, NULL); __this->____fusionLog_19 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____fusionLog_19), (void*)L_5); return; } } // System.Void System.BadImageFormatException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_GetObjectData_mD8B1FAD74B9082E5B1FF3BD9AC8BD110FB042B1D (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; String_t* L_3 = __this->____fileName_18; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_5; L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL); NullCheck(L_2); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_2, _stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC, L_3, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; String_t* L_7 = __this->____fusionLog_19; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_9; L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL); NullCheck(L_6); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_6, _stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93, L_7, L_9, NULL); return; } } // System.String System.BadImageFormatException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_Message_mC480A02B76D6337071574D895ADE7DAA5167ABD1 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { { BadImageFormatException_SetMessageField_m2CF6F9D64962C849553996493715CBE21F6D970A(__this, NULL); String_t* L_0 = ((Exception_t*)__this)->____message_2; return L_0; } } // System.Void System.BadImageFormatException::SetMessageField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2CF6F9D64962C849553996493715CBE21F6D970A (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((Exception_t*)__this)->____message_2; if (L_0) { goto IL_0040; } } { String_t* L_1 = __this->____fileName_18; if (L_1) { goto IL_0029; } } { int32_t L_2; L_2 = Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline(__this, NULL); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-2146233088))))) { goto IL_0029; } } { ((Exception_t*)__this)->____message_2 = _stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80; Il2CppCodeGenWriteBarrier((void**)(&((Exception_t*)__this)->____message_2), (void*)_stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80); return; } IL_0029: { String_t* L_3 = __this->____fileName_18; int32_t L_4; L_4 = Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline(__this, NULL); String_t* L_5; L_5 = FileLoadException_FormatFileLoadExceptionMessage_m63C4CD06A5448BE67FFB3F8DD20E75607D296A88(L_3, L_4, NULL); ((Exception_t*)__this)->____message_2 = L_5; Il2CppCodeGenWriteBarrier((void**)(&((Exception_t*)__this)->____message_2), (void*)L_5); } IL_0040: { return; } } // System.String System.BadImageFormatException::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_ToString_m9C159102ED35E491CD525DD413BA8538E322177B (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D997905392A8A6AE6612065B56018B1C13345AF); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Type_t* L_0; L_0 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(__this, NULL); NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this); String_t* L_3; L_3 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_1, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, L_2, NULL); V_0 = L_3; String_t* L_4 = __this->____fileName_18; if (!L_4) { goto IL_004d; } } { String_t* L_5 = __this->____fileName_18; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if (!L_6) { goto IL_004d; } } { String_t* L_7 = V_0; String_t* L_8; L_8 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL); String_t* L_9 = __this->____fileName_18; String_t* L_10; L_10 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteral5D997905392A8A6AE6612065B56018B1C13345AF, L_9, NULL); String_t* L_11; L_11 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_7, L_8, L_10, NULL); V_0 = L_11; } IL_004d: { Exception_t* L_12; L_12 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(__this, NULL); if (!L_12) { goto IL_006c; } } { String_t* L_13 = V_0; Exception_t* L_14; L_14 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(__this, NULL); NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); String_t* L_16; L_16 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_13, _stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D, L_15, NULL); V_0 = L_16; } IL_006c: { String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this); if (!L_17) { goto IL_0086; } } { String_t* L_18 = V_0; String_t* L_19; L_19 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this); String_t* L_21; L_21 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_18, L_19, L_20, NULL); V_0 = L_21; } IL_0086: { String_t* L_22 = __this->____fusionLog_19; if (!L_22) { goto IL_00bc; } } { String_t* L_23 = V_0; if (L_23) { goto IL_0097; } } { V_0 = _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; } IL_0097: { String_t* L_24 = V_0; String_t* L_25; L_25 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL); String_t* L_26; L_26 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_24, L_25, NULL); V_0 = L_26; String_t* L_27 = V_0; String_t* L_28; L_28 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL); String_t* L_29; L_29 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_27, L_28, NULL); V_0 = L_29; String_t* L_30 = V_0; String_t* L_31 = __this->____fusionLog_19; String_t* L_32; L_32 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_30, L_31, NULL); V_0 = L_32; } IL_00bc: { String_t* L_33 = V_0; return L_33; } } #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.Byte[] System.BitConverter::GetBytes(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_mCD74C79673617CEBF85F8A653520C860A9F014F9 (int32_t ___0_value, 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; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); int32_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); int32_t L_3 = ___0_value; *((int32_t*)L_2) = (int32_t)L_3; return L_1; } } // System.Boolean System.BitConverter::TryWriteBytes(System.Span`1,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_TryWriteBytes_mC08570066B061A5EEBC9E54FFE8B4D10EDB3EC9B (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_destination, uint32_t ___1_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___0_destination), Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); if ((((int32_t)L_0) >= ((int32_t)4))) { goto IL_000c; } } { return (bool)0; } IL_000c: { Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_1 = ___0_destination; uint8_t* L_2; L_2 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_1, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var); uint32_t L_3 = ___1_value; il2cpp_unsafe_write_unaligned(L_2, L_3); return (bool)1; } } // System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_m13F278223B819C82CC647398B22C125B02FA2E61 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___1_startIndex; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_value; NullCheck(L_2); if ((!(((uint32_t)L_1) >= ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0019; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F(((int32_t)14), ((int32_t)22), NULL); } IL_0019: { int32_t L_3 = ___1_startIndex; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_value; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 2))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_m2143A5B72376233700B4842B05601BF9992D999E(5, ((int32_t)15), NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___0_value; int32_t L_6 = ___1_startIndex; NullCheck(L_5); int16_t L_7; L_7 = il2cpp_unsafe_read_unaligned(((L_5)->GetAddressAt(static_cast(L_6)))); return L_7; } } // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m259B4E62995575B80C4086347C867EB3C8D7DAB3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___1_startIndex; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_value; NullCheck(L_2); if ((!(((uint32_t)L_1) >= ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0019; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F(((int32_t)14), ((int32_t)22), NULL); } IL_0019: { int32_t L_3 = ___1_startIndex; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_value; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 4))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_m2143A5B72376233700B4842B05601BF9992D999E(5, ((int32_t)15), NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___0_value; int32_t L_6 = ___1_startIndex; NullCheck(L_5); int32_t L_7; L_7 = il2cpp_unsafe_read_unaligned(((L_5)->GetAddressAt(static_cast(L_6)))); return L_7; } } // System.Single System.BitConverter::ToSingle(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BitConverter_ToSingle_m61C4AA4550F008C0F7681DFF8D6FAE889FA149FD (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; int32_t L_1 = ___1_startIndex; il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); int32_t L_2; L_2 = BitConverter_ToInt32_m259B4E62995575B80C4086347C867EB3C8D7DAB3(L_0, L_1, NULL); float L_3; L_3 = BitConverter_Int32BitsToSingle_mAD799CFA19FABC0DCA7A09F3380A1F0B0EB39130_inline(L_2, NULL); return L_3; } } // System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mB4DC448C2229347732EB34E8EE5C54EE171BE2A3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m00B1D3A3A7C94060A914A8C27CE0CAD83C2ED839_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* G_B16_0 = NULL; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 G_B16_1; memset((&G_B16_1), 0, sizeof(G_B16_1)); int32_t G_B16_2 = 0; SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* G_B15_0 = NULL; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 G_B15_1; memset((&G_B15_1), 0, sizeof(G_B15_1)); int32_t G_B15_2 = 0; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___1_startIndex; if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_2 = ___1_startIndex; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_value; NullCheck(L_3); if ((((int32_t)L_2) < ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0021; } } { int32_t L_4 = ___1_startIndex; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_0021; } } IL_0018: { ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F(((int32_t)14), ((int32_t)22), NULL); } IL_0021: { int32_t L_5 = ___2_length; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0035; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BitConverter_ToString_mB4DC448C2229347732EB34E8EE5C54EE171BE2A3_RuntimeMethod_var))); } IL_0035: { int32_t L_7 = ___1_startIndex; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___0_value; NullCheck(L_8); int32_t L_9 = ___2_length; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_8)->max_length)), L_9))))) { goto IL_0045; } } { ThrowHelper_ThrowArgumentException_m2143A5B72376233700B4842B05601BF9992D999E(5, ((int32_t)15), NULL); } IL_0045: { int32_t L_10 = ___2_length; if (L_10) { goto IL_004e; } } { String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_11; } IL_004e: { int32_t L_12 = ___2_length; if ((((int32_t)L_12) <= ((int32_t)((int32_t)715827882)))) { goto IL_0075; } } { int32_t L_13 = ((int32_t)715827882); RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13); String_t* L_15; L_15 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF27849B63507F7B8C2FC6FE9C5EFB62BF8543C8)), L_14, NULL); ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_16 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_16); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), L_15, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BitConverter_ToString_mB4DC448C2229347732EB34E8EE5C54EE171BE2A3_RuntimeMethod_var))); } IL_0075: { int32_t L_17 = ___2_length; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ___0_value; int32_t L_19 = ___1_startIndex; int32_t L_20 = ___2_length; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_21; memset((&L_21), 0, sizeof(L_21)); ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805((&L_21), L_18, L_19, L_20, /*hidden argument*/ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_22 = ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1; SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_23 = L_22; G_B15_0 = L_23; G_B15_1 = L_21; G_B15_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_17, 3)), 1)); if (L_23) { G_B16_0 = L_23; G_B16_1 = L_21; G_B16_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_17, 3)), 1)); goto IL_00a1; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* L_24 = ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9_0; SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_25 = (SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7*)il2cpp_codegen_object_new(SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7_il2cpp_TypeInfo_var); NullCheck(L_25); SpanAction_2__ctor_m7DE67E22936D164FE13C5FCFFE399831076A0226(L_25, L_24, (intptr_t)((void*)U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6_RuntimeMethod_var), NULL); SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_26 = L_25; ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1 = L_26; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1), (void*)L_26); G_B16_0 = L_26; G_B16_1 = G_B15_1; G_B16_2 = G_B15_2; } IL_00a1: { String_t* L_27; L_27 = String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m00B1D3A3A7C94060A914A8C27CE0CAD83C2ED839(G_B16_2, G_B16_1, G_B16_0, String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m00B1D3A3A7C94060A914A8C27CE0CAD83C2ED839_RuntimeMethod_var); return L_27; } } // System.String System.BitConverter::ToString(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_m5F1B0DD98D477249671A51379388B4A09B35B420 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)15), NULL); } IL_000a: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_value; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_value; NullCheck(L_2); il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); String_t* L_3; L_3 = BitConverter_ToString_mB4DC448C2229347732EB34E8EE5C54EE171BE2A3(L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL); return L_3; } } // System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6 (double ___0_value, const RuntimeMethod* method) { { int64_t L_0 = *((int64_t*)((uintptr_t)(&___0_value))); return L_0; } } // System.Int32 System.BitConverter::SingleToInt32Bits(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73 (float ___0_value, const RuntimeMethod* method) { { int32_t L_0 = *((int32_t*)((uintptr_t)(&___0_value))); return L_0; } } // System.Single System.BitConverter::Int32BitsToSingle(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BitConverter_Int32BitsToSingle_mAD799CFA19FABC0DCA7A09F3380A1F0B0EB39130 (int32_t ___0_value, const RuntimeMethod* method) { { float L_0 = *((float*)((uintptr_t)(&___0_value))); return L_0; } } // System.Void System.BitConverter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverter__cctor_m77BB4F0CC2923A8A4CBE1DDB6D0CD6C4D81F4BE2 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint8_t* V_1 = NULL; { V_0 = (uint16_t)((int32_t)4660); V_1 = (uint8_t*)((uintptr_t)(&V_0)); uint8_t* L_0 = V_1; int32_t L_1 = *((uint8_t*)L_0); ((BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var))->___IsLittleEndian_0 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)52)))? 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.Void System.BitConverter/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mFA75A372A1C486282D3EB26F7ECCD911C8C98261 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* L_0 = (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0*)il2cpp_codegen_object_new(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); NullCheck(L_0); U3CU3Ec__ctor_m4E600C7D4528546FBD5BCE19298A337E85EA5B0C(L_0, NULL); ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0); return; } } // System.Void System.BitConverter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4E600C7D4528546FBD5BCE19298A337E85EA5B0C (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.BitConverter/<>c::b__38_0(System.Span`1,System.ValueTuple`3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6 (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_dst, ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 ___1_state, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; uint8_t V_3 = 0x0; { ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_0 = ___1_state; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0.___Item1_0; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_2 = ___1_state; int32_t L_3 = L_2.___Item2_1; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_4 = ___1_state; int32_t L_5 = L_4.___Item3_2; ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_inline((&V_0), L_1, L_3, L_5, ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var); V_1 = 0; V_2 = 0; int32_t L_6 = V_1; int32_t L_7 = L_6; V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1)); uint8_t* L_8; L_8 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_0))->____pointer_0))->value, (L_7), ((&V_0))->____length_1); int32_t L_9 = *((uint8_t*)L_8); V_3 = (uint8_t)L_9; int32_t L_10 = V_2; int32_t L_11 = L_10; V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1)); Il2CppChar* L_12; L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_dst))->____pointer_0))->value, (L_11), ((&___0_dst))->____length_1); uint8_t L_13 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_14; L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_13>>4)), NULL); *((int16_t*)L_12) = (int16_t)L_14; int32_t L_15 = V_2; int32_t L_16 = L_15; V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1)); Il2CppChar* L_17; L_17 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_dst))->____pointer_0))->value, (L_16), ((&___0_dst))->____length_1); uint8_t L_18 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_19; L_19 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_18&((int32_t)15))), NULL); *((int16_t*)L_17) = (int16_t)L_19; goto IL_00b4; } IL_0062: { int32_t L_20 = V_1; int32_t L_21 = L_20; V_1 = ((int32_t)il2cpp_codegen_add(L_21, 1)); uint8_t* L_22; L_22 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_0))->____pointer_0))->value, (L_21), ((&V_0))->____length_1); int32_t L_23 = *((uint8_t*)L_22); V_3 = (uint8_t)L_23; int32_t L_24 = V_2; int32_t L_25 = L_24; V_2 = ((int32_t)il2cpp_codegen_add(L_25, 1)); Il2CppChar* L_26; L_26 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_dst))->____pointer_0))->value, (L_25), ((&___0_dst))->____length_1); *((int16_t*)L_26) = (int16_t)((int32_t)45); int32_t L_27 = V_2; int32_t L_28 = L_27; V_2 = ((int32_t)il2cpp_codegen_add(L_28, 1)); Il2CppChar* L_29; L_29 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_dst))->____pointer_0))->value, (L_28), ((&___0_dst))->____length_1); uint8_t L_30 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_31; L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_30>>4)), NULL); *((int16_t*)L_29) = (int16_t)L_31; int32_t L_32 = V_2; int32_t L_33 = L_32; V_2 = ((int32_t)il2cpp_codegen_add(L_33, 1)); Il2CppChar* L_34; L_34 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_dst))->____pointer_0))->value, (L_33), ((&___0_dst))->____length_1); uint8_t L_35 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_36; L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_35&((int32_t)15))), NULL); *((int16_t*)L_34) = (int16_t)L_36; } IL_00b4: { int32_t L_37 = V_1; int32_t L_38; L_38 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&V_0), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_0062; } } { 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.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3 (bool* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_0006; } } { return 0; } IL_0006: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3(_thisAdjusted, method); return _returnValue; } // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63 (bool* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_000a; } } { return _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F; } IL_000a: { return _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871; } } IL2CPP_EXTERN_C String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63(_thisAdjusted, method); return _returnValue; } // System.String System.Boolean::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63(__this, NULL); return L_0; } } IL2CPP_EXTERN_C String_t* Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1 (bool* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_obj; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint8_t*)__this); RuntimeObject* L_2 = ___0_obj; return (bool)((((int32_t)L_1) == ((int32_t)((*(bool*)((bool*)(bool*)UnBox(L_2, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Boolean System.Boolean::Equals(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9 (bool* __this, bool ___0_obj, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ___0_obj; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9_AdjustorThunk (RuntimeObject* __this, bool ___0_obj, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Int32 System.Boolean::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC (bool* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_obj; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___0_obj; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF31022DF0C52AA301767F7877FB21D3C42BE84CE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = *((uint8_t*)__this); RuntimeObject* L_4 = ___0_obj; if ((!(((uint32_t)L_3) == ((uint32_t)((*(bool*)((bool*)(bool*)UnBox(L_4, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))))))) { goto IL_0024; } } { return 0; } IL_0024: { int32_t L_5 = *((uint8_t*)__this); if (L_5) { goto IL_002a; } } { return (-1); } IL_002a: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Int32 System.Boolean::CompareTo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52 (bool* __this, bool ___0_value, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ___0_value; if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_0007; } } { return 0; } IL_0007: { int32_t L_2 = *((uint8_t*)__this); if (L_2) { goto IL_000d; } } { return (-1); } IL_000d: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Boolean System.Boolean::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mC9B4406FE9DA904E2B7D75267CAD38E837D39A6D (String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; 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*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_Parse_mC9B4406FE9DA904E2B7D75267CAD38E837D39A6D_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_value; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3; L_3 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_2, NULL); il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_4; L_4 = Boolean_Parse_mB0D59A6F304A78532DA5E0CF3C29D8B0E8F0AA5C(L_3, NULL); return L_4; } } // System.Boolean System.Boolean::Parse(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mB0D59A6F304A78532DA5E0CF3C29D8B0E8F0AA5C (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_1; L_1 = Boolean_TryParse_m272AA70AEE4FB7091233367589500ACDDD02048B(L_0, (&V_0), NULL); if (L_1) { goto IL_0015; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_2 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_2); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F96D91590C70C47BBC8C98A53B3B412C36447CE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_Parse_mB0D59A6F304A78532DA5E0CF3C29D8B0E8F0AA5C_RuntimeMethod_var))); } IL_0015: { bool L_3 = V_0; return L_3; } } // System.Boolean System.Boolean::TryParse(System.String,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m417053B6E8D3724D0EED9E87C90D143622158352 (String_t* ___0_value, bool* ___1_result, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_0008; } } { bool* L_1 = ___1_result; *((int8_t*)L_1) = (int8_t)0; return (bool)0; } IL_0008: { String_t* L_2 = ___0_value; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3; L_3 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_2, NULL); bool* L_4 = ___1_result; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_5; L_5 = Boolean_TryParse_m272AA70AEE4FB7091233367589500ACDDD02048B(L_3, L_4, NULL); return L_5; } } // System.Boolean System.Boolean::TryParse(System.ReadOnlySpan`1,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m272AA70AEE4FB7091233367589500ACDDD02048B (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, bool* ___1_result, 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*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_1; memset((&V_1), 0, sizeof(V_1)); { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0; L_0 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871, NULL); V_0 = L_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = ___0_value; bool L_3; L_3 = MemoryExtensions_EqualsOrdinalIgnoreCase_m7023A654AB08294BBEBEC9B9281FF3FD651E0C70_inline(L_1, L_2, NULL); if (!L_3) { goto IL_0019; } } { bool* L_4 = ___1_result; *((int8_t*)L_4) = (int8_t)1; return (bool)1; } IL_0019: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5; L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F, NULL); V_1 = L_5; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7 = ___0_value; bool L_8; L_8 = MemoryExtensions_EqualsOrdinalIgnoreCase_m7023A654AB08294BBEBEC9B9281FF3FD651E0C70_inline(L_6, L_7, NULL); if (!L_8) { goto IL_0032; } } { bool* L_9 = ___1_result; *((int8_t*)L_9) = (int8_t)0; return (bool)1; } IL_0032: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_11; L_11 = Boolean_TrimWhiteSpaceAndNull_m3BF4B4FDCD83590AF115A2FBD8781E087FE78952(L_10, NULL); ___0_value = L_11; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_12 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13 = ___0_value; bool L_14; L_14 = MemoryExtensions_EqualsOrdinalIgnoreCase_m7023A654AB08294BBEBEC9B9281FF3FD651E0C70_inline(L_12, L_13, NULL); if (!L_14) { goto IL_0048; } } { bool* L_15 = ___1_result; *((int8_t*)L_15) = (int8_t)1; return (bool)1; } IL_0048: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_17 = ___0_value; bool L_18; L_18 = MemoryExtensions_EqualsOrdinalIgnoreCase_m7023A654AB08294BBEBEC9B9281FF3FD651E0C70_inline(L_16, L_17, NULL); if (!L_18) { goto IL_0056; } } { bool* L_19 = ___1_result; *((int8_t*)L_19) = (int8_t)0; return (bool)1; } IL_0056: { bool* L_20 = ___1_result; *((int8_t*)L_20) = (int8_t)0; return (bool)0; } } // System.ReadOnlySpan`1 System.Boolean::TrimWhiteSpaceAndNull(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Boolean_TrimWhiteSpaceAndNull_m3BF4B4FDCD83590AF115A2FBD8781E087FE78952 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, 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*)&ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; goto IL_0023; } IL_0004: { int32_t L_0 = V_0; Il2CppChar* L_1; L_1 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_value))->____pointer_0))->value, (L_0), ((&___0_value))->____length_1); int32_t L_2 = *((uint16_t*)L_1); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_2, NULL); if (L_3) { goto IL_001f; } } { int32_t L_4 = V_0; Il2CppChar* L_5; L_5 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_value))->____pointer_0))->value, (L_4), ((&___0_value))->____length_1); int32_t L_6 = *((uint16_t*)L_5); if (L_6) { goto IL_002d; } } IL_001f: { int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1)); } IL_0023: { int32_t L_8 = V_0; int32_t L_9; L_9 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_0004; } } IL_002d: { int32_t L_10; L_10 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); V_1 = ((int32_t)il2cpp_codegen_subtract(L_10, 1)); goto IL_0058; } IL_0039: { int32_t L_11 = V_1; Il2CppChar* L_12; L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_value))->____pointer_0))->value, (L_11), ((&___0_value))->____length_1); int32_t L_13 = *((uint16_t*)L_12); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_14; L_14 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_13, NULL); if (L_14) { goto IL_0054; } } { int32_t L_15 = V_1; Il2CppChar* L_16; L_16 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_value))->____pointer_0))->value, (L_15), ((&___0_value))->____length_1); int32_t L_17 = *((uint16_t*)L_16); if (L_17) { goto IL_005c; } } IL_0054: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_18, 1)); } IL_0058: { int32_t L_19 = V_1; int32_t L_20 = V_0; if ((((int32_t)L_19) >= ((int32_t)L_20))) { goto IL_0039; } } IL_005c: { int32_t L_21 = V_0; int32_t L_22 = V_1; int32_t L_23 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24; L_24 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_value), L_21, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_22, L_23)), 1)), ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var); return L_24; } } // System.TypeCode System.Boolean::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5 (bool* __this, const RuntimeMethod* method) { { return (int32_t)(3); } } IL2CPP_EXTERN_C int32_t Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return (bool)L_0; } } IL2CPP_EXTERN_C bool Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1 (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1_RuntimeMethod_var))); } } IL2CPP_EXTERN_C Il2CppChar Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5 (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_m59678AB8F11FBA30D4B34B2E00A1855BB4FFE854((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint8_t L_1; L_1 = Convert_ToByte_mC22A7EFFB28AA32D8F797E456E92BA88DBA19A08((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7 (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_m099E6D99AF93A412ACBA929CD564867BFFF2A438((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0 (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_m80834AC27723FA50B90650F4C1E3227B1BAD79BD((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m54E891D837D238AD3700E7554AA565E69A7BC983((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_m4B48C6526BA290E3D8C7BF687A7B69B0ACA6EE06((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_mF86C29EEA54FF517772904669CA87193CCC41A86((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26 (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_m0AF8E2E2CDC0BAB00D4731A91FE08C152A2F9BD2((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); float L_1; L_1 = Convert_ToSingle_mDB62EDFD0197B14286A6DEA482361F6FCD101237((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C float Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3 (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); double L_1; L_1 = Convert_ToDouble_m2E4A0A83B86E2123E98162F90B63FBE6251FCDF8((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C double Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF (bool* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Convert_ToDecimal_m7D1B71A1F092A407A7E1AD0D0756B9886DCDC69C((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC (bool* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC_RuntimeMethod_var))); } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5 (bool* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, 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*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ((bool)L_0); RuntimeObject* L_2 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___0_type; RuntimeObject* L_4 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5(_thisAdjusted, ___0_type, ___1_provider, method); return _returnValue; } // System.Void System.Boolean::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Boolean__cctor_mD45C3580A211C42263210BC2482FF106C98C314C (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*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); s_Il2CppMethodInitialized = true; } { ((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___TrueString_5 = _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871; Il2CppCodeGenWriteBarrier((void**)(&((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___TrueString_5), (void*)_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); ((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___FalseString_6 = _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F; Il2CppCodeGenWriteBarrier((void**)(&((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___FalseString_6), (void*)_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); 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.Int32 System.Byte::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C (uint8_t* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___0_value; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0BC57303021D0F5E73500A4048868718EB82784B)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = *((uint8_t*)__this); RuntimeObject* L_4 = ___0_value; return ((int32_t)il2cpp_codegen_subtract(L_3, (int32_t)((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_4, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))))); } } IL2CPP_EXTERN_C int32_t Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Int32 System.Byte::CompareTo(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8 (uint8_t* __this, uint8_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ___0_value; return ((int32_t)il2cpp_codegen_subtract(L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8_AdjustorThunk (RuntimeObject* __this, uint8_t ___0_value, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Boolean System.Byte::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C (uint8_t* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_obj; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint8_t*)__this); RuntimeObject* L_2 = ___0_obj; return (bool)((((int32_t)L_1) == ((int32_t)((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_2, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Boolean System.Byte::Equals(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85 (uint8_t* __this, uint8_t ___0_obj, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ___0_obj; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85_AdjustorThunk (RuntimeObject* __this, uint8_t ___0_obj, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Int32 System.Byte::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678 (uint8_t* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return L_0; } } IL2CPP_EXTERN_C int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(_thisAdjusted, method); return _returnValue; } // System.Byte System.Byte::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mD8D1AE5779910F7B2BA39ABF641972078F48B3EE (String_t* ___0_s, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_s; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)48), NULL); } IL_000a: { String_t* L_1 = ___0_s; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_1, NULL); RuntimeObject* L_3 = ___1_provider; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_4; L_4 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_3, NULL); uint8_t L_5; L_5 = Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4(L_2, 7, L_4, NULL); return L_5; } } // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m7866E33CE8480D5A4482C65F0CF9D1CCF0BD887C (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method) { { int32_t L_0 = ___1_style; NumberFormatInfo_ValidateParseStyleInteger_mF397DAF8AA78FEEC47D154A66FFB8EBBC90E8E8F(L_0, NULL); String_t* L_1 = ___0_s; if (L_1) { goto IL_0010; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)48), NULL); } IL_0010: { String_t* L_2 = ___0_s; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3; L_3 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_2, NULL); int32_t L_4 = ___1_style; RuntimeObject* L_5 = ___2_provider; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6; L_6 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_5, NULL); uint8_t L_7; L_7 = Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4(L_3, L_4, L_6, NULL); return L_7; } } // System.Byte System.Byte::Parse(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_style, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { V_0 = 0; } try {// begin try (depth: 1) ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_s; int32_t L_1 = ___1_style; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2 = ___2_info; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Number_ParseInt32_m7F2AA04784ED36F84E59BF810E51438EF5548D3E(L_0, L_1, L_2, NULL); V_0 = L_3; goto IL_001a; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000d; } throw e; } CATCH_000d: {// begin catch(System.OverflowException) V_1 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)); OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_4 = V_1; OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_5 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_5); OverflowException__ctor_mB00A07CDB7E5230B8D2BB31696E63F3CB1C36EF9(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F)), L_4, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4_RuntimeMethod_var))); }// end catch (depth: 1) IL_001a: { int32_t L_6 = V_0; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0026; } } { int32_t L_7 = V_0; if ((((int32_t)L_7) <= ((int32_t)((int32_t)255)))) { goto IL_0031; } } IL_0026: { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_8 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_8); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_Parse_m490E3F3D9EB77A06643F089594F1539A244013C4_RuntimeMethod_var))); } IL_0031: { int32_t L_9 = V_0; return (uint8_t)((int32_t)(uint8_t)L_9); } } // System.String System.Byte::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4 (uint8_t* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1; L_1 = ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL, ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Number_FormatInt32_mF6C76C89E0FF34257DA491F25E5FD87A27266F53(L_0, L_1, (RuntimeObject*)NULL, NULL); return L_2; } } IL2CPP_EXTERN_C String_t* Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4(_thisAdjusted, method); return _returnValue; } // System.String System.Byte::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310 (uint8_t* __this, String_t* ___0_format, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); String_t* L_1 = ___0_format; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_3; L_3 = Number_FormatInt32_mF6C76C89E0FF34257DA491F25E5FD87A27266F53(L_0, L_2, (RuntimeObject*)NULL, NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310(_thisAdjusted, ___0_format, method); return _returnValue; } // System.String System.Byte::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1; L_1 = ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL, ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var); RuntimeObject* L_2 = ___0_provider; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_3; L_3 = Number_FormatInt32_mF6C76C89E0FF34257DA491F25E5FD87A27266F53(L_0, L_1, L_2, NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC (uint8_t* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); String_t* L_1 = ___0_format; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_1, NULL); RuntimeObject* L_3 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_4; L_4 = Number_FormatInt32_mF6C76C89E0FF34257DA491F25E5FD87A27266F53(L_0, L_2, L_3, NULL); return L_4; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC(_thisAdjusted, ___0_format, ___1_provider, method); return _returnValue; } // System.Boolean System.Byte::TryFormat(System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E (uint8_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___2_format; RuntimeObject* L_2 = ___3_provider; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_3 = ___0_destination; int32_t* L_4 = ___1_charsWritten; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); bool L_5; L_5 = Number_TryFormatInt32_m2552E12EAE2A54DD8678522038BD7C28A21C1820(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E(_thisAdjusted, ___0_destination, ___1_charsWritten, ___2_format, ___3_provider, method); return _returnValue; } // System.TypeCode System.Byte::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A (uint8_t* __this, const RuntimeMethod* method) { { return (int32_t)(6); } } IL2CPP_EXTERN_C int32_t Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_1; L_1 = Convert_ToBoolean_m6148BAC617B69CACDF14A8C74836767DFF0CB6A9((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C bool Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Il2CppChar L_1; L_1 = Convert_ToChar_m6E532F05E049A23446AEE906828CDC10E21164C6((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C Il2CppChar Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_mBDE6A7BFA62003218AB1EC4713F320EE3D4A355A((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return (uint8_t)L_0; } } IL2CPP_EXTERN_C uint8_t Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_mAC8ED23E9E3543C1D79CB1EFA37B663024C883D5((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_mF87147711F2A9354CFB9C5E6BC8A779EEED223D7((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mD8869793A34ED86D38EFDF4BFCDD8D03FBBCCAB6((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_m5D482A246A0FB48FCA9A3EB69EEC7ECFA307C69F((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_mDF5F001FD9BCF9A16158B0BA977DB7139C556BAB((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_mEE1402515F6D94369BCA6838B6A576BA28FA1A80((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); float L_1; L_1 = Convert_ToSingle_m14D8B84DD1E1DF3DE2878890755A25B9B1C5E3FF((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C float Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369 (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); double L_1; L_1 = Convert_ToDouble_m7D9D2B308EFDB2C0F4F9A2F13F753FE4DC048859((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C double Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF (uint8_t* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Convert_ToDecimal_m12A9433E061B4F244344EE3DEBFF6447E490D98B((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50 (uint8_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072BA90B274B502615639084DC3D7FCC63407A24)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50_RuntimeMethod_var))); } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6 (uint8_t* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ((uint8_t)L_0); RuntimeObject* L_2 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___0_type; RuntimeObject* L_4 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6(_thisAdjusted, ___0_type, ___1_provider, 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 System.CLSCompliantAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_mA573FAB082E9E036BBCB882795BD1A3E743EF03E (CLSCompliantAttribute_tEF2C88FA74E74FB1993CC6E03767A2478A6D2F20* __this, bool ___0_isCompliant, const RuntimeMethod* method) { { Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL); bool L_0 = ___0_isCompliant; __this->____compliant_0 = 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.Boolean System.Char::IsLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC (Il2CppChar ___0_ch, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_ch; return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)255)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Char::IsAscii(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_m11F67A302C008452CD87BAF8C4F4034DB3E26C37 (Il2CppChar ___0_ch, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_ch; return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)127)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43 (Il2CppChar ___0_ch, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ((Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields*)il2cpp_codegen_static_fields_for(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))->___s_categoryForLatin1_3; Il2CppChar L_1 = ___0_ch; NullCheck(L_0); Il2CppChar L_2 = L_1; uint8_t L_3 = (L_0)->GetAt(static_cast(L_2)); return (int32_t)(L_3); } } // System.Int32 System.Char::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93 (Il2CppChar* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); int32_t L_1 = *((uint16_t*)__this); return ((int32_t)(L_0|((int32_t)(L_1<<((int32_t)16))))); } } IL2CPP_EXTERN_C int32_t Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Char::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0 (Il2CppChar* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_obj; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint16_t*)__this); RuntimeObject* L_2 = ___0_obj; return (bool)((((int32_t)L_1) == ((int32_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_2, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Boolean System.Char::Equals(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B (Il2CppChar* __this, Il2CppChar ___0_obj, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ___0_obj; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B_AdjustorThunk (RuntimeObject* __this, Il2CppChar ___0_obj, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B(_thisAdjusted, ___0_obj, method); return _returnValue; } // System.Int32 System.Char::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8 (Il2CppChar* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___0_value; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A7ADFD6756FB3736B5F1DD62B8C220E85E5A9A6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = *((uint16_t*)__this); RuntimeObject* L_4 = ___0_value; return ((int32_t)il2cpp_codegen_subtract(L_3, (int32_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_4, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))))); } } IL2CPP_EXTERN_C int32_t Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Int32 System.Char::CompareTo(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7 (Il2CppChar* __this, Il2CppChar ___0_value, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ___0_value; return ((int32_t)il2cpp_codegen_subtract(L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7_AdjustorThunk (RuntimeObject* __this, Il2CppChar ___0_value, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7(_thisAdjusted, ___0_value, method); return _returnValue; } // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Char_ToString_m7ABE3A3181325918A8EA8878A083497DCF2FED4B(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(_thisAdjusted, method); return _returnValue; } // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Char_ToString_m7ABE3A3181325918A8EA8878A083497DCF2FED4B(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C String_t* Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.String System.Char::ToString(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m7ABE3A3181325918A8EA8878A083497DCF2FED4B (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; String_t* L_1; L_1 = String_CreateFromChar_m3A1169FBD297609FC86BFD2A07F49737787AE116(L_0, NULL); return L_1; } } // System.Char System.Char::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_Parse_m2C567BE09FA9F42226935A1760BB722B767E7000 (String_t* ___0_s, const RuntimeMethod* method) { { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_Parse_m2C567BE09FA9F42226935A1760BB722B767E7000_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_s; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0022; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_4 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_4); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_Parse_m2C567BE09FA9F42226935A1760BB722B767E7000_RuntimeMethod_var))); } IL_0022: { String_t* L_5 = ___0_s; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); return L_6; } } // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m8C1A38685D548E89FB8A05525B55261CC8D271B2 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_0018; } } { Il2CppChar L_2 = ___0_c; if ((((int32_t)L_2) < ((int32_t)((int32_t)48)))) { goto IL_0016; } } { Il2CppChar L_3 = ___0_c; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0016: { return (bool)0; } IL_0018: { Il2CppChar L_4 = ___0_c; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_4, NULL); return (bool)((((int32_t)L_5) == ((int32_t)8))? 1 : 0); } } // System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_m6A21A2B7D9A0CC122BCBF69159A53DFA6E31F2DA (int32_t ___0_uc, const RuntimeMethod* method) { { int32_t L_0 = ___0_uc; if ((!(((uint32_t)L_0) <= ((uint32_t)4)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { return (bool)0; } } // System.Boolean System.Char::IsLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_m4363120285B51739DEE559E5C81E89580DDC78C0 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_0033; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_m11F67A302C008452CD87BAF8C4F4034DB3E26C37(L_2, NULL); if (!L_3) { goto IL_0027; } } { Il2CppChar L_4 = ___0_c; ___0_c = ((int32_t)(uint16_t)((int32_t)((int32_t)L_4|((int32_t)32)))); Il2CppChar L_5 = ___0_c; if ((((int32_t)L_5) < ((int32_t)((int32_t)97)))) { goto IL_0025; } } { Il2CppChar L_6 = ___0_c; return (bool)((((int32_t)((((int32_t)L_6) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0025: { return (bool)0; } IL_0027: { Il2CppChar L_7 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_8; L_8 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_7, NULL); bool L_9; L_9 = Char_CheckLetter_m6A21A2B7D9A0CC122BCBF69159A53DFA6E31F2DA(L_8, NULL); return L_9; } IL_0033: { Il2CppChar L_10 = ___0_c; int32_t L_11; L_11 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_10, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_12; L_12 = Char_CheckLetter_m6A21A2B7D9A0CC122BCBF69159A53DFA6E31F2DA(L_11, NULL); return L_12; } } // System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m00CD15364DBE04162FB0928DBDFB30010CDCDA0A (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_001d; } } { Il2CppChar L_1 = ___0_c; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)9)))) > ((uint32_t)4)))) { goto IL_001d; } } { Il2CppChar L_2 = ___0_c; if ((((int32_t)L_2) == ((int32_t)((int32_t)160)))) { goto IL_001d; } } { Il2CppChar L_3 = ___0_c; return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)133)))? 1 : 0); } IL_001d: { return (bool)1; } } // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsWhiteSpaceLatin1_m00CD15364DBE04162FB0928DBDFB30010CDCDA0A(L_2, NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___0_c; bool L_5; L_5 = CharUnicodeInfo_IsWhiteSpace_m4AC6E734B3E5E8C87ED713EB04E2A1B8D40A5149(L_4, NULL); return L_5; } } // System.Boolean System.Char::IsUpper(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsUpper_mF150C44B70F522A14B2A8DF71DE0ADE52F9A3392 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_002a; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_m11F67A302C008452CD87BAF8C4F4034DB3E26C37(L_2, NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___0_c; if ((((int32_t)L_4) < ((int32_t)((int32_t)65)))) { goto IL_001e; } } { Il2CppChar L_5 = ___0_c; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)90)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_6, NULL); return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0); } IL_002a: { Il2CppChar L_8 = ___0_c; int32_t L_9; L_9 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_8, NULL); return (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Char::IsLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLower_m9DDB41367F97CFFE6C46A3B5EDE7D11180B5F1AE (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_002a; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_m11F67A302C008452CD87BAF8C4F4034DB3E26C37(L_2, NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___0_c; if ((((int32_t)L_4) < ((int32_t)((int32_t)97)))) { goto IL_001e; } } { Il2CppChar L_5 = ___0_c; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_6, NULL); return (bool)((((int32_t)L_7) == ((int32_t)1))? 1 : 0); } IL_002a: { Il2CppChar L_8 = ___0_c; int32_t L_9; L_9 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_8, NULL); return (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0); } } // System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_m15C8E4507F8EED89258BA030C383D579A9B55093 (int32_t ___0_uc, const RuntimeMethod* method) { { int32_t L_0 = ___0_uc; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)18)))) <= ((uint32_t)6)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { return (bool)0; } } // System.Boolean System.Char::IsPunctuation(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsPunctuation_m619E42D942E22C9BA1DDB8E704BECA546C376473 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_0014; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_2, NULL); bool L_4; L_4 = Char_CheckPunctuation_m15C8E4507F8EED89258BA030C383D579A9B55093(L_3, NULL); return L_4; } IL_0014: { Il2CppChar L_5 = ___0_c; int32_t L_6; L_6 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_5, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_7; L_7 = Char_CheckPunctuation_m15C8E4507F8EED89258BA030C383D579A9B55093(L_6, NULL); return L_7; } } // System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m99ADBFA653877A3BDD18B6FD899DC36ECA297436 (int32_t ___0_uc, const RuntimeMethod* method) { { int32_t L_0 = ___0_uc; if ((!(((uint32_t)L_0) > ((uint32_t)4)))) { goto IL_0008; } } { int32_t L_1 = ___0_uc; if ((!(((uint32_t)L_1) == ((uint32_t)8)))) { goto IL_000a; } } IL_0008: { return (bool)1; } IL_000a: { return (bool)0; } } // System.Boolean System.Char::IsLetterOrDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_m14049A362108679FD23E424FD9C5C42057359B72 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_0014; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_2, NULL); bool L_4; L_4 = Char_CheckLetterOrDigit_m99ADBFA653877A3BDD18B6FD899DC36ECA297436(L_3, NULL); return L_4; } IL_0014: { Il2CppChar L_5 = ___0_c; int32_t L_6; L_6 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_5, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_7; L_7 = Char_CheckLetterOrDigit_m99ADBFA653877A3BDD18B6FD899DC36ECA297436(L_6, NULL); return L_7; } } // System.Char System.Char::ToUpper(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m7DB51DD07EE52F4CA897807281880930F5CBD2D2 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___0_c; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_1, L_2); return L_3; } } // System.Char System.Char::ToUpperInvariant(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_m43EADCB6987DB5FC44A6BFDBA8800EBACCEC68C8 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___0_c; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_1, L_2); return L_3; } } // System.Char System.Char::ToLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m238489988C62CB10C7C7CAAEF8F3B2D1C5B5E056 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___0_c; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_1, L_2); return L_3; } } // System.Char System.Char::ToLowerInvariant(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLowerInvariant_m983C1CD07015E41B97D71F466B4B686F1145E60D (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___0_c; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_1, L_2); return L_3; } } // System.TypeCode System.Char::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C (Il2CppChar* __this, const RuntimeMethod* method) { { return (int32_t)(4); } } IL2CPP_EXTERN_C int32_t Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881_RuntimeMethod_var))); } } IL2CPP_EXTERN_C bool Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); return L_0; } } IL2CPP_EXTERN_C Il2CppChar Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81 (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_mAFED7E2534210710E704D42B7AAEF527873D924E(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint8_t L_1; L_1 = Convert_ToByte_m9CC1302B0E62A32203AF91B40BF71A251EDF17C6(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_mA0303B3EF9247EEA563A0EF6B53BCE574B021FF7(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304 (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_m64B8E95EE8175E71F0F09FFECB2EE403B37D9F60(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mDBBE9318A7CCE1560974CE93F5BFED9931CF0052(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838 (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_m74C12C6CEF6B7B1FC50F899B358824FCCC71F7B6(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_m664E0209A25CA5E794A35FDFC3152493DC10154E(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F (Il2CppChar* __this, RuntimeObject* ___0_provider, 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 L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_mD35B9CFCB4C188FCD8E195A4839D7FFF0A7D75E2(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D_RuntimeMethod_var))); } } IL2CPP_EXTERN_C float Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B_RuntimeMethod_var))); } } IL2CPP_EXTERN_C double Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2 (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2_RuntimeMethod_var))); } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C (Il2CppChar* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C_RuntimeMethod_var))); } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3 (Il2CppChar* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, 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); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ((Il2CppChar)L_0); RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___0_type; RuntimeObject* L_4 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3(_thisAdjusted, ___0_type, ___1_provider, method); return _returnValue; } // System.Boolean System.Char::IsControl(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsControl_m133C10360BE82B7580E4D3ECE3C881A6C82B3F7F (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_0013; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_2, NULL); return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)14)))? 1 : 0); } IL_0013: { Il2CppChar L_4 = ___0_c; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_4, NULL); return (bool)((((int32_t)L_5) == ((int32_t)((int32_t)14)))? 1 : 0); } } // System.Boolean System.Char::IsLetterOrDigit(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_m29DAB6849D892142452C4B53F9A995CEC17E88A8 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsLetterOrDigit_m29DAB6849D892142452C4B53F9A995CEC17E88A8_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___1_index; String_t* L_3 = ___0_s; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { 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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsLetterOrDigit_m29DAB6849D892142452C4B53F9A995CEC17E88A8_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___0_s; int32_t L_7 = ___1_index; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); V_0 = L_8; Il2CppChar L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_10; L_10 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_9, NULL); if (!L_10) { goto IL_003e; } } { Il2CppChar L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_12; L_12 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_11, NULL); bool L_13; L_13 = Char_CheckLetterOrDigit_m99ADBFA653877A3BDD18B6FD899DC36ECA297436(L_12, NULL); return L_13; } IL_003e: { String_t* L_14 = ___0_s; int32_t L_15 = ___1_index; int32_t L_16; L_16 = CharUnicodeInfo_GetUnicodeCategory_m608B3A60874131B5E65FF33AB2818EF27C036952(L_14, L_15, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_17; L_17 = Char_CheckLetterOrDigit_m99ADBFA653877A3BDD18B6FD899DC36ECA297436(L_16, NULL); return L_17; } } // System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m8A42DF3BEE7285F2D021D5B5779C18C6A00E96D3 (int32_t ___0_uc, const RuntimeMethod* method) { { int32_t L_0 = ___0_uc; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 8))) <= ((uint32_t)2)))) { goto IL_0008; } } { return (bool)1; } IL_0008: { return (bool)0; } } // System.Boolean System.Char::IsNumber(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_m9C6A6326BEF8A833F2FC7BA93F5E211D9423C5F3 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_002c; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_m11F67A302C008452CD87BAF8C4F4034DB3E26C37(L_2, NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___0_c; if ((((int32_t)L_4) < ((int32_t)((int32_t)48)))) { goto IL_001e; } } { Il2CppChar L_5 = ___0_c; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_6, NULL); bool L_8; L_8 = Char_CheckNumber_m8A42DF3BEE7285F2D021D5B5779C18C6A00E96D3(L_7, NULL); return L_8; } IL_002c: { Il2CppChar L_9 = ___0_c; int32_t L_10; L_10 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_9, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_11; L_11 = Char_CheckNumber_m8A42DF3BEE7285F2D021D5B5779C18C6A00E96D3(L_10, NULL); return L_11; } } // System.Boolean System.Char::CheckSeparator(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSeparator_m06A378973D7C8A843BD2E5CF6413DFCE0DCE4269 (int32_t ___0_uc, const RuntimeMethod* method) { { int32_t L_0 = ___0_uc; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)11)))) <= ((uint32_t)2)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { return (bool)0; } } // System.Boolean System.Char::IsSeparatorLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparatorLatin1_mEC0802FF1A58A129CB73DD0BC7C22863B818A886 (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_000e; } } { Il2CppChar L_1 = ___0_c; return (bool)((((int32_t)L_1) == ((int32_t)((int32_t)160)))? 1 : 0); } IL_000e: { return (bool)1; } } // System.Boolean System.Char::IsSeparator(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparator_m8DBA05CCFA10131140E40057E6553F7AC7397BF9 (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsSeparatorLatin1_mEC0802FF1A58A129CB73DD0BC7C22863B818A886(L_2, NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___0_c; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m86A3CBA3BE4DF6FCD2A21D9DC9A1C2E30634E979(L_4, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_6; L_6 = Char_CheckSeparator_m06A378973D7C8A843BD2E5CF6413DFCE0DCE4269(L_5, NULL); return L_6; } } // System.Boolean System.Char::IsSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mDCAB7B29DC13EDCE8A0F7ED2899DBDF8230F0A48 (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0014; } } { Il2CppChar L_1 = ___0_c; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsSurrogate(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m80A375ED5DD1A92FBD91A89571E54376310E6340 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsSurrogate_m80A375ED5DD1A92FBD91A89571E54376310E6340_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___1_index; String_t* L_3 = ___0_s; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { 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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsSurrogate_m80A375ED5DD1A92FBD91A89571E54376310E6340_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___0_s; int32_t L_7 = ___1_index; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsSurrogate_mDCAB7B29DC13EDCE8A0F7ED2899DBDF8230F0A48(L_8, NULL); return L_9; } } // System.Boolean System.Char::IsWhiteSpace(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___1_index; String_t* L_3 = ___0_s; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { 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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___0_s; int32_t L_7 = ___1_index; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_8, NULL); if (!L_9) { goto IL_003d; } } { String_t* L_10 = ___0_s; int32_t L_11 = ___1_index; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_13; L_13 = Char_IsWhiteSpaceLatin1_m00CD15364DBE04162FB0928DBDFB30010CDCDA0A(L_12, NULL); return L_13; } IL_003d: { String_t* L_14 = ___0_s; int32_t L_15 = ___1_index; bool L_16; L_16 = CharUnicodeInfo_IsWhiteSpace_mD5BF9D53716470B5D68F1DC90A21A7865AD10675(L_14, L_15, NULL); return L_16; } } // System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m77918F2C9C8E103453F2146071739767CA65F6DC (Il2CppChar ___0_c, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_0, NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___0_c; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_2, NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___0_c; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m1283EB681E7CA6F948839B3D992800946D004F78(L_4, NULL); return L_5; } } // System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_mC434975D89EED4FB9B602F785526268980A49CEC (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_GetUnicodeCategory_mC434975D89EED4FB9B602F785526268980A49CEC_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___1_index; String_t* L_3 = ___0_s; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { 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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_GetUnicodeCategory_mC434975D89EED4FB9B602F785526268980A49CEC_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___0_s; int32_t L_7 = ___1_index; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsLatin1_m625E9CD04044E5A83016AFF6C3C64B164DD2ACAC(L_8, NULL); if (!L_9) { goto IL_003d; } } { String_t* L_10 = ___0_s; int32_t L_11 = ___1_index; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_13; L_13 = Char_GetLatin1UnicodeCategory_m398681F33C96D8983ED5BAA6F3959A25C43B8D43(L_12, NULL); return L_13; } IL_003d: { String_t* L_14 = ___0_s; int32_t L_15 = ___1_index; int32_t L_16; L_16 = CharUnicodeInfo_InternalGetUnicodeCategory_m32CDEE41292837256617B0CEC7005CA509F3CB34(L_14, L_15, NULL); return L_16; } } // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_mED1E5FB863528ABB0D7D3DC4DE0FAB4517760658 (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0014; } } { Il2CppChar L_1 = ___0_c; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)56319)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsHighSurrogate(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m5AE9D736862F27DA4A880C0D386137E0A3593191 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsHighSurrogate_m5AE9D736862F27DA4A880C0D386137E0A3593191_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___1_index; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001b; } } { int32_t L_3 = ___1_index; String_t* L_4 = ___0_s; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0026; } } IL_001b: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsHighSurrogate_m5AE9D736862F27DA4A880C0D386137E0A3593191_RuntimeMethod_var))); } IL_0026: { String_t* L_7 = ___0_s; int32_t L_8 = ___1_index; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_10; L_10 = Char_IsHighSurrogate_mED1E5FB863528ABB0D7D3DC4DE0FAB4517760658(L_9, NULL); return L_10; } } // System.Boolean System.Char::IsLowSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_mEE95A617A89CEB99AADAB54E025087D56CAB1BAA (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) < ((int32_t)((int32_t)56320)))) { goto IL_0014; } } { Il2CppChar L_1 = ___0_c; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m895829B934609B8480DCDC7B38130314BD876007 (Il2CppChar ___0_highSurrogate, Il2CppChar ___1_lowSurrogate, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_highSurrogate; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0026; } } { Il2CppChar L_1 = ___0_highSurrogate; if ((((int32_t)L_1) > ((int32_t)((int32_t)56319)))) { goto IL_0026; } } { Il2CppChar L_2 = ___1_lowSurrogate; if ((((int32_t)L_2) < ((int32_t)((int32_t)56320)))) { goto IL_0024; } } { Il2CppChar L_3 = ___1_lowSurrogate; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0024: { return (bool)0; } IL_0026: { return (bool)0; } } // System.Int32 System.Char::ConvertToUtf32(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_ConvertToUtf32_m3AC1CA159EF0AAF7AA30F6C6BF4D752DD534C286 (Il2CppChar ___0_highSurrogate, Il2CppChar ___1_lowSurrogate, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___0_highSurrogate; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsHighSurrogate_mED1E5FB863528ABB0D7D3DC4DE0FAB4517760658(L_0, NULL); if (L_1) { goto IL_0018; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDFEB75073613366ED790055534C407E4105DE290)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDA144A4546BA813419D20020C8E1F983163D5616)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_ConvertToUtf32_m3AC1CA159EF0AAF7AA30F6C6BF4D752DD534C286_RuntimeMethod_var))); } IL_0018: { Il2CppChar L_3 = ___1_lowSurrogate; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_4; L_4 = Char_IsLowSurrogate_mEE95A617A89CEB99AADAB54E025087D56CAB1BAA(L_3, NULL); if (L_4) { goto IL_0030; } } { 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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7C654A6F7651FC5597CD86E2E325E8384CCF203)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD8BC2BD13ADDE8D5A4042FB0941980613775040D)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_ConvertToUtf32_m3AC1CA159EF0AAF7AA30F6C6BF4D752DD534C286_RuntimeMethod_var))); } IL_0030: { Il2CppChar L_6 = ___0_highSurrogate; Il2CppChar L_7 = ___1_lowSurrogate; return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)55296))), ((int32_t)1024))), ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, ((int32_t)56320))))), ((int32_t)65536))); } } // System.Void System.Char::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Char__cctor_m76D9CDDEB74B83EDEBDDB6D3BF1EEE7A12958845 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780_37_FieldInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780_37_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_1, L_2, NULL); ((Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields*)il2cpp_codegen_static_fields_for(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))->___s_categoryForLatin1_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields*)il2cpp_codegen_static_fields_for(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))->___s_categoryForLatin1_3), (void*)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 // System.Void System.CharEnumerator::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_m64C938888062D37D44227D10723759DB93FF3717 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, String_t* ___0_str, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___0_str; __this->____str_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____str_0), (void*)L_0); __this->____index_1 = (-1); return; } } // System.Object System.CharEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CharEnumerator_Clone_m92D1E8E12B57DDAC5B459638672CB549D1FAD616 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { RuntimeObject* L_0; L_0 = Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(__this, NULL); return L_0; } } // System.Boolean System.CharEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharEnumerator_MoveNext_mAA72D69DA7D7CA043947A2114EC042BEFDBF64FF (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____index_1; String_t* L_1 = __this->____str_0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, 1))))) { goto IL_003c; } } { int32_t L_3 = __this->____index_1; __this->____index_1 = ((int32_t)il2cpp_codegen_add(L_3, 1)); String_t* L_4 = __this->____str_0; int32_t L_5 = __this->____index_1; NullCheck(L_4); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL); __this->____currentElement_2 = L_6; return (bool)1; } IL_003c: { String_t* L_7 = __this->____str_0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); __this->____index_1 = L_8; return (bool)0; } } // System.Void System.CharEnumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Dispose_mA3FB3CCABFC601A862ADD0468FA6DD62B77334A7 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____str_0; if (!L_0) { goto IL_0019; } } { String_t* L_1 = __this->____str_0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); __this->____index_1 = L_2; } IL_0019: { __this->____str_0 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->____str_0), (void*)(String_t*)NULL); return; } } // System.Object System.CharEnumerator::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CharEnumerator_System_Collections_IEnumerator_get_Current_mC5A67BD65B54B7D55A46B890659C2EFC8C799CEA (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0; L_0 = CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB(__this, NULL); Il2CppChar L_1 = L_0; RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Char System.CharEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____index_1; if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0014; } } { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB_RuntimeMethod_var))); } IL_0014: { int32_t L_2 = __this->____index_1; String_t* L_3 = __this->____str_0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((((int32_t)L_2) < ((int32_t)L_4))) { goto IL_0032; } } { 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, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB_RuntimeMethod_var))); } IL_0032: { Il2CppChar L_6 = __this->____currentElement_2; return L_6; } } // System.Void System.CharEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Reset_m731CE3C2670EA81BE60EEE301108D17010751B10 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { __this->____currentElement_2 = 0; __this->____index_1 = (-1); return; } } // System.Void System.CharEnumerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD_RuntimeMethod_var); 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.Boolean System.Convert::TryDecodeFromUtf16(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryDecodeFromUtf16_mCD2118ACA95E45067AE690E9B88E91C95865FF35 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_utf16, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___1_bytes, int32_t* ___2_consumed, int32_t* ___3_written, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; uint8_t* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int8_t* V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t V_12 = 0; { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_utf16; Il2CppChar* L_1; L_1 = MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A(L_0, MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var); V_0 = L_1; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_2 = ___1_bytes; uint8_t* L_3; L_3 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_2, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var); V_1 = L_3; int32_t L_4; L_4 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_utf16), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); V_2 = ((int32_t)(L_4&((int32_t)-4))); int32_t L_5; L_5 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___1_bytes), Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); V_3 = L_5; V_4 = 0; V_5 = 0; int32_t L_6; L_6 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_utf16), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (!L_6) { goto IL_01f7; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_7 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___s_decodingMap_0; NullCheck(L_7); V_6 = ((L_7)->GetAddressAt(static_cast(0))); int32_t L_8 = V_3; int32_t L_9 = V_2; if ((((int32_t)L_8) < ((int32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(L_9>>2)), 3))))) { goto IL_004f; } } { int32_t L_10 = V_2; V_7 = ((int32_t)il2cpp_codegen_subtract(L_10, 4)); goto IL_008c; } IL_004f: { int32_t L_11 = V_3; V_7 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(L_11/3)), 4)); goto IL_008c; } IL_0058: { Il2CppChar* L_12 = V_0; int32_t L_13 = V_4; Il2CppChar* L_14; L_14 = il2cpp_unsafe_add(L_12, L_13); int8_t* L_15 = V_6; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_16; L_16 = Convert_Decode_m74719FCFF21B855C78E3859EDCE7F92506ED2A20_inline(L_14, L_15, NULL); V_12 = L_16; int32_t L_17 = V_12; if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0201; } } { uint8_t* L_18 = V_1; int32_t L_19 = V_5; uint8_t* L_20; L_20 = il2cpp_unsafe_add(L_18, L_19); int32_t L_21 = V_12; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_WriteThreeLowOrderBytes_mF81EE1FF49E7A654C1AF5971E25F88786FAC08B1_inline(L_20, L_21, NULL); int32_t L_22 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_22, 3)); int32_t L_23 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_23, 4)); } IL_008c: { int32_t L_24 = V_4; int32_t L_25 = V_7; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_0058; } } { int32_t L_26 = V_7; int32_t L_27 = V_2; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_27, 4)))))) { goto IL_0201; } } { int32_t L_28 = V_4; int32_t L_29 = V_2; if ((((int32_t)L_28) == ((int32_t)L_29))) { goto IL_0201; } } { Il2CppChar* L_30 = V_0; int32_t L_31 = V_2; Il2CppChar* L_32; L_32 = il2cpp_unsafe_add(L_30, ((int32_t)il2cpp_codegen_subtract(L_31, 4))); int32_t L_33 = *((uint16_t*)L_32); V_8 = L_33; Il2CppChar* L_34 = V_0; int32_t L_35 = V_2; Il2CppChar* L_36; L_36 = il2cpp_unsafe_add(L_34, ((int32_t)il2cpp_codegen_subtract(L_35, 3))); int32_t L_37 = *((uint16_t*)L_36); V_9 = L_37; Il2CppChar* L_38 = V_0; int32_t L_39 = V_2; Il2CppChar* L_40; L_40 = il2cpp_unsafe_add(L_38, ((int32_t)il2cpp_codegen_subtract(L_39, 2))); int32_t L_41 = *((uint16_t*)L_40); V_10 = L_41; Il2CppChar* L_42 = V_0; int32_t L_43 = V_2; Il2CppChar* L_44; L_44 = il2cpp_unsafe_add(L_42, ((int32_t)il2cpp_codegen_subtract(L_43, 1))); int32_t L_45 = *((uint16_t*)L_44); V_11 = L_45; int32_t L_46 = V_8; int32_t L_47 = V_9; int32_t L_48 = V_10; int32_t L_49 = V_11; if (((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(L_46|L_47))|L_48))|L_49)))&((int64_t)(uint64_t)((uint32_t)((int32_t)-256)))))) { goto IL_0201; } } { int8_t* L_50 = V_6; int32_t L_51 = V_8; int8_t* L_52; L_52 = il2cpp_unsafe_add(L_50, L_51); int32_t L_53 = *((int8_t*)L_52); V_8 = L_53; int8_t* L_54 = V_6; int32_t L_55 = V_9; int8_t* L_56; L_56 = il2cpp_unsafe_add(L_54, L_55); int32_t L_57 = *((int8_t*)L_56); V_9 = L_57; int32_t L_58 = V_8; V_8 = ((int32_t)(L_58<<((int32_t)18))); int32_t L_59 = V_9; V_9 = ((int32_t)(L_59<<((int32_t)12))); int32_t L_60 = V_8; int32_t L_61 = V_9; V_8 = ((int32_t)(L_60|L_61)); int32_t L_62 = V_11; if ((((int32_t)L_62) == ((int32_t)((int32_t)61)))) { goto IL_0174; } } { int8_t* L_63 = V_6; int32_t L_64 = V_10; int8_t* L_65; L_65 = il2cpp_unsafe_add(L_63, L_64); int32_t L_66 = *((int8_t*)L_65); V_10 = L_66; int8_t* L_67 = V_6; int32_t L_68 = V_11; int8_t* L_69; L_69 = il2cpp_unsafe_add(L_67, L_68); int32_t L_70 = *((int8_t*)L_69); V_11 = L_70; int32_t L_71 = V_10; V_10 = ((int32_t)(L_71<<6)); int32_t L_72 = V_8; int32_t L_73 = V_11; V_8 = ((int32_t)(L_72|L_73)); int32_t L_74 = V_8; int32_t L_75 = V_10; V_8 = ((int32_t)(L_74|L_75)); int32_t L_76 = V_8; if ((((int32_t)L_76) < ((int32_t)0))) { goto IL_0201; } } { int32_t L_77 = V_5; int32_t L_78 = V_3; if ((((int32_t)L_77) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_78, 3))))) { goto IL_0201; } } { uint8_t* L_79 = V_1; int32_t L_80 = V_5; uint8_t* L_81; L_81 = il2cpp_unsafe_add(L_79, L_80); int32_t L_82 = V_8; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_WriteThreeLowOrderBytes_mF81EE1FF49E7A654C1AF5971E25F88786FAC08B1_inline(L_81, L_82, NULL); int32_t L_83 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_83, 3)); goto IL_01e7; } IL_0174: { int32_t L_84 = V_10; if ((((int32_t)L_84) == ((int32_t)((int32_t)61)))) { goto IL_01c6; } } { int8_t* L_85 = V_6; int32_t L_86 = V_10; int8_t* L_87; L_87 = il2cpp_unsafe_add(L_85, L_86); int32_t L_88 = *((int8_t*)L_87); V_10 = L_88; int32_t L_89 = V_10; V_10 = ((int32_t)(L_89<<6)); int32_t L_90 = V_8; int32_t L_91 = V_10; V_8 = ((int32_t)(L_90|L_91)); int32_t L_92 = V_8; if ((((int32_t)L_92) < ((int32_t)0))) { goto IL_0201; } } { int32_t L_93 = V_5; int32_t L_94 = V_3; if ((((int32_t)L_93) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_94, 2))))) { goto IL_0201; } } { uint8_t* L_95 = V_1; int32_t L_96 = V_5; uint8_t* L_97; L_97 = il2cpp_unsafe_add(L_95, L_96); int32_t L_98 = V_8; *((int8_t*)L_97) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_98>>((int32_t)16)))); uint8_t* L_99 = V_1; int32_t L_100 = V_5; uint8_t* L_101; L_101 = il2cpp_unsafe_add(L_99, ((int32_t)il2cpp_codegen_add(L_100, 1))); int32_t L_102 = V_8; *((int8_t*)L_101) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_102>>8))); int32_t L_103 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_103, 2)); goto IL_01e7; } IL_01c6: { int32_t L_104 = V_8; if ((((int32_t)L_104) < ((int32_t)0))) { goto IL_0201; } } { int32_t L_105 = V_5; int32_t L_106 = V_3; if ((((int32_t)L_105) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_106, 1))))) { goto IL_0201; } } { uint8_t* L_107 = V_1; int32_t L_108 = V_5; uint8_t* L_109; L_109 = il2cpp_unsafe_add(L_107, L_108); int32_t L_110 = V_8; *((int8_t*)L_109) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_110>>((int32_t)16)))); int32_t L_111 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_111, 1)); } IL_01e7: { int32_t L_112 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_112, 4)); int32_t L_113 = V_2; int32_t L_114; L_114 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_utf16), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((!(((uint32_t)L_113) == ((uint32_t)L_114)))) { goto IL_0201; } } IL_01f7: { int32_t* L_115 = ___2_consumed; int32_t L_116 = V_4; *((int32_t*)L_115) = (int32_t)L_116; int32_t* L_117 = ___3_written; int32_t L_118 = V_5; *((int32_t*)L_117) = (int32_t)L_118; return (bool)1; } IL_0201: { int32_t* L_119 = ___2_consumed; int32_t L_120 = V_4; *((int32_t*)L_119) = (int32_t)L_120; int32_t* L_121 = ___3_written; int32_t L_122 = V_5; *((int32_t*)L_121) = (int32_t)L_122; return (bool)0; } } // System.Int32 System.Convert::Decode(System.Char&,System.SByte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_Decode_m74719FCFF21B855C78E3859EDCE7F92506ED2A20 (Il2CppChar* ___0_encodedChars, int8_t* ___1_decodingMap, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { Il2CppChar* L_0 = ___0_encodedChars; int32_t L_1 = *((uint16_t*)L_0); V_0 = L_1; Il2CppChar* L_2 = ___0_encodedChars; Il2CppChar* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = *((uint16_t*)L_3); V_1 = L_4; Il2CppChar* L_5 = ___0_encodedChars; Il2CppChar* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = *((uint16_t*)L_6); V_2 = L_7; Il2CppChar* L_8 = ___0_encodedChars; Il2CppChar* L_9; L_9 = il2cpp_unsafe_add(L_8, 3); int32_t L_10 = *((uint16_t*)L_9); V_3 = L_10; int32_t L_11 = V_0; int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_3; if (!((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(L_11|L_12))|L_13))|L_14)))&((int64_t)(uint64_t)((uint32_t)((int32_t)-256)))))) { goto IL_0031; } } { return (-1); } IL_0031: { int8_t* L_15 = ___1_decodingMap; int32_t L_16 = V_0; int8_t* L_17; L_17 = il2cpp_unsafe_add(L_15, L_16); int32_t L_18 = *((int8_t*)L_17); V_0 = L_18; int8_t* L_19 = ___1_decodingMap; int32_t L_20 = V_1; int8_t* L_21; L_21 = il2cpp_unsafe_add(L_19, L_20); int32_t L_22 = *((int8_t*)L_21); V_1 = L_22; int8_t* L_23 = ___1_decodingMap; int32_t L_24 = V_2; int8_t* L_25; L_25 = il2cpp_unsafe_add(L_23, L_24); int32_t L_26 = *((int8_t*)L_25); V_2 = L_26; int8_t* L_27 = ___1_decodingMap; int32_t L_28 = V_3; int8_t* L_29; L_29 = il2cpp_unsafe_add(L_27, L_28); int32_t L_30 = *((int8_t*)L_29); V_3 = L_30; int32_t L_31 = V_0; V_0 = ((int32_t)(L_31<<((int32_t)18))); int32_t L_32 = V_1; V_1 = ((int32_t)(L_32<<((int32_t)12))); int32_t L_33 = V_2; V_2 = ((int32_t)(L_33<<6)); int32_t L_34 = V_0; int32_t L_35 = V_3; V_0 = ((int32_t)(L_34|L_35)); int32_t L_36 = V_1; int32_t L_37 = V_2; V_1 = ((int32_t)(L_36|L_37)); int32_t L_38 = V_0; int32_t L_39 = V_1; V_0 = ((int32_t)(L_38|L_39)); int32_t L_40 = V_0; return L_40; } } // System.Void System.Convert::WriteThreeLowOrderBytes(System.Byte&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert_WriteThreeLowOrderBytes_mF81EE1FF49E7A654C1AF5971E25F88786FAC08B1 (uint8_t* ___0_destination, int32_t ___1_value, const RuntimeMethod* method) { { uint8_t* L_0 = ___0_destination; int32_t L_1 = ___1_value; *((int8_t*)L_0) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_1>>((int32_t)16)))); uint8_t* L_2 = ___0_destination; uint8_t* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = ___1_value; *((int8_t*)L_3) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_4>>8))); uint8_t* L_5 = ___0_destination; uint8_t* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = ___1_value; *((int8_t*)L_6) = (int8_t)((int32_t)(uint8_t)L_7); return; } } // System.TypeCode System.Convert::GetTypeCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_GetTypeCode_m57E3F1098168AF54F81B2ACD84804DED13726DF1 (RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (int32_t)(0); } IL_0005: { RuntimeObject* L_1 = ___0_value; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0016; } } { RuntimeObject* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.TypeCode System.IConvertible::GetTypeCode() */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_3); return L_4; } IL_0016: { return (int32_t)(1); } } // System.Object System.Convert::ChangeType(System.Object,System.TypeCode,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m8BF1D537CE047AB07C6809187838E7DD69ABB3D3 (RuntimeObject* ___0_value, int32_t ___1_typeCode, RuntimeObject* ___2_provider, 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*)&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*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_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*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = ___0_value; if (L_0) { goto IL_0011; } } { int32_t L_1 = ___1_typeCode; if (!L_1) { goto IL_000f; } } { int32_t L_2 = ___1_typeCode; if ((((int32_t)L_2) == ((int32_t)((int32_t)18)))) { goto IL_000f; } } { int32_t L_3 = ___1_typeCode; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0011; } } IL_000f: { return NULL; } IL_0011: { RuntimeObject* L_4 = ___0_value; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (L_5) { goto IL_0026; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_6 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_6); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F1AD4518CCFE15EDA37B314B2AF64D13616FF7B)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m8BF1D537CE047AB07C6809187838E7DD69ABB3D3_RuntimeMethod_var))); } IL_0026: { int32_t L_7 = ___1_typeCode; switch (L_7) { case 0: { goto IL_0148; } case 1: { goto IL_013b; } case 2: { goto IL_013d; } case 3: { goto IL_007d; } case 4: { goto IL_008a; } case 5: { goto IL_0097; } case 6: { goto IL_00a4; } case 7: { goto IL_00b1; } case 8: { goto IL_00be; } case 9: { goto IL_00cb; } case 10: { goto IL_00d8; } case 11: { goto IL_00e5; } case 12: { goto IL_00f2; } case 13: { goto IL_00ff; } case 14: { goto IL_010c; } case 15: { goto IL_0119; } case 16: { goto IL_0126; } case 17: { goto IL_0153; } case 18: { goto IL_0133; } } } { goto IL_0153; } IL_007d: { RuntimeObject* L_8 = V_0; RuntimeObject* L_9 = ___2_provider; NullCheck(L_8); bool L_10; L_10 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_8, L_9); bool L_11 = L_10; RuntimeObject* L_12 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_11); return L_12; } IL_008a: { RuntimeObject* L_13 = V_0; RuntimeObject* L_14 = ___2_provider; NullCheck(L_13); Il2CppChar L_15; L_15 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_13, L_14); Il2CppChar L_16 = L_15; RuntimeObject* L_17 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_16); return L_17; } IL_0097: { RuntimeObject* L_18 = V_0; RuntimeObject* L_19 = ___2_provider; NullCheck(L_18); int8_t L_20; L_20 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_18, L_19); int8_t L_21 = L_20; RuntimeObject* L_22 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_21); return L_22; } IL_00a4: { RuntimeObject* L_23 = V_0; RuntimeObject* L_24 = ___2_provider; NullCheck(L_23); uint8_t L_25; L_25 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_23, L_24); uint8_t L_26 = L_25; RuntimeObject* L_27 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_26); return L_27; } IL_00b1: { RuntimeObject* L_28 = V_0; RuntimeObject* L_29 = ___2_provider; NullCheck(L_28); int16_t L_30; L_30 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_28, L_29); int16_t L_31 = L_30; RuntimeObject* L_32 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_31); return L_32; } IL_00be: { RuntimeObject* L_33 = V_0; RuntimeObject* L_34 = ___2_provider; NullCheck(L_33); uint16_t L_35; L_35 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_33, L_34); uint16_t L_36 = L_35; RuntimeObject* L_37 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_36); return L_37; } IL_00cb: { RuntimeObject* L_38 = V_0; RuntimeObject* L_39 = ___2_provider; NullCheck(L_38); int32_t L_40; L_40 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_38, L_39); int32_t L_41 = L_40; RuntimeObject* L_42 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_41); return L_42; } IL_00d8: { RuntimeObject* L_43 = V_0; RuntimeObject* L_44 = ___2_provider; NullCheck(L_43); uint32_t L_45; L_45 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_43, L_44); uint32_t L_46 = L_45; RuntimeObject* L_47 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_46); return L_47; } IL_00e5: { RuntimeObject* L_48 = V_0; RuntimeObject* L_49 = ___2_provider; NullCheck(L_48); int64_t L_50; L_50 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_48, L_49); int64_t L_51 = L_50; RuntimeObject* L_52 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_51); return L_52; } IL_00f2: { RuntimeObject* L_53 = V_0; RuntimeObject* L_54 = ___2_provider; NullCheck(L_53); uint64_t L_55; L_55 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_53, L_54); uint64_t L_56 = L_55; RuntimeObject* L_57 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_56); return L_57; } IL_00ff: { RuntimeObject* L_58 = V_0; RuntimeObject* L_59 = ___2_provider; NullCheck(L_58); float L_60; L_60 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_58, L_59); float L_61 = L_60; RuntimeObject* L_62 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_61); return L_62; } IL_010c: { RuntimeObject* L_63 = V_0; RuntimeObject* L_64 = ___2_provider; NullCheck(L_63); double L_65; L_65 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_63, L_64); double L_66 = L_65; RuntimeObject* L_67 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_66); return L_67; } IL_0119: { RuntimeObject* L_68 = V_0; RuntimeObject* L_69 = ___2_provider; NullCheck(L_68); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_70; L_70 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_68, L_69); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_71 = L_70; RuntimeObject* L_72 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_71); return L_72; } IL_0126: { RuntimeObject* L_73 = V_0; RuntimeObject* L_74 = ___2_provider; NullCheck(L_73); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_75; L_75 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_73, L_74); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_76 = L_75; RuntimeObject* L_77 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_76); return L_77; } IL_0133: { RuntimeObject* L_78 = V_0; RuntimeObject* L_79 = ___2_provider; NullCheck(L_78); String_t* L_80; L_80 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_78, L_79); return L_80; } IL_013b: { RuntimeObject* L_81 = ___0_value; return L_81; } IL_013d: { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_82 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_82); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_82, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6EACEF8019EA40E4CAD15A87CBACA290240853)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_82, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m8BF1D537CE047AB07C6809187838E7DD69ABB3D3_RuntimeMethod_var))); } IL_0148: { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_83 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_83); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_83, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD7403858372506828AB1160BA0EFCF96B17133FE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_83, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m8BF1D537CE047AB07C6809187838E7DD69ABB3D3_RuntimeMethod_var))); } IL_0153: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_84 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_84); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_84, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAA1D7FE08F191E4056596171109A07D018736F00)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m8BF1D537CE047AB07C6809187838E7DD69ABB3D3_RuntimeMethod_var))); } } // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC (RuntimeObject* ___0_value, Type_t* ___1_targetType, RuntimeObject* ___2_provider, 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*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_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*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_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*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_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; } { Type_t* L_0 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC_RuntimeMethod_var))); } IL_0014: { RuntimeObject* L_3 = ___0_value; NullCheck(L_3); Type_t* L_4; L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL); Type_t* L_5 = ___1_targetType; if ((!(((RuntimeObject*)(Type_t*)L_4) == ((RuntimeObject*)(Type_t*)L_5)))) { goto IL_001f; } } { RuntimeObject* L_6 = ___0_value; return L_6; } IL_001f: { Type_t* L_7 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_8); int32_t L_9 = 3; Type_t* L_10 = (L_8)->GetAt(static_cast(L_9)); if ((!(((RuntimeObject*)(Type_t*)L_7) == ((RuntimeObject*)(Type_t*)L_10)))) { goto IL_0036; } } { RuntimeObject* L_11 = ___0_value; RuntimeObject* L_12 = ___2_provider; NullCheck(L_11); bool L_13; L_13 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_11, L_12); bool L_14 = L_13; RuntimeObject* L_15 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_14); return L_15; } IL_0036: { Type_t* L_16 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_17 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_17); int32_t L_18 = 4; Type_t* L_19 = (L_17)->GetAt(static_cast(L_18)); if ((!(((RuntimeObject*)(Type_t*)L_16) == ((RuntimeObject*)(Type_t*)L_19)))) { goto IL_004d; } } { RuntimeObject* L_20 = ___0_value; RuntimeObject* L_21 = ___2_provider; NullCheck(L_20); Il2CppChar L_22; L_22 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_20, L_21); Il2CppChar L_23 = L_22; RuntimeObject* L_24 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_23); return L_24; } IL_004d: { Type_t* L_25 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_26); int32_t L_27 = 5; Type_t* L_28 = (L_26)->GetAt(static_cast(L_27)); if ((!(((RuntimeObject*)(Type_t*)L_25) == ((RuntimeObject*)(Type_t*)L_28)))) { goto IL_0064; } } { RuntimeObject* L_29 = ___0_value; RuntimeObject* L_30 = ___2_provider; NullCheck(L_29); int8_t L_31; L_31 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_29, L_30); int8_t L_32 = L_31; RuntimeObject* L_33 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_32); return L_33; } IL_0064: { Type_t* L_34 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_35 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_35); int32_t L_36 = 6; Type_t* L_37 = (L_35)->GetAt(static_cast(L_36)); if ((!(((RuntimeObject*)(Type_t*)L_34) == ((RuntimeObject*)(Type_t*)L_37)))) { goto IL_007b; } } { RuntimeObject* L_38 = ___0_value; RuntimeObject* L_39 = ___2_provider; NullCheck(L_38); uint8_t L_40; L_40 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_38, L_39); uint8_t L_41 = L_40; RuntimeObject* L_42 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_41); return L_42; } IL_007b: { Type_t* L_43 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_44 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_44); int32_t L_45 = 7; Type_t* L_46 = (L_44)->GetAt(static_cast(L_45)); if ((!(((RuntimeObject*)(Type_t*)L_43) == ((RuntimeObject*)(Type_t*)L_46)))) { goto IL_0092; } } { RuntimeObject* L_47 = ___0_value; RuntimeObject* L_48 = ___2_provider; NullCheck(L_47); int16_t L_49; L_49 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_47, L_48); int16_t L_50 = L_49; RuntimeObject* L_51 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_50); return L_51; } IL_0092: { Type_t* L_52 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_53 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_53); int32_t L_54 = 8; Type_t* L_55 = (L_53)->GetAt(static_cast(L_54)); if ((!(((RuntimeObject*)(Type_t*)L_52) == ((RuntimeObject*)(Type_t*)L_55)))) { goto IL_00a9; } } { RuntimeObject* L_56 = ___0_value; RuntimeObject* L_57 = ___2_provider; NullCheck(L_56); uint16_t L_58; L_58 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_56, L_57); uint16_t L_59 = L_58; RuntimeObject* L_60 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_59); return L_60; } IL_00a9: { Type_t* L_61 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_62 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_62); int32_t L_63 = ((int32_t)9); Type_t* L_64 = (L_62)->GetAt(static_cast(L_63)); if ((!(((RuntimeObject*)(Type_t*)L_61) == ((RuntimeObject*)(Type_t*)L_64)))) { goto IL_00c1; } } { RuntimeObject* L_65 = ___0_value; RuntimeObject* L_66 = ___2_provider; NullCheck(L_65); int32_t L_67; L_67 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_65, L_66); int32_t L_68 = L_67; RuntimeObject* L_69 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_68); return L_69; } IL_00c1: { Type_t* L_70 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_71 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_71); int32_t L_72 = ((int32_t)10); Type_t* L_73 = (L_71)->GetAt(static_cast(L_72)); if ((!(((RuntimeObject*)(Type_t*)L_70) == ((RuntimeObject*)(Type_t*)L_73)))) { goto IL_00d9; } } { RuntimeObject* L_74 = ___0_value; RuntimeObject* L_75 = ___2_provider; NullCheck(L_74); uint32_t L_76; L_76 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_74, L_75); uint32_t L_77 = L_76; RuntimeObject* L_78 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_77); return L_78; } IL_00d9: { Type_t* L_79 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_80 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_80); int32_t L_81 = ((int32_t)11); Type_t* L_82 = (L_80)->GetAt(static_cast(L_81)); if ((!(((RuntimeObject*)(Type_t*)L_79) == ((RuntimeObject*)(Type_t*)L_82)))) { goto IL_00f1; } } { RuntimeObject* L_83 = ___0_value; RuntimeObject* L_84 = ___2_provider; NullCheck(L_83); int64_t L_85; L_85 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_83, L_84); int64_t L_86 = L_85; RuntimeObject* L_87 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_86); return L_87; } IL_00f1: { Type_t* L_88 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_89 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_89); int32_t L_90 = ((int32_t)12); Type_t* L_91 = (L_89)->GetAt(static_cast(L_90)); if ((!(((RuntimeObject*)(Type_t*)L_88) == ((RuntimeObject*)(Type_t*)L_91)))) { goto IL_0109; } } { RuntimeObject* L_92 = ___0_value; RuntimeObject* L_93 = ___2_provider; NullCheck(L_92); uint64_t L_94; L_94 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_92, L_93); uint64_t L_95 = L_94; RuntimeObject* L_96 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_95); return L_96; } IL_0109: { Type_t* L_97 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_98 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_98); int32_t L_99 = ((int32_t)13); Type_t* L_100 = (L_98)->GetAt(static_cast(L_99)); if ((!(((RuntimeObject*)(Type_t*)L_97) == ((RuntimeObject*)(Type_t*)L_100)))) { goto IL_0121; } } { RuntimeObject* L_101 = ___0_value; RuntimeObject* L_102 = ___2_provider; NullCheck(L_101); float L_103; L_103 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_101, L_102); float L_104 = L_103; RuntimeObject* L_105 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_104); return L_105; } IL_0121: { Type_t* L_106 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_107 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_107); int32_t L_108 = ((int32_t)14); Type_t* L_109 = (L_107)->GetAt(static_cast(L_108)); if ((!(((RuntimeObject*)(Type_t*)L_106) == ((RuntimeObject*)(Type_t*)L_109)))) { goto IL_0139; } } { RuntimeObject* L_110 = ___0_value; RuntimeObject* L_111 = ___2_provider; NullCheck(L_110); double L_112; L_112 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_110, L_111); double L_113 = L_112; RuntimeObject* L_114 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_113); return L_114; } IL_0139: { Type_t* L_115 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_116 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_116); int32_t L_117 = ((int32_t)15); Type_t* L_118 = (L_116)->GetAt(static_cast(L_117)); if ((!(((RuntimeObject*)(Type_t*)L_115) == ((RuntimeObject*)(Type_t*)L_118)))) { goto IL_0151; } } { RuntimeObject* L_119 = ___0_value; RuntimeObject* L_120 = ___2_provider; NullCheck(L_119); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_121; L_121 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_119, L_120); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_122 = L_121; RuntimeObject* L_123 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_122); return L_123; } IL_0151: { Type_t* L_124 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_125 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_125); int32_t L_126 = ((int32_t)16); Type_t* L_127 = (L_125)->GetAt(static_cast(L_126)); if ((!(((RuntimeObject*)(Type_t*)L_124) == ((RuntimeObject*)(Type_t*)L_127)))) { goto IL_0169; } } { RuntimeObject* L_128 = ___0_value; RuntimeObject* L_129 = ___2_provider; NullCheck(L_128); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_130; L_130 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_128, L_129); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_131 = L_130; RuntimeObject* L_132 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_131); return L_132; } IL_0169: { Type_t* L_133 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_134 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_134); int32_t L_135 = ((int32_t)18); Type_t* L_136 = (L_134)->GetAt(static_cast(L_135)); if ((!(((RuntimeObject*)(Type_t*)L_133) == ((RuntimeObject*)(Type_t*)L_136)))) { goto IL_017c; } } { RuntimeObject* L_137 = ___0_value; RuntimeObject* L_138 = ___2_provider; NullCheck(L_137); String_t* L_139; L_139 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_137, L_138); return L_139; } IL_017c: { Type_t* L_140 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_141 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_141); int32_t L_142 = 1; Type_t* L_143 = (L_141)->GetAt(static_cast(L_142)); if ((!(((RuntimeObject*)(Type_t*)L_140) == ((RuntimeObject*)(Type_t*)L_143)))) { goto IL_0188; } } { RuntimeObject* L_144 = ___0_value; return L_144; } IL_0188: { Type_t* L_145 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Type_t* L_146 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___EnumType_2; if ((!(((RuntimeObject*)(Type_t*)L_145) == ((RuntimeObject*)(Type_t*)L_146)))) { goto IL_0197; } } { RuntimeObject* L_147 = ___0_value; return ((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)CastclassClass((RuntimeObject*)L_147, Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var)); } IL_0197: { Type_t* L_148 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_149 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))))->___ConvertTypes_1; NullCheck(L_149); int32_t L_150 = 2; Type_t* L_151 = (L_149)->GetAt(static_cast(L_150)); if ((!(((RuntimeObject*)(Type_t*)L_148) == ((RuntimeObject*)(Type_t*)L_151)))) { goto IL_01ac; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_152 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_152); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_152, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6EACEF8019EA40E4CAD15A87CBACA290240853)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_152, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC_RuntimeMethod_var))); } IL_01ac: { Type_t* L_153 = ___1_targetType; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_154 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))))->___ConvertTypes_1; NullCheck(L_154); int32_t L_155 = 0; Type_t* L_156 = (L_154)->GetAt(static_cast(L_155)); if ((!(((RuntimeObject*)(Type_t*)L_153) == ((RuntimeObject*)(Type_t*)L_156)))) { goto IL_01c1; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_157 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_157); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_157, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD7403858372506828AB1160BA0EFCF96B17133FE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_157, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC_RuntimeMethod_var))); } IL_01c1: { RuntimeObject* L_158 = ___0_value; NullCheck(L_158); Type_t* L_159; L_159 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_158, NULL); NullCheck(L_159); String_t* L_160; L_160 = VirtualFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_159); Type_t* L_161 = ___1_targetType; NullCheck(L_161); String_t* L_162; L_162 = VirtualFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_161); String_t* L_163; L_163 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), L_160, L_162, NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_164 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_164); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_164, L_163, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_164, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC_RuntimeMethod_var))); } } // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B (RuntimeObject* ___0_value, Type_t* ___1_conversionType, RuntimeObject* ___2_provider, 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*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_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*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_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*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_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; } RuntimeObject* V_0 = NULL; { Type_t* L_0 = ___1_conversionType; 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*)&_stringLiteralD1B787616D5CE0182CB13A50CA0FB55C49EAA951)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B_RuntimeMethod_var))); } IL_000e: { RuntimeObject* L_2 = ___0_value; if (L_2) { goto IL_0026; } } { Type_t* L_3 = ___1_conversionType; NullCheck(L_3); bool L_4; L_4 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_3, NULL); if (!L_4) { goto IL_0024; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_5 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_5); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEE4EDD00A82071245CB66FD4E82F95F687C2E2CA)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B_RuntimeMethod_var))); } IL_0024: { return NULL; } IL_0026: { RuntimeObject* L_6 = ___0_value; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_0; if (L_7) { goto IL_004b; } } { RuntimeObject* L_8 = ___0_value; NullCheck(L_8); Type_t* L_9; L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL); Type_t* L_10 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_11; L_11 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_9, L_10, NULL); if (!L_11) { goto IL_0040; } } { RuntimeObject* L_12 = ___0_value; return L_12; } IL_0040: { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_13 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_13); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F1AD4518CCFE15EDA37B314B2AF64D13616FF7B)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B_RuntimeMethod_var))); } IL_004b: { Type_t* L_14 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_15 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_15); int32_t L_16 = 3; Type_t* L_17 = (L_15)->GetAt(static_cast(L_16)); if ((!(((RuntimeObject*)(Type_t*)L_14) == ((RuntimeObject*)(Type_t*)L_17)))) { goto IL_0062; } } { RuntimeObject* L_18 = V_0; RuntimeObject* L_19 = ___2_provider; NullCheck(L_18); bool L_20; L_20 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_18, L_19); bool L_21 = L_20; RuntimeObject* L_22 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_21); return L_22; } IL_0062: { Type_t* L_23 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_24 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_24); int32_t L_25 = 4; Type_t* L_26 = (L_24)->GetAt(static_cast(L_25)); if ((!(((RuntimeObject*)(Type_t*)L_23) == ((RuntimeObject*)(Type_t*)L_26)))) { goto IL_0079; } } { RuntimeObject* L_27 = V_0; RuntimeObject* L_28 = ___2_provider; NullCheck(L_27); Il2CppChar L_29; L_29 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_27, L_28); Il2CppChar L_30 = L_29; RuntimeObject* L_31 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_30); return L_31; } IL_0079: { Type_t* L_32 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_33 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_33); int32_t L_34 = 5; Type_t* L_35 = (L_33)->GetAt(static_cast(L_34)); if ((!(((RuntimeObject*)(Type_t*)L_32) == ((RuntimeObject*)(Type_t*)L_35)))) { goto IL_0090; } } { RuntimeObject* L_36 = V_0; RuntimeObject* L_37 = ___2_provider; NullCheck(L_36); int8_t L_38; L_38 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_36, L_37); int8_t L_39 = L_38; RuntimeObject* L_40 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_39); return L_40; } IL_0090: { Type_t* L_41 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_42 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_42); int32_t L_43 = 6; Type_t* L_44 = (L_42)->GetAt(static_cast(L_43)); if ((!(((RuntimeObject*)(Type_t*)L_41) == ((RuntimeObject*)(Type_t*)L_44)))) { goto IL_00a7; } } { RuntimeObject* L_45 = V_0; RuntimeObject* L_46 = ___2_provider; NullCheck(L_45); uint8_t L_47; L_47 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_45, L_46); uint8_t L_48 = L_47; RuntimeObject* L_49 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_48); return L_49; } IL_00a7: { Type_t* L_50 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_51 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_51); int32_t L_52 = 7; Type_t* L_53 = (L_51)->GetAt(static_cast(L_52)); if ((!(((RuntimeObject*)(Type_t*)L_50) == ((RuntimeObject*)(Type_t*)L_53)))) { goto IL_00be; } } { RuntimeObject* L_54 = V_0; RuntimeObject* L_55 = ___2_provider; NullCheck(L_54); int16_t L_56; L_56 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_54, L_55); int16_t L_57 = L_56; RuntimeObject* L_58 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_57); return L_58; } IL_00be: { Type_t* L_59 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_60 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_60); int32_t L_61 = 8; Type_t* L_62 = (L_60)->GetAt(static_cast(L_61)); if ((!(((RuntimeObject*)(Type_t*)L_59) == ((RuntimeObject*)(Type_t*)L_62)))) { goto IL_00d5; } } { RuntimeObject* L_63 = V_0; RuntimeObject* L_64 = ___2_provider; NullCheck(L_63); uint16_t L_65; L_65 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_63, L_64); uint16_t L_66 = L_65; RuntimeObject* L_67 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_66); return L_67; } IL_00d5: { Type_t* L_68 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_69 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_69); int32_t L_70 = ((int32_t)9); Type_t* L_71 = (L_69)->GetAt(static_cast(L_70)); if ((!(((RuntimeObject*)(Type_t*)L_68) == ((RuntimeObject*)(Type_t*)L_71)))) { goto IL_00ed; } } { RuntimeObject* L_72 = V_0; RuntimeObject* L_73 = ___2_provider; NullCheck(L_72); int32_t L_74; L_74 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_72, L_73); int32_t L_75 = L_74; RuntimeObject* L_76 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_75); return L_76; } IL_00ed: { Type_t* L_77 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_78 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_78); int32_t L_79 = ((int32_t)10); Type_t* L_80 = (L_78)->GetAt(static_cast(L_79)); if ((!(((RuntimeObject*)(Type_t*)L_77) == ((RuntimeObject*)(Type_t*)L_80)))) { goto IL_0105; } } { RuntimeObject* L_81 = V_0; RuntimeObject* L_82 = ___2_provider; NullCheck(L_81); uint32_t L_83; L_83 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_81, L_82); uint32_t L_84 = L_83; RuntimeObject* L_85 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_84); return L_85; } IL_0105: { Type_t* L_86 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_87 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_87); int32_t L_88 = ((int32_t)11); Type_t* L_89 = (L_87)->GetAt(static_cast(L_88)); if ((!(((RuntimeObject*)(Type_t*)L_86) == ((RuntimeObject*)(Type_t*)L_89)))) { goto IL_011d; } } { RuntimeObject* L_90 = V_0; RuntimeObject* L_91 = ___2_provider; NullCheck(L_90); int64_t L_92; L_92 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_90, L_91); int64_t L_93 = L_92; RuntimeObject* L_94 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_93); return L_94; } IL_011d: { Type_t* L_95 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_96 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_96); int32_t L_97 = ((int32_t)12); Type_t* L_98 = (L_96)->GetAt(static_cast(L_97)); if ((!(((RuntimeObject*)(Type_t*)L_95) == ((RuntimeObject*)(Type_t*)L_98)))) { goto IL_0135; } } { RuntimeObject* L_99 = V_0; RuntimeObject* L_100 = ___2_provider; NullCheck(L_99); uint64_t L_101; L_101 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_99, L_100); uint64_t L_102 = L_101; RuntimeObject* L_103 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_102); return L_103; } IL_0135: { Type_t* L_104 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_105 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_105); int32_t L_106 = ((int32_t)13); Type_t* L_107 = (L_105)->GetAt(static_cast(L_106)); if ((!(((RuntimeObject*)(Type_t*)L_104) == ((RuntimeObject*)(Type_t*)L_107)))) { goto IL_014d; } } { RuntimeObject* L_108 = V_0; RuntimeObject* L_109 = ___2_provider; NullCheck(L_108); float L_110; L_110 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_108, L_109); float L_111 = L_110; RuntimeObject* L_112 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_111); return L_112; } IL_014d: { Type_t* L_113 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_114 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_114); int32_t L_115 = ((int32_t)14); Type_t* L_116 = (L_114)->GetAt(static_cast(L_115)); if ((!(((RuntimeObject*)(Type_t*)L_113) == ((RuntimeObject*)(Type_t*)L_116)))) { goto IL_0165; } } { RuntimeObject* L_117 = V_0; RuntimeObject* L_118 = ___2_provider; NullCheck(L_117); double L_119; L_119 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_117, L_118); double L_120 = L_119; RuntimeObject* L_121 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_120); return L_121; } IL_0165: { Type_t* L_122 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_123 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_123); int32_t L_124 = ((int32_t)15); Type_t* L_125 = (L_123)->GetAt(static_cast(L_124)); if ((!(((RuntimeObject*)(Type_t*)L_122) == ((RuntimeObject*)(Type_t*)L_125)))) { goto IL_017d; } } { RuntimeObject* L_126 = V_0; RuntimeObject* L_127 = ___2_provider; NullCheck(L_126); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_128; L_128 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_126, L_127); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_129 = L_128; RuntimeObject* L_130 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_129); return L_130; } IL_017d: { Type_t* L_131 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_132 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_132); int32_t L_133 = ((int32_t)16); Type_t* L_134 = (L_132)->GetAt(static_cast(L_133)); if ((!(((RuntimeObject*)(Type_t*)L_131) == ((RuntimeObject*)(Type_t*)L_134)))) { goto IL_0195; } } { RuntimeObject* L_135 = V_0; RuntimeObject* L_136 = ___2_provider; NullCheck(L_135); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_137; L_137 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_135, L_136); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_138 = L_137; RuntimeObject* L_139 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_138); return L_139; } IL_0195: { Type_t* L_140 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_141 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_141); int32_t L_142 = ((int32_t)18); Type_t* L_143 = (L_141)->GetAt(static_cast(L_142)); if ((!(((RuntimeObject*)(Type_t*)L_140) == ((RuntimeObject*)(Type_t*)L_143)))) { goto IL_01a8; } } { RuntimeObject* L_144 = V_0; RuntimeObject* L_145 = ___2_provider; NullCheck(L_144); String_t* L_146; L_146 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_144, L_145); return L_146; } IL_01a8: { Type_t* L_147 = ___1_conversionType; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_148 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_148); int32_t L_149 = 1; Type_t* L_150 = (L_148)->GetAt(static_cast(L_149)); if ((!(((RuntimeObject*)(Type_t*)L_147) == ((RuntimeObject*)(Type_t*)L_150)))) { goto IL_01b4; } } { RuntimeObject* L_151 = ___0_value; return L_151; } IL_01b4: { RuntimeObject* L_152 = V_0; Type_t* L_153 = ___1_conversionType; RuntimeObject* L_154 = ___2_provider; NullCheck(L_152); RuntimeObject* L_155; L_155 = InterfaceFuncInvoker2< RuntimeObject*, Type_t*, RuntimeObject* >::Invoke(16 /* System.Object System.IConvertible::ToType(System.Type,System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_152, L_153, L_154); return L_155; } } // System.Void System.Convert::ThrowCharOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC99BA0F7C5275BAC3DB1C2977F176767DEE5F49E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowSByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAA9D877CB849FA2C146CC4091473E628678EE371)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC26DCD8294CF8DDECC03D1B5FEBFE3E8670F4219)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowUInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5757B8984ECA25A84C0677373F5C2FACE97337A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DD3DE8CCECA489C7DDD3362FC292A3BE39B68F1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowUInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF072EABB286891F7AE6ED11AF63686B8B0F5023E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt64OverflowException_m8173BB38CD04FDD339F0EDDC8BB38CC20E3FE152 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93FFE29C2506591FD366855C12526B4678FB1953)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowInt64OverflowException_m8173BB38CD04FDD339F0EDDC8BB38CC20E3FE152_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowUInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E7A8A503AFD36DF33873AAF1E540F2FC2BC00F1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27_RuntimeMethod_var))); } } // System.Boolean System.Convert::ToBoolean(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m35ABFE9171C8E44E23C95CD872DFEF2F2B643214 (RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); bool L_2; L_2 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (bool)0; } } // System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m0E8AE169ABC127B0A317EE6312A04BC1F8AB4C63 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); bool L_3; L_3 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (bool)0; } } // System.Boolean System.Convert::ToBoolean(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m08869AB20A14620D048F15CB9F9DCBACF418D831 (int8_t ___0_value, const RuntimeMethod* method) { { int8_t L_0 = ___0_value; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m6148BAC617B69CACDF14A8C74836767DFF0CB6A9 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m830240DE3FA926A96214C98799EB652767920C5D (int16_t ___0_value, const RuntimeMethod* method) { { int16_t L_0 = ___0_value; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mB2E2255F6635773E63B07955F1A9CEE3DD2BEBD2 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mE5E29C04982F778600F57587CD121FEB55A31102 (int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m13A843DD048F337907C7FABF8EFE10740E71035E (uint32_t ___0_value, const RuntimeMethod* method) { { uint32_t L_0 = ___0_value; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mA01D3E552D09BBD08F4EA8837305B5645CC9504F (int64_t ___0_value, const RuntimeMethod* method) { { int64_t L_0 = ___0_value; return (bool)((!(((uint64_t)L_0) <= ((uint64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m05F089541074D7D9F542D838F932D6F82E93A565 (uint64_t ___0_value, const RuntimeMethod* method) { { uint64_t L_0 = ___0_value; return (bool)((!(((uint64_t)L_0) <= ((uint64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mD992FD3A8073C8D1A8868FC64E2E83C091CCA7B7 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { String_t* L_1 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_2; L_2 = Boolean_Parse_mC9B4406FE9DA904E2B7D75267CAD38E837D39A6D(L_1, NULL); return L_2; } } // System.Boolean System.Convert::ToBoolean(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m73A44AA68F53847BAC4B938953612587F8FBF61B (float ___0_value, const RuntimeMethod* method) { { float L_0 = ___0_value; return (bool)((((int32_t)((((float)L_0) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m92A8027B40D880C42CCBF1527275E85CCF79BFF4 (double ___0_value, const RuntimeMethod* method) { { double L_0 = ___0_value; return (bool)((((int32_t)((((double)L_0) == ((double)(0.0)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mC539496407F533C9B54D0C480DACBCB77D282879 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_0; bool L_2; L_2 = Decimal_op_Inequality_mCFFC6B60AEDE8CFB2DEABD97FF0F2B79A31E2690(L_0, L_1, NULL); return L_2; } } // System.Char System.Convert::ToChar(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mD7A17FF850812934B49F910EA28555291B94AF3E (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); Il2CppChar L_3; L_3 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.Char System.Convert::ToChar(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m8422FC3EEE3AEBEE97E2ED0CC003E0BB38F021BD (int8_t ___0_value, 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; } { int8_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD(NULL); } IL_0009: { int8_t L_1 = ___0_value; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m6E532F05E049A23446AEE906828CDC10E21164C6 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return L_0; } } // System.Char System.Convert::ToChar(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m4E0547B73A4342B880E7E61EF99A06AD938E11B6 (int16_t ___0_value, 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; } { int16_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD(NULL); } IL_0009: { int16_t L_1 = ___0_value; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m08CF3AED7C36963D96106A1C27E33160DAB96437 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return L_0; } } // System.Char System.Convert::ToChar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mF1B1B205DDEFDE52251235514E7DAFCAB37D1F24 (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD(NULL); } IL_0011: { int32_t L_2 = ___0_value; return ((int32_t)(uint16_t)L_2); } } // System.Char System.Convert::ToChar(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m834038D5AA682D73CCEB70F14BED4E0FEB06D08C (uint32_t ___0_value, 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; } { uint32_t L_0 = ___0_value; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD(NULL); } IL_000d: { uint32_t L_1 = ___0_value; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m0B9D52AD6057382F34CF7EE53A8152CEF83FAAAD (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000e; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)65535))))) { goto IL_0013; } } IL_000e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD(NULL); } IL_0013: { int64_t L_2 = ___0_value; return ((int32_t)(uint16_t)L_2); } } // System.Char System.Convert::ToChar(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m04CA3B22C809F6EE3EF980945904ADDC102E23E4 (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)65535)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_mDE895898BC084DCBAB1F38EF999D040FC3A90BDD(NULL); } IL_000e: { uint64_t L_1 = ___0_value; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m05E12620C91AC9BCF2610FB3E4E610C43E2D3833 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; 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*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToChar_m05E12620C91AC9BCF2610FB3E4E610C43E2D3833_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_value; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0022; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_4 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_4); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToChar_m05E12620C91AC9BCF2610FB3E4E610C43E2D3833_RuntimeMethod_var))); } IL_0022: { String_t* L_5 = ___0_value; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); return L_6; } } // System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBE8C7E66907604DC03626D4F0FAC39A59DBBA07C (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int8_t L_3; L_3 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (int8_t)0; } } // System.SByte System.Convert::ToSByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m59678AB8F11FBA30D4B34B2E00A1855BB4FFE854 (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (int8_t)0; } IL_0005: { return (int8_t)1; } } // System.SByte System.Convert::ToSByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mAFED7E2534210710E704D42B7AAEF527873D924E (Il2CppChar ___0_value, 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; } { Il2CppChar L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000a: { Il2CppChar L_1 = ___0_value; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBDE6A7BFA62003218AB1EC4713F320EE3D4A355A (uint8_t ___0_value, 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; } { uint8_t L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000a: { uint8_t L_1 = ___0_value; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m9D9C12B48356F079491F63B2F0523C28C5DEE3C1 (int16_t ___0_value, 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; } { int16_t L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)((int32_t)-128)))) { goto IL_000a; } } { int16_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)127)))) { goto IL_000f; } } IL_000a: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000f: { int16_t L_2 = ___0_value; return ((int8_t)L_2); } } // System.SByte System.Convert::ToSByte(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m784E18B21C0186429CA53B2569494B2D7DE32D91 (uint16_t ___0_value, 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; } { uint16_t L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000a: { uint16_t L_1 = ___0_value; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mA336C42E413A5559B3F47FCD8B45EDB538693E63 (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)((int32_t)-128)))) { goto IL_000a; } } { int32_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)127)))) { goto IL_000f; } } IL_000a: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000f: { int32_t L_2 = ___0_value; return ((int8_t)L_2); } } // System.SByte System.Convert::ToSByte(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m27B31300CFB128D3506BAA19108047724211985D (uint32_t ___0_value, 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; } { uint32_t L_0 = ___0_value; if ((((int64_t)((int64_t)(uint64_t)L_0)) <= ((int64_t)((int64_t)((int32_t)127))))) { goto IL_000c; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000c: { uint32_t L_1 = ___0_value; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m34F71D89B8BAB21D84B61A3061F3BEF398F77BD5 (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)((int32_t)-128))))) { goto IL_000c; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)127))))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_0011: { int64_t L_2 = ___0_value; return ((int8_t)L_2); } } // System.SByte System.Convert::ToSByte(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mB3768F3CED0C57F11CCCA131EA3B196DE92736E5 (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)127)))))) { goto IL_000b; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m308AAF2D1375ACC9633C32225E3A28CC113F8D62(NULL); } IL_000b: { uint64_t L_1 = ___0_value; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m56DAE9421C6CF1715E574E930F43EBDA8B9435A0 (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_m05A832AD69077878500D5430BAA62CEAE0C69E9A(((double)L_0), NULL); return L_1; } } // System.SByte System.Convert::ToSByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m05A832AD69077878500D5430BAA62CEAE0C69E9A (double ___0_value, 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; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A(L_0, NULL); int8_t L_2; L_2 = Convert_ToSByte_mA336C42E413A5559B3F47FCD8B45EDB538693E63(L_1, NULL); return L_2; } } // System.SByte System.Convert::ToSByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m84D484EC6EE43811F72126E48DEAAD3F89F1BE02 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); int8_t L_2; L_2 = Decimal_ToSByte_m211D84E3EADB6343707D108FA33C1B8BC89AAA66(L_1, NULL); return L_2; } } // System.SByte System.Convert::ToSByte(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m6468413DF8FE43EA23C30E6781892CD7629C20FF (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; RuntimeObject* L_1 = ___1_provider; int8_t L_2; L_2 = SByte_Parse_mAC7251E4586FF9DAE8C7766B4C0935E44CF4D52D(L_0, 7, L_1, NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m63FE13D0A942AB4CD0D0DC1E0D0AAB6E0A44C1C0 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint8_t L_3; L_3 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (uint8_t)0; } } // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC22A7EFFB28AA32D8F797E456E92BA88DBA19A08 (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { return (uint8_t)1; } } // System.Byte System.Convert::ToByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m9CC1302B0E62A32203AF91B40BF71A251EDF17C6 (Il2CppChar ___0_value, 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; } { Il2CppChar L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)255)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_000d: { Il2CppChar L_1 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mD455B949182AA811E826B26E3C564404277392D3 (int8_t ___0_value, 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; } { int8_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_0009: { int8_t L_1 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m54E83315FC863058B9296A5635EA762AEE77EAF0 (int16_t ___0_value, 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; } { int16_t L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int16_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_0011: { int16_t L_2 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_2); } } // System.Byte System.Convert::ToByte(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mD6838EC4B56BCE4A089C7E5C178F0023F2328B60 (uint16_t ___0_value, 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; } { uint16_t L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)255)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_000d: { uint16_t L_1 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mB200A29D6E5CE42D564544DF1DC8852BF3582833 (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_0011: { int32_t L_2 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_2); } } // System.Byte System.Convert::ToByte(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC49EF3673FC1AB3B87CB32BA6BD40F3A97D9730A (uint32_t ___0_value, 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; } { uint32_t L_0 = ___0_value; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)255))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_000d: { uint32_t L_1 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m96416919DF26393273E78E41D822056D3366A2A7 (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000e; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)255))))) { goto IL_0013; } } IL_000e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_0013: { int64_t L_2 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_2); } } // System.Byte System.Convert::ToByte(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m0B3676E0120D2AED44774AAD2F06031E8749764F (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)255)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m0BF1E54703FF7A69AC9ABC06692E549E1168A6C7(NULL); } IL_000e: { uint64_t L_1 = ___0_value; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m562731D7CD88E5D6A0B91E05D1B626BC9939E388 (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint8_t L_1; L_1 = Convert_ToByte_m88201B22EF9B335B5792606D43769F0648B98B55(((double)L_0), NULL); return L_1; } } // System.Byte System.Convert::ToByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m88201B22EF9B335B5792606D43769F0648B98B55 (double ___0_value, 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; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A(L_0, NULL); uint8_t L_2; L_2 = Convert_ToByte_mB200A29D6E5CE42D564544DF1DC8852BF3582833(L_1, NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m860A8AE345ACF3D0B10D81C8AD3E284A546E4D9E (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); uint8_t L_2; L_2 = Decimal_ToByte_mBE8A7251C6C68901EF08BC30CE996B3BD9700975(L_1, NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mED8F90805B486284A253AB1E711016DF13379F77 (String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { String_t* L_1 = ___0_value; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2; L_2 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); uint8_t L_3; L_3 = Byte_Parse_mD8D1AE5779910F7B2BA39ABF641972078F48B3EE(L_1, L_2, NULL); return L_3; } } // System.Byte System.Convert::ToByte(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mB25C393D7EADAFCBAEAB042BEFCE625A27FDA24E (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; uint8_t L_3; L_3 = Byte_Parse_m7866E33CE8480D5A4482C65F0CF9D1CCF0BD887C(L_1, 7, L_2, NULL); return L_3; } } // System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1AF2427BF57FDC4FE946A195A548EE7BE1423E67 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int16_t L_3; L_3 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (int16_t)0; } } // System.Int16 System.Convert::ToInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m099E6D99AF93A412ACBA929CD564867BFFF2A438 (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (int16_t)0; } IL_0005: { return (int16_t)1; } } // System.Int16 System.Convert::ToInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mA0303B3EF9247EEA563A0EF6B53BCE574B021FF7 (Il2CppChar ___0_value, 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; } { Il2CppChar L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3(NULL); } IL_000d: { Il2CppChar L_1 = ___0_value; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mB696E3C3DF5C6D2A271C61C744A0A2AD853A14F7 (int8_t ___0_value, const RuntimeMethod* method) { { int8_t L_0 = ___0_value; return L_0; } } // System.Int16 System.Convert::ToInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mAC8ED23E9E3543C1D79CB1EFA37B663024C883D5 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return L_0; } } // System.Int16 System.Convert::ToInt16(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m130AC3AFD8C3E589E450CB71FC0DB156B4594E25 (uint16_t ___0_value, 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; } { uint16_t L_0 = ___0_value; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3(NULL); } IL_000d: { uint16_t L_1 = ___0_value; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF65D8227B8B6F0E30A135BC5F01F1562455AD382 (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)((int32_t)-32768)))) { goto IL_0010; } } { int32_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)32767)))) { goto IL_0015; } } IL_0010: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3(NULL); } IL_0015: { int32_t L_2 = ___0_value; return ((int16_t)L_2); } } // System.Int16 System.Convert::ToInt16(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF808171F101EEF7C5B3CF8132139AAF1315788EE (uint32_t ___0_value, 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; } { uint32_t L_0 = ___0_value; if ((((int64_t)((int64_t)(uint64_t)L_0)) <= ((int64_t)((int64_t)((int32_t)32767))))) { goto IL_000f; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3(NULL); } IL_000f: { uint32_t L_1 = ___0_value; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m20D3670C6C1809B66B445143B4703AA79B13C0DC (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)((int32_t)-32768))))) { goto IL_0012; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)32767))))) { goto IL_0017; } } IL_0012: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3(NULL); } IL_0017: { int64_t L_2 = ___0_value; return ((int16_t)L_2); } } // System.Int16 System.Convert::ToInt16(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m2537494C2218C0F003E597DDD61E2E5815B2BDEE (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)32767)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m9F0D72835B19A8E5F6BB31BB15F2744548375DE3(NULL); } IL_000e: { uint64_t L_1 = ___0_value; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mD3632668808F8502053A6F9FAA6803053A2500D4 (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_mF86636F78E7A272307B7F20FE4E6318A1213138E(((double)L_0), NULL); return L_1; } } // System.Int16 System.Convert::ToInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF86636F78E7A272307B7F20FE4E6318A1213138E (double ___0_value, 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; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A(L_0, NULL); int16_t L_2; L_2 = Convert_ToInt16_mF65D8227B8B6F0E30A135BC5F01F1562455AD382(L_1, NULL); return L_2; } } // System.Int16 System.Convert::ToInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m8B0F55CF358A223045E5291646A6956536F2D6FA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); int16_t L_2; L_2 = Decimal_ToInt16_m37D5D5520DCE0F0CEBE0C76719DC7225F1287D0A(L_1, NULL); return L_2; } } // System.Int16 System.Convert::ToInt16(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mB89C9850CA7ECC0FB868839E4FA7CBB15D348B08 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (int16_t)0; } IL_0005: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; int16_t L_3; L_3 = Int16_Parse_m78DA88EC72F896F3698019DF6CDAAFFCC1B42C91(L_1, 7, L_2, NULL); return L_3; } } // System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m969E0C990405007A56096B06BDA3ECD613F4DD0E (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint16_t L_3; L_3 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (uint16_t)0; } } // System.UInt16 System.Convert::ToUInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m80834AC27723FA50B90650F4C1E3227B1BAD79BD (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (uint16_t)0; } IL_0005: { return (uint16_t)1; } } // System.UInt16 System.Convert::ToUInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m64B8E95EE8175E71F0F09FFECB2EE403B37D9F60 (Il2CppChar ___0_value, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_value; return L_0; } } // System.UInt16 System.Convert::ToUInt16(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m360FA12D9670B64358632295754217D17591EB5C (int8_t ___0_value, 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; } { int8_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D(NULL); } IL_0009: { int8_t L_1 = ___0_value; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mF87147711F2A9354CFB9C5E6BC8A779EEED223D7 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return L_0; } } // System.UInt16 System.Convert::ToUInt16(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m750DF199DBBAE6689EC6496ED0A7A41414CBD3E9 (int16_t ___0_value, 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; } { int16_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D(NULL); } IL_0009: { int16_t L_1 = ___0_value; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA3ABC9268BA473D6F1C7801248D3200734180B2B (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D(NULL); } IL_0011: { int32_t L_2 = ___0_value; return (uint16_t)((int32_t)(uint16_t)L_2); } } // System.UInt16 System.Convert::ToUInt16(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mB77969FEAE4369D6C23B454ECBEC0110C45A8B63 (uint32_t ___0_value, 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; } { uint32_t L_0 = ___0_value; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D(NULL); } IL_000d: { uint32_t L_1 = ___0_value; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m6715B1D98870AD885663D783D86EE678EBE6986F (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000e; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)65535))))) { goto IL_0013; } } IL_000e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D(NULL); } IL_0013: { int64_t L_2 = ___0_value; return (uint16_t)((int32_t)(uint16_t)L_2); } } // System.UInt16 System.Convert::ToUInt16(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA5FD9E8B898211234FB5CFAC21E24E0ADE26386D (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)65535)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_mD8F065C1EEAAB8FF7E01EA6458F8E72AD4B36C3D(NULL); } IL_000e: { uint64_t L_1 = ___0_value; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mED633569E38E21A353AB94FAC298A72200B2BCA4 (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_mD76E9E8434AC1C72D68248D744D9DA2B2E9E9DD3(((double)L_0), NULL); return L_1; } } // System.UInt16 System.Convert::ToUInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mD76E9E8434AC1C72D68248D744D9DA2B2E9E9DD3 (double ___0_value, 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; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A(L_0, NULL); uint16_t L_2; L_2 = Convert_ToUInt16_mA3ABC9268BA473D6F1C7801248D3200734180B2B(L_1, NULL); return L_2; } } // System.UInt16 System.Convert::ToUInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m3960B47800AF3B498DCC8B45CB196BBA90B80369 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); uint16_t L_2; L_2 = Decimal_ToUInt16_mF8AC13F99A326DFF69E4E267F0058414AC39EF4E(L_1, NULL); return L_2; } } // System.UInt16 System.Convert::ToUInt16(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m6ABD176E68C9D323DDCD5AFB76197F4474AC2A5D (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return (uint16_t)0; } IL_0005: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; uint16_t L_3; L_3 = UInt16_Parse_mB0C8DBDC44E6624A4EE2F50B28DA2E3BC842F075(L_1, 7, L_2, NULL); return L_3; } } // System.Int32 System.Convert::ToInt32(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m9FEA65DB96264479B5268014F10754787382D297 (RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return 0; } } // System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5C8BF1D45F508E7AEDA393AE72555148527E3ED3 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int32_t L_3; L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.Int32 System.Convert::ToInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m54E891D837D238AD3700E7554AA565E69A7BC983 (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { return 1; } } // System.Int32 System.Convert::ToInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mDBBE9318A7CCE1560974CE93F5BFED9931CF0052 (Il2CppChar ___0_value, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_value; return L_0; } } // System.Int32 System.Convert::ToInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD8869793A34ED86D38EFDF4BFCDD8D03FBBCCAB6 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return L_0; } } // System.Int32 System.Convert::ToInt32(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m708CB4FF71A3D4E08CBAAF70F290D093BD80AFCC (int16_t ___0_value, const RuntimeMethod* method) { { int16_t L_0 = ___0_value; return L_0; } } // System.Int32 System.Convert::ToInt32(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m350A3CBA3E031A3D53D14062D7E4ABB4A33F5438 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return L_0; } } // System.Int32 System.Convert::ToInt32(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5ADD7A6890AE40D05444F58D72FDEC7252D6D7F2 (uint32_t ___0_value, 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; } { uint32_t L_0 = ___0_value; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)2147483647LL))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2(NULL); } IL_000d: { uint32_t L_1 = ___0_value; return L_1; } } // System.Int32 System.Convert::ToInt32(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mA857F99F1CACB73D7DB85E26638E7CC1A2CD5C78 (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)((int32_t)-2147483648LL))))) { goto IL_0012; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)2147483647LL))))) { goto IL_0017; } } IL_0012: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2(NULL); } IL_0017: { int64_t L_2 = ___0_value; return ((int32_t)L_2); } } // System.Int32 System.Convert::ToInt32(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m2904FEA37C4A865B5699A531272DBB1B0DF0AB8D (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)2147483647LL)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt32OverflowException_m908472B62637486C8FF3CECAA1D16510AAF33FB2(NULL); } IL_000e: { uint64_t L_1 = ___0_value; return ((int32_t)L_1); } } // System.Int32 System.Convert::ToInt32(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m2DD4FF5B07C196D209F4ED8EA8E86CD19207AABE (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A(((double)L_0), NULL); return L_1; } } // System.Int32 System.Convert::ToInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A (double ___0_value, const RuntimeMethod* method) { int32_t V_0 = 0; double V_1 = 0.0; int32_t V_2 = 0; double V_3 = 0.0; { double L_0 = ___0_value; if ((!(((double)L_0) >= ((double)(0.0))))) { goto IL_0043; } } { double L_1 = ___0_value; if ((!(((double)L_1) < ((double)(2147483647.5))))) { goto IL_007a; } } { double L_2 = ___0_value; V_0 = il2cpp_codegen_cast_double_to_int(L_2); double L_3 = ___0_value; int32_t L_4 = V_0; V_1 = ((double)il2cpp_codegen_subtract(L_3, ((double)L_4))); double L_5 = V_1; if ((((double)L_5) > ((double)(0.5)))) { goto IL_003d; } } { double L_6 = V_1; if ((!(((double)L_6) == ((double)(0.5))))) { goto IL_0041; } } { int32_t L_7 = V_0; if (!((int32_t)(L_7&1))) { goto IL_0041; } } IL_003d: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1)); } IL_0041: { int32_t L_9 = V_0; return L_9; } IL_0043: { double L_10 = ___0_value; if ((!(((double)L_10) >= ((double)(-2147483648.5))))) { goto IL_007a; } } { double L_11 = ___0_value; V_2 = il2cpp_codegen_cast_double_to_int(L_11); double L_12 = ___0_value; int32_t L_13 = V_2; V_3 = ((double)il2cpp_codegen_subtract(L_12, ((double)L_13))); double L_14 = V_3; if ((((double)L_14) < ((double)(-0.5)))) { goto IL_0074; } } { double L_15 = V_3; if ((!(((double)L_15) == ((double)(-0.5))))) { goto IL_0078; } } { int32_t L_16 = V_2; if (!((int32_t)(L_16&1))) { goto IL_0078; } } IL_0074: { int32_t L_17 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, 1)); } IL_0078: { int32_t L_18 = V_2; return L_18; } IL_007a: { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_19 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_19); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DD3DE8CCECA489C7DDD3362FC292A3BE39B68F1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A_RuntimeMethod_var))); } } // System.Int32 System.Convert::ToInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mBE66D4EE083FDE96BB722B10D7D23FC1748B0525 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); int32_t L_2; L_2 = Decimal_ToInt32_m282A421D17BB3E10C2D14F5C8CE81847228D1E21(L_1, NULL); return L_2; } } // System.Int32 System.Convert::ToInt32(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m0DED37AC1A3B9B431A9833BDBC4F5B37C2BC407A (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; int32_t L_3; L_3 = Int32_Parse_m410BA2190FCC7986F94B65C6A3E9AED0932BE521(L_1, 7, L_2, NULL); return L_3; } } // System.UInt32 System.Convert::ToUInt32(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m43E1714EE10A586A708C133F3302844B7FF2E350 (RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint32_t L_2; L_2 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return 0; } } // System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mCC380571850E1E2B603731842E70D00741ED5D3C (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint32_t L_3; L_3 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.UInt32 System.Convert::ToUInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m4B48C6526BA290E3D8C7BF687A7B69B0ACA6EE06 (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { return 1; } } // System.UInt32 System.Convert::ToUInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m74C12C6CEF6B7B1FC50F899B358824FCCC71F7B6 (Il2CppChar ___0_value, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_value; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB4FD52D493FD518BD693BDBD770589B1E4866A1C (int8_t ___0_value, 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; } { int8_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C(NULL); } IL_0009: { int8_t L_1 = ___0_value; return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m5D482A246A0FB48FCA9A3EB69EEC7ECFA307C69F (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m04B73ED6E3C9D5226E7755B57B44417B58F22053 (int16_t ___0_value, 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; } { int16_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C(NULL); } IL_0009: { int16_t L_1 = ___0_value; return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m5EF4499F6514E66E0358C161B79CCC832D2F5729 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m3BD840FA8B5073EDD04AD3D3A044785EB00511A3 (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C(NULL); } IL_0009: { int32_t L_1 = ___0_value; return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m8754C042D71DB6C81EB54D85B73B7EC2710E4FA0 (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000a; } } { int64_t L_1 = ___0_value; if ((((int64_t)L_1) <= ((int64_t)((int64_t)(uint64_t)((uint32_t)(-1)))))) { goto IL_000f; } } IL_000a: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C(NULL); } IL_000f: { int64_t L_2 = ___0_value; return ((int32_t)(uint32_t)L_2); } } // System.UInt32 System.Convert::ToUInt32(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m32FF6CCC6C935251DD40D88D6ED2C4B39C9CFA0D (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)(uint64_t)((uint32_t)(-1))))))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m09C85890B2DF86720DC7B150FD7DA1C3EF1FCF4C(NULL); } IL_000a: { uint64_t L_1 = ___0_value; return ((int32_t)(uint32_t)L_1); } } // System.UInt32 System.Convert::ToUInt32(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m28D7D89C7B66C6DF2A88B68973D5691BF28D61CB (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B(((double)L_0), NULL); return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B (double ___0_value, const RuntimeMethod* method) { uint32_t V_0 = 0; double V_1 = 0.0; { double L_0 = ___0_value; if ((!(((double)L_0) >= ((double)(-0.5))))) { goto IL_0044; } } { double L_1 = ___0_value; if ((!(((double)L_1) < ((double)(4294967295.5))))) { goto IL_0044; } } { double L_2 = ___0_value; V_0 = il2cpp_codegen_cast_floating_point(L_2); double L_3 = ___0_value; uint32_t L_4 = V_0; V_1 = ((double)il2cpp_codegen_subtract(L_3, ((double)((double)(uint32_t)L_4)))); double L_5 = V_1; if ((((double)L_5) > ((double)(0.5)))) { goto IL_003e; } } { double L_6 = V_1; if ((!(((double)L_6) == ((double)(0.5))))) { goto IL_0042; } } { uint32_t L_7 = V_0; if (!((int32_t)((int32_t)L_7&1))) { goto IL_0042; } } IL_003e: { uint32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, 1)); } IL_0042: { uint32_t L_9 = V_0; return L_9; } IL_0044: { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_10 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_10); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF072EABB286891F7AE6ED11AF63686B8B0F5023E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B_RuntimeMethod_var))); } } // System.UInt32 System.Convert::ToUInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mE24BF451803F2FCC99B039E98AF0C3C2BB6C8654 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); uint32_t L_2; L_2 = Decimal_ToUInt32_m916E71A3FCEF0FFC4CACC7AEAAFF5E6703A22C51(L_1, NULL); return L_2; } } // System.UInt32 System.Convert::ToUInt32(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC6A45EDA9AB23DDE54537AF2E9ED6CEA4DED60FD (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; uint32_t L_3; L_3 = UInt32_Parse_mDA54DE4F6E05DE5E452FAB70248AC62C6F97EE96(L_1, 7, L_2, NULL); return L_3; } } // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m6CA00ABB70FAD8242C62ED9913F7D7C3B811FC31 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int64_t L_3; L_3 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return ((int64_t)0); } } // System.Int64 System.Convert::ToInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mF86C29EEA54FF517772904669CA87193CCC41A86 (bool ___0_value, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___0_value; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return ((int64_t)G_B3_0); } } // System.Int64 System.Convert::ToInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m664E0209A25CA5E794A35FDFC3152493DC10154E (Il2CppChar ___0_value, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mA8B6FD1F766AA8A14DD50D27D120E31D2F6FF498 (int8_t ___0_value, const RuntimeMethod* method) { { int8_t L_0 = ___0_value; return ((int64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mDF5F001FD9BCF9A16158B0BA977DB7139C556BAB (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m32348A81492FC998FD6DFE675C337EC0359CD8E0 (int16_t ___0_value, const RuntimeMethod* method) { { int16_t L_0 = ___0_value; return ((int64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m222D9D3C149B456BBCA94C69E28419F1CCD28011 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m96FAEEA01C1BA082BB3925CC2099C0591DBF632A (int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; return ((int64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mDBCA1C09FD81078B6BEC7A0767835B9ED158E732 (uint32_t ___0_value, const RuntimeMethod* method) { { uint32_t L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mB147063CED08EF20CA5C42A6EA0E0F8F24AA1FBC (uint64_t ___0_value, 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; } { uint64_t L_0 = ___0_value; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)(std::numeric_limits::max)()))))) { goto IL_0011; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt64OverflowException_m8173BB38CD04FDD339F0EDDC8BB38CC20E3FE152(NULL); } IL_0011: { uint64_t L_1 = ___0_value; return L_1; } } // System.Int64 System.Convert::ToInt64(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m1203ADC6847D3814963382077D6791E9199DA5BC (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333(((double)L_0), NULL); return L_1; } } // System.Int64 System.Convert::ToInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333 (double ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); double L_1; L_1 = bankers_round(L_0); if (L_1 > (double)((std::numeric_limits::max)())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333_RuntimeMethod_var); return il2cpp_codegen_cast_double_to_int(L_1); } } // System.Int64 System.Convert::ToInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m14A806A04D90932B4F316E56E76A4B6C5899EEC1 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); int64_t L_2; L_2 = Decimal_ToInt64_mE41CD0D0316D97F17B2B0590F804C4AA9A8C19F3(L_1, NULL); return L_2; } } // System.Int64 System.Convert::ToInt64(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mE141C5A7AE0C7A127BA9B6D165F3098B10726591 (String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { String_t* L_1 = ___0_value; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2; L_2 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); int64_t L_3; L_3 = Int64_Parse_mAE2EACBD4520D1EEE5AA32B228D5DA2ED83DDDA5(L_1, L_2, NULL); return L_3; } } // System.Int64 System.Convert::ToInt64(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m849AF82E6C86C69E45DDDD095A39679D036239B7 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; int64_t L_3; L_3 = Int64_Parse_m3B1B54542F45772CEDBA7B371C287742A5FF7430(L_1, 7, L_2, NULL); return L_3; } } // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA2BE4A2841686E8B79607BA469368B4FB4D40F34 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint64_t L_3; L_3 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return ((int64_t)0); } } // System.UInt64 System.Convert::ToUInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m0AF8E2E2CDC0BAB00D4731A91FE08C152A2F9BD2 (bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { return ((int64_t)1); } } // System.UInt64 System.Convert::ToUInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mD35B9CFCB4C188FCD8E195A4839D7FFF0A7D75E2 (Il2CppChar ___0_value, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m2613DCBC3B80AC7F15AB4DBEA4A5D05AB23E0D88 (int8_t ___0_value, 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; } { int8_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27(NULL); } IL_0009: { int8_t L_1 = ___0_value; return ((int64_t)L_1); } } // System.UInt64 System.Convert::ToUInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mEE1402515F6D94369BCA6838B6A576BA28FA1A80 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mBC2F335F529042F26FEE842CC38966FBDD45C007 (int16_t ___0_value, 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; } { int16_t L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27(NULL); } IL_0009: { int16_t L_1 = ___0_value; return ((int64_t)L_1); } } // System.UInt64 System.Convert::ToUInt64(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m6020590A3AB08E5DC8EFB06B58B49622164B24D2 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m53C3A45C87A06F25957619222B04EABFD214373C (int32_t ___0_value, 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 L_0 = ___0_value; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27(NULL); } IL_0009: { int32_t L_1 = ___0_value; return ((int64_t)L_1); } } // System.UInt64 System.Convert::ToUInt64(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m91C774E0D3AA8368D12AB8E2036E823C4FA9CB92 (uint32_t ___0_value, const RuntimeMethod* method) { { uint32_t L_0 = ___0_value; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mDC842A03AB192EF47059253789BE224E41200D77 (int64_t ___0_value, 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; } { int64_t L_0 = ___0_value; if ((((int64_t)L_0) >= ((int64_t)((int64_t)0)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_m6C4AA9E596E63146816BAA7372D769CF6E992E27(NULL); } IL_000a: { int64_t L_1 = ___0_value; return L_1; } } // System.UInt64 System.Convert::ToUInt64(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mB6BD7C3C6B529271A81A86349B9C3C38ABDE6DF7 (float ___0_value, 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; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095(((double)L_0), NULL); return L_1; } } // System.UInt64 System.Convert::ToUInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095 (double ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); double L_1; L_1 = bankers_round(L_0); if (L_1 > (double)((std::numeric_limits::max)())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095_RuntimeMethod_var); return il2cpp_codegen_cast_floating_point(L_1); } } // System.UInt64 System.Convert::ToUInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mB6CF7957EA867EB4B89A90EB145B152FC20F8410 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m1DD2AAA2C9C8D2A1CDA6ECCC2724A075616FF624(L_0, 0, NULL); uint64_t L_2; L_2 = Decimal_ToUInt64_m93C3F15181D3838CA27D127CC08ED45A7C9A7728(L_1, NULL); return L_2; } } // System.UInt64 System.Convert::ToUInt64(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m3C26ECB841DA837EE4EE4C261ED564653A425613 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; uint64_t L_3; L_3 = UInt64_Parse_mCA16202D9040B305FE0C7AE61B7E869A2817A75A(L_1, 7, L_2, NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m6B47C78A7DFD7825B4361BCA8AB6748FC82165E9 (RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); float L_2; L_2 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (0.0f); } } // System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mEC65F60A081FBBB8ACBCD8747183FEDDAEC034C9 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); float L_3; L_3 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (0.0f); } } // System.Single System.Convert::ToSingle(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m7E9C1146522E76119C75A6931ECDD3848681D862 (int8_t ___0_value, const RuntimeMethod* method) { { int8_t L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m14D8B84DD1E1DF3DE2878890755A25B9B1C5E3FF (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m1FE68C7536D0D2D074E862D398F6D6BCD7B5959C (int16_t ___0_value, const RuntimeMethod* method) { { int16_t L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m141787CF7734734A9C04C971B0A807429176857E (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mE54B145DE1F8A182C3D1A66AEF3A95CB399C28CE (int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m5E1D56B0CE03C23E512E57330C4DE14A65CDD2AF (uint32_t ___0_value, const RuntimeMethod* method) { { uint32_t L_0 = ___0_value; return ((float)((double)(uint32_t)L_0)); } } // System.Single System.Convert::ToSingle(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m697F12E519F2B22097320B96DD86CFAF14DE3653 (int64_t ___0_value, const RuntimeMethod* method) { { int64_t L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mBBCA6EA85F127AB7EC454102A3EA46DC9954D7B0 (uint64_t ___0_value, const RuntimeMethod* method) { { uint64_t L_0 = ___0_value; return ((float)((double)(uint64_t)L_0)); } } // System.Single System.Convert::ToSingle(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mF6ADEF60A6A97E9E7E410D8D15B26F2D5995151E (double ___0_value, const RuntimeMethod* method) { { double L_0 = ___0_value; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mC50617003A9A7D1F8DB264FF199F1FB5A1450B39 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); float L_1; L_1 = Decimal_op_Explicit_mFE383D1954522ECA8822B56A7C59794B850FE4C1(L_0, NULL); return ((float)L_1); } } // System.Single System.Convert::ToSingle(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m8416CDFFC7641BD79BE63F39D5FAEE28986FC636 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_0009; } } { return (0.0f); } IL_0009: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; float L_3; L_3 = Single_Parse_m0E74607D17E172B4F1306E62BD12CE2905FA5638(L_1, ((int32_t)231), L_2, NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDB62EDFD0197B14286A6DEA482361F6FCD101237 (bool ___0_value, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___0_value; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return ((float)G_B3_0); } } // System.Double System.Convert::ToDouble(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m86FF4F837721833186E883102C056A35F0860EB0 (RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); double L_2; L_2 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (0.0); } } // System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m8DED60F2E0251A3D389F1DD22AA5AF9CD440ABE8 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); double L_3; L_3 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (0.0); } } // System.Double System.Convert::ToDouble(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m06D5182A9A8274DBC6F18CBC4D2AFEC0E217C89B (int8_t ___0_value, const RuntimeMethod* method) { { int8_t L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m7D9D2B308EFDB2C0F4F9A2F13F753FE4DC048859 (uint8_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mB948234E1A309DCC58F76B9B6CA716B3AF14D0AB (int16_t ___0_value, const RuntimeMethod* method) { { int16_t L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m45CB437BFB9561382456D276F1863F7E5C68DCA1 (uint16_t ___0_value, const RuntimeMethod* method) { { uint16_t L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m21A92C91FFDA003BD27748AA55CA0A7D6C0E6694 (int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m97395B9982BEC9BE6B54A8CCCE6684A325778641 (uint32_t ___0_value, const RuntimeMethod* method) { { uint32_t L_0 = ___0_value; return ((double)((double)(uint32_t)L_0)); } } // System.Double System.Convert::ToDouble(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m26ED0FBD9E8A96F2997C86BB9024067A1FB7536A (int64_t ___0_value, const RuntimeMethod* method) { { int64_t L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m3E4AF8B227AB7826ED0949BA9B3E6A71C81AFFA6 (uint64_t ___0_value, const RuntimeMethod* method) { { uint64_t L_0 = ___0_value; return ((double)((double)(uint64_t)L_0)); } } // System.Double System.Convert::ToDouble(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mA0069B20491E14DA829FAD261C279A5143B2FAED (float ___0_value, const RuntimeMethod* method) { { float L_0 = ___0_value; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m6A951645AB4F5DC4577CFE062BE0E72A528261EA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); double L_1; L_1 = Decimal_op_Explicit_mA8577A95CD02E86110976D415CA149550AD5A6C0(L_0, NULL); return ((double)L_1); } } // System.Double System.Convert::ToDouble(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mAA66A3AA3A6E53529E4F632BC69582B4B70D32B7 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (L_0) { goto IL_000d; } } { return (0.0); } IL_000d: { String_t* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; double L_3; L_3 = Double_Parse_mA6BD954627BB3B2317D7BA7D4B29DCA53C660058(L_1, ((int32_t)231), L_2, NULL); return L_3; } } // System.Double System.Convert::ToDouble(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m2E4A0A83B86E2123E98162F90B63FBE6251FCDF8 (bool ___0_value, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___0_value; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return ((double)G_B3_0); } } // System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m2A6822B7BCB33F60B9425C58248111D316C3FE4C (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, 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*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_value; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___0_value; RuntimeObject* L_2 = ___1_provider; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_3; L_3 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_4 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_0; return L_4; } } // System.Decimal System.Convert::ToDecimal(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m98D82E9780E20F20FDA89CCC4D567D4453B9B0B7 (int8_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mDB061CE44CA4598A508C29A5D672BC5CA1FDE4B7(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m12A9433E061B4F244344EE3DEBFF6447E490D98B (uint8_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mE6406CBADA3D84D55FFE80DE2DAA32EC0F497290(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m985A654461A9D8893D266393105A6C404F6D4A41 (int16_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mDBEE9D553761C542A6C4C6071BACC01A7D67E0E9(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m9C164C21B4295AB8E057E65F1DD66034E883821A (uint16_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mDA853CFE875FF320C48878FF8687A49DFDC03655(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m5A01CBDAA0FB0C7D3C62FB0F66A56041848FFB91 (int32_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mDBA4FB50BAF9CE8B75AA6ED5ABED7F597CB46177(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mD66B1638A6084A477BE2E36CA7695E31ED1A71B7 (uint32_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mBE2B47A24DD11A4DC8887C1612EC4DA5DC4EF474(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m29670FF2222B3FEE0308943C56D0662937CC063C (int64_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m8F9A38760D01B23E6DFF77EA760CCE5111F3656D(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m9DF539C628F5E4F6AE4E1EEE765B76C28C6F4EDF (uint64_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mA78C1FC00B4E76A91931998BD4FDE3574A54B090(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m0CECFA6799BA3F8CDB59C34287DD5BAE54CC0EBE (float ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Explicit_m2B8355EC2618BDE4A6813C6826D9E3B996B9E22F(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mAF1D2181BB8C5D3F25C0963245437B4AF4E6C575 (double ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___0_value; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Explicit_mC97457D67812EF62FBEC4E9C07E5DCFACAA1FE66(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mE962E577A68EFD22F1C8B27B78CEFA42BDD44877 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_0; return L_1; } IL_0009: { String_t* L_2 = ___0_value; RuntimeObject* L_3 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_4; L_4 = Decimal_Parse_m6023D6BA10DAAF7AA6443D08022299A0529B7107(L_2, ((int32_t)111), L_3, NULL); return L_4; } } // System.Decimal System.Convert::ToDecimal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m7D1B71A1F092A407A7E1AD0D0756B9886DCDC69C (bool ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; { bool L_0 = ___0_value; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mDBA4FB50BAF9CE8B75AA6ED5ABED7F597CB46177(G_B3_0, NULL); return L_1; } } // System.DateTime System.Convert::ToDateTime(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Convert_ToDateTime_mA5FF0ECBE84ECB78B337E4E101423CC9AA95C8C3 (String_t* ___0_value, RuntimeObject* ___1_provider, 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; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_000b; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; memset((&L_1), 0, sizeof(L_1)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_1), ((int64_t)0), /*hidden argument*/NULL); return L_1; } IL_000b: { String_t* L_2 = ___0_value; RuntimeObject* L_3 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTime_Parse_mC5B13ABDD2A2A2AC709D961EE959BBE26DB241AC(L_2, L_3, NULL); return L_4; } } // System.String System.Convert::ToString(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m833ABF9C901B707B28FB10DEBFCC511A87E6C827 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject* L_0 = ___0_value; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0012; } } { RuntimeObject* L_2 = V_0; RuntimeObject* L_3 = ___1_provider; NullCheck(L_2); String_t* L_4; L_4 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_2, L_3); return L_4; } IL_0012: { RuntimeObject* L_5 = ___0_value; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_1; if (!L_6) { goto IL_0025; } } { RuntimeObject* L_7 = V_1; RuntimeObject* L_8 = ___1_provider; NullCheck(L_7); String_t* L_9; L_9 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, L_7, (String_t*)NULL, L_8); return L_9; } IL_0025: { RuntimeObject* L_10 = ___0_value; if (!L_10) { goto IL_002f; } } { RuntimeObject* L_11 = ___0_value; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); return L_12; } IL_002f: { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_13; } } // System.String System.Convert::ToString(System.Char,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mF3930B3E8180F7A6B5579751128BC862CE2A324D (Il2CppChar ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&___0_value), NULL); return L_0; } } // System.String System.Convert::ToString(System.Int32,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mC65AC3BEDED3049732E8A67B496AAAEF4C732871 (int32_t ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___1_provider; String_t* L_1; L_1 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___0_value), L_0, NULL); return L_1; } } // System.Int32 System.Convert::ToInt32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD1B3AFBDA26E52D0382434804364FEF8BA241FB4 (String_t* ___0_value, int32_t ___1_fromBase, const RuntimeMethod* method) { { int32_t L_0 = ___1_fromBase; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___1_fromBase; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___1_fromBase; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___1_fromBase; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { 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_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToInt32_mD1B3AFBDA26E52D0382434804364FEF8BA241FB4_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___0_value; if (L_5) { goto IL_0022; } } { return 0; } IL_0022: { String_t* L_6 = ___0_value; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_6, NULL); int32_t L_8 = ___1_fromBase; int32_t L_9; L_9 = ParseNumbers_StringToInt_m2CF7F31B011C00E259BF9B0AC270E2C3B50847F1(L_7, L_8, ((int32_t)4096), NULL); return L_9; } } // System.String System.Convert::ToString(System.Byte,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m33C16D8DB747139A4F5012633E0ABFF1D8E69BBB (uint8_t ___0_value, int32_t ___1_toBase, const RuntimeMethod* method) { { int32_t L_0 = ___1_toBase; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___1_toBase; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___1_toBase; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___1_toBase; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { 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_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToString_m33C16D8DB747139A4F5012633E0ABFF1D8E69BBB_RuntimeMethod_var))); } IL_001d: { uint8_t L_5 = ___0_value; int32_t L_6 = ___1_toBase; String_t* L_7; L_7 = ParseNumbers_IntToString_mFE9A8B5D0CACDE306E0006371280D0EA1A5D9508(L_5, L_6, (-1), ((int32_t)32), ((int32_t)64), NULL); return L_7; } } // System.String System.Convert::ToBase64String(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mD0680EF77270244071965AFA1207921C73EEA323 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_inArray, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_inArray; 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*)&_stringLiteralB77C51162F9B76C1135D72465C09B899FF505927)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_mD0680EF77270244071965AFA1207921C73EEA323_RuntimeMethod_var))); } IL_000e: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_inArray; ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_3; memset((&L_3), 0, sizeof(L_3)); ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_inline((&L_3), L_2, /*hidden argument*/ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); String_t* L_4; L_4 = Convert_ToBase64String_m41DE2D2C15E47B698E3E06E836081E7C3C38DC06(L_3, 0, NULL); return L_4; } } // System.String System.Convert::ToBase64String(System.ReadOnlySpan`1,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m41DE2D2C15E47B698E3E06E836081E7C3C38DC06 (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_bytes, int32_t ___1_options, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; uint8_t* V_1 = NULL; uint8_t* V_2 = NULL; Il2CppChar* V_3 = NULL; String_t* V_4 = NULL; String_t* G_B7_0 = NULL; String_t* G_B6_0 = NULL; { int32_t L_0 = ___1_options; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0008; } } { int32_t L_1 = ___1_options; if ((((int32_t)L_1) <= ((int32_t)1))) { goto IL_0023; } } IL_0008: { int32_t L_2 = ___1_options; int32_t L_3 = ((int32_t)L_2); RuntimeObject* L_4 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_3); String_t* L_5; L_5 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C)), L_4, NULL); 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_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_m41DE2D2C15E47B698E3E06E836081E7C3C38DC06_RuntimeMethod_var))); } IL_0023: { int32_t L_7; L_7 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_bytes), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); if (L_7) { goto IL_0032; } } { String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_8; } IL_0032: { int32_t L_9 = ___1_options; V_0 = (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0); int32_t L_10; L_10 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_bytes), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); bool L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_12; L_12 = Convert_ToBase64_CalculateAndValidateOutputLength_m15280A1E59F3FF89468E1E846F180361AC86A5E5(L_10, L_11, NULL); String_t* L_13; L_13 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_12, NULL); ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_14 = ___0_bytes; uint8_t* L_15; L_15 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90(L_14, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D86D3A7A7F6A344D16464E6638E2BEAD3F4BC90_RuntimeMethod_var); V_2 = L_15; uint8_t* L_16 = V_2; V_1 = (uint8_t*)((uintptr_t)L_16); String_t* L_17 = L_13; V_4 = L_17; String_t* L_18 = V_4; V_3 = (Il2CppChar*)((uintptr_t)L_18); Il2CppChar* L_19 = V_3; G_B6_0 = L_17; if (!L_19) { G_B7_0 = L_17; goto IL_0065; } } { Il2CppChar* L_20 = V_3; int32_t L_21; L_21 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL); V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, L_21)); G_B7_0 = G_B6_0; } IL_0065: { Il2CppChar* L_22 = V_3; uint8_t* L_23 = V_1; int32_t L_24; L_24 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_bytes), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); bool L_25 = V_0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_26; L_26 = Convert_ConvertToBase64Array_m4F2148EF28F1F563365B82FD7CDEF28209B23DFB(L_22, L_23, 0, L_24, L_25, NULL); V_4 = (String_t*)NULL; V_2 = (uint8_t*)((uintptr_t)0); return G_B7_0; } } // System.Int32 System.Convert::ConvertToBase64Array(System.Char*,System.Byte*,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ConvertToBase64Array_m4F2148EF28F1F563365B82FD7CDEF28209B23DFB (Il2CppChar* ___0_outChars, uint8_t* ___1_inData, int32_t ___2_offset, int32_t ___3_length, bool ___4_insertLineBreaks, 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; int32_t V_4 = 0; Il2CppChar* V_5 = NULL; Il2CppChar* V_6 = NULL; { int32_t L_0 = ___3_length; V_0 = ((int32_t)(L_0%3)); int32_t L_1 = ___2_offset; int32_t L_2 = ___3_length; int32_t L_3 = V_0; V_1 = ((int32_t)il2cpp_codegen_add(L_1, ((int32_t)il2cpp_codegen_subtract(L_2, L_3)))); V_2 = 0; V_3 = 0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___base64Table_3; NullCheck(L_4); V_6 = ((L_4)->GetAddressAt(static_cast(0))); Il2CppChar* L_5 = V_6; V_5 = (Il2CppChar*)((uintptr_t)L_5); int32_t L_6 = ___2_offset; V_4 = L_6; goto IL_00e5; } IL_0028: { bool L_7 = ___4_insertLineBreaks; if (!L_7) { goto IL_0051; } } { int32_t L_8 = V_3; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)76))))) { goto IL_004d; } } { Il2CppChar* L_9 = ___0_outChars; int32_t L_10 = V_2; int32_t L_11 = L_10; V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2))))) = (int16_t)((int32_t)13); Il2CppChar* L_12 = ___0_outChars; int32_t L_13 = V_2; int32_t L_14 = L_13; V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2))))) = (int16_t)((int32_t)10); V_3 = 0; } IL_004d: { int32_t L_15 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_15, 4)); } IL_0051: { Il2CppChar* L_16 = ___0_outChars; int32_t L_17 = V_2; Il2CppChar* L_18 = V_5; uint8_t* L_19 = ___1_inData; int32_t L_20 = V_4; int32_t L_21 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, L_20))); int32_t L_22 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_21&((int32_t)252)))>>2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2))))) = (int16_t)L_22; Il2CppChar* L_23 = ___0_outChars; int32_t L_24 = V_2; Il2CppChar* L_25 = V_5; uint8_t* L_26 = ___1_inData; int32_t L_27 = V_4; int32_t L_28 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, L_27))); uint8_t* L_29 = ___1_inData; int32_t L_30 = V_4; int32_t L_31 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, ((int32_t)il2cpp_codegen_add(L_30, 1))))); int32_t L_32 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(((int32_t)(L_28&3))<<4))|((int32_t)(((int32_t)(L_31&((int32_t)240)))>>4))))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_24, 1))), 2))))) = (int16_t)L_32; Il2CppChar* L_33 = ___0_outChars; int32_t L_34 = V_2; Il2CppChar* L_35 = V_5; uint8_t* L_36 = ___1_inData; int32_t L_37 = V_4; int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, ((int32_t)il2cpp_codegen_add(L_37, 1))))); uint8_t* L_39 = ___1_inData; int32_t L_40 = V_4; int32_t L_41 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, ((int32_t)il2cpp_codegen_add(L_40, 2))))); int32_t L_42 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(((int32_t)(L_38&((int32_t)15)))<<2))|((int32_t)(((int32_t)(L_41&((int32_t)192)))>>6))))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_34, 2))), 2))))) = (int16_t)L_42; Il2CppChar* L_43 = ___0_outChars; int32_t L_44 = V_2; Il2CppChar* L_45 = V_5; uint8_t* L_46 = ___1_inData; int32_t L_47 = V_4; int32_t L_48 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, ((int32_t)il2cpp_codegen_add(L_47, 2))))); int32_t L_49 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_45, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(L_48&((int32_t)63)))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_43, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_44, 3))), 2))))) = (int16_t)L_49; int32_t L_50 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_50, 4)); int32_t L_51 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_51, 3)); } IL_00e5: { int32_t L_52 = V_4; int32_t L_53 = V_1; if ((((int32_t)L_52) < ((int32_t)L_53))) { goto IL_0028; } } { int32_t L_54 = V_1; V_4 = L_54; bool L_55 = ___4_insertLineBreaks; if (!L_55) { goto IL_0116; } } { int32_t L_56 = V_0; if (!L_56) { goto IL_0116; } } { int32_t L_57 = V_3; if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)76))))) { goto IL_0116; } } { Il2CppChar* L_58 = ___0_outChars; int32_t L_59 = V_2; int32_t L_60 = L_59; V_2 = ((int32_t)il2cpp_codegen_add(L_60, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_58, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_60), 2))))) = (int16_t)((int32_t)13); Il2CppChar* L_61 = ___0_outChars; int32_t L_62 = V_2; int32_t L_63 = L_62; V_2 = ((int32_t)il2cpp_codegen_add(L_63, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_63), 2))))) = (int16_t)((int32_t)10); } IL_0116: { int32_t L_64 = V_0; if ((((int32_t)L_64) == ((int32_t)1))) { goto IL_0199; } } { int32_t L_65 = V_0; if ((!(((uint32_t)L_65) == ((uint32_t)2)))) { goto IL_01f5; } } { Il2CppChar* L_66 = ___0_outChars; int32_t L_67 = V_2; Il2CppChar* L_68 = V_5; uint8_t* L_69 = ___1_inData; int32_t L_70 = V_4; int32_t L_71 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_69, L_70))); int32_t L_72 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_71&((int32_t)252)))>>2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_66, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_67), 2))))) = (int16_t)L_72; Il2CppChar* L_73 = ___0_outChars; int32_t L_74 = V_2; Il2CppChar* L_75 = V_5; uint8_t* L_76 = ___1_inData; int32_t L_77 = V_4; int32_t L_78 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_76, L_77))); uint8_t* L_79 = ___1_inData; int32_t L_80 = V_4; int32_t L_81 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_79, ((int32_t)il2cpp_codegen_add(L_80, 1))))); int32_t L_82 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(((int32_t)(L_78&3))<<4))|((int32_t)(((int32_t)(L_81&((int32_t)240)))>>4))))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_73, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_74, 1))), 2))))) = (int16_t)L_82; Il2CppChar* L_83 = ___0_outChars; int32_t L_84 = V_2; Il2CppChar* L_85 = V_5; uint8_t* L_86 = ___1_inData; int32_t L_87 = V_4; int32_t L_88 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_86, ((int32_t)il2cpp_codegen_add(L_87, 1))))); int32_t L_89 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_88&((int32_t)15)))<<2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_83, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_84, 2))), 2))))) = (int16_t)L_89; Il2CppChar* L_90 = ___0_outChars; int32_t L_91 = V_2; Il2CppChar* L_92 = V_5; int32_t L_93 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)64)), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_90, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_91, 3))), 2))))) = (int16_t)L_93; int32_t L_94 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_94, 4)); goto IL_01f5; } IL_0199: { Il2CppChar* L_95 = ___0_outChars; int32_t L_96 = V_2; Il2CppChar* L_97 = V_5; uint8_t* L_98 = ___1_inData; int32_t L_99 = V_4; int32_t L_100 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_98, L_99))); int32_t L_101 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_97, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_100&((int32_t)252)))>>2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_96), 2))))) = (int16_t)L_101; Il2CppChar* L_102 = ___0_outChars; int32_t L_103 = V_2; Il2CppChar* L_104 = V_5; uint8_t* L_105 = ___1_inData; int32_t L_106 = V_4; int32_t L_107 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_105, L_106))); int32_t L_108 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_104, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_107&3))<<4))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_102, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_103, 1))), 2))))) = (int16_t)L_108; Il2CppChar* L_109 = ___0_outChars; int32_t L_110 = V_2; Il2CppChar* L_111 = V_5; int32_t L_112 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_111, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)64)), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_109, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_110, 2))), 2))))) = (int16_t)L_112; Il2CppChar* L_113 = ___0_outChars; int32_t L_114 = V_2; Il2CppChar* L_115 = V_5; int32_t L_116 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_115, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)64)), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_113, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_114, 3))), 2))))) = (int16_t)L_116; int32_t L_117 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_117, 4)); } IL_01f5: { V_6 = (Il2CppChar*)((uintptr_t)0); int32_t L_118 = V_2; return L_118; } } // System.Int32 System.Convert::ToBase64_CalculateAndValidateOutputLength(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64_CalculateAndValidateOutputLength_m15280A1E59F3FF89468E1E846F180361AC86A5E5 (int32_t ___0_inputLength, bool ___1_insertLineBreaks, const RuntimeMethod* method) { int64_t V_0 = 0; int64_t V_1 = 0; int64_t G_B2_0 = 0; int64_t G_B1_0 = 0; int32_t G_B3_0 = 0; int64_t G_B3_1 = 0; { int32_t L_0 = ___0_inputLength; V_0 = ((int64_t)il2cpp_codegen_multiply(((int64_t)(((int64_t)L_0)/((int64_t)3))), ((int64_t)4))); int64_t L_1 = V_0; int32_t L_2 = ___0_inputLength; G_B1_0 = L_1; if (((int32_t)(L_2%3))) { G_B2_0 = L_1; goto IL_0012; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; goto IL_0013; } IL_0012: { G_B3_0 = 4; G_B3_1 = G_B2_0; } IL_0013: { V_0 = ((int64_t)il2cpp_codegen_add(G_B3_1, ((int64_t)G_B3_0))); int64_t L_3 = V_0; if (L_3) { goto IL_001b; } } { return 0; } IL_001b: { bool L_4 = ___1_insertLineBreaks; if (!L_4) { goto IL_0037; } } { int64_t L_5 = V_0; V_1 = ((int64_t)(L_5/((int64_t)((int32_t)76)))); int64_t L_6 = V_0; if (((int64_t)(L_6%((int64_t)((int32_t)76))))) { goto IL_0030; } } { int64_t L_7 = V_1; V_1 = ((int64_t)il2cpp_codegen_subtract(L_7, ((int64_t)1))); } IL_0030: { int64_t L_8 = V_0; int64_t L_9 = V_1; V_0 = ((int64_t)il2cpp_codegen_add(L_8, ((int64_t)il2cpp_codegen_multiply(L_9, ((int64_t)2))))); } IL_0037: { int64_t L_10 = V_0; if ((((int64_t)L_10) <= ((int64_t)((int64_t)((int32_t)2147483647LL))))) { goto IL_0046; } } { OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_11 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var))); NullCheck(L_11); OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_11, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64_CalculateAndValidateOutputLength_m15280A1E59F3FF89468E1E846F180361AC86A5E5_RuntimeMethod_var))); } IL_0046: { int64_t L_12 = V_0; return ((int32_t)L_12); } } // System.Byte[] System.Convert::FromBase64String(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64String_m267327B074B41D93C9622D142B95CFAA4ACCCA9C (String_t* ___0_s, 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; } Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0 = ___0_s; 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*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64String_m267327B074B41D93C9622D142B95CFAA4ACCCA9C_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_s; V_1 = L_2; String_t* L_3 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_3); Il2CppChar* L_4 = V_0; if (!L_4) { goto IL_001e; } } { Il2CppChar* L_5 = V_0; int32_t L_6; L_6 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, L_6)); } IL_001e: { Il2CppChar* L_7 = V_0; String_t* L_8 = ___0_s; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10; L_10 = Convert_FromBase64CharPtr_m5EB088E0863DEB4AC0889D82BE4998E896A9D9FB(L_7, L_9, NULL); return L_10; } } // System.Boolean System.Convert::TryFromBase64Chars(System.ReadOnlySpan`1,System.Span`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryFromBase64Chars_mA40EE5AD1A31DBF56F404F618230EC8EB5E8A4B3 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_chars, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___1_bytes, int32_t* ___2_bytesWritten, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_0; memset((&V_0), 0, sizeof(V_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; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; { uintptr_t L_0 = ((uintptr_t)8); int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL); memset(L_1, 0, L_0); Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_2; memset((&L_2), 0, sizeof(L_2)); Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_2), (void*)(L_1), 4, /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); V_0 = L_2; int32_t* L_3 = ___2_bytesWritten; *((int32_t*)L_3) = (int32_t)0; goto IL_011a; } IL_0013: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___0_chars; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_5 = ___1_bytes; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_6; L_6 = Convert_TryDecodeFromUtf16_mCD2118ACA95E45067AE690E9B88E91C95865FF35(L_4, L_5, (&V_1), (&V_2), NULL); int32_t* L_7 = ___2_bytesWritten; int32_t* L_8 = ___2_bytesWritten; int32_t L_9 = *((int32_t*)L_8); int32_t L_10 = V_2; *((int32_t*)L_7) = (int32_t)((int32_t)il2cpp_codegen_add(L_9, L_10)); if (!L_6) { goto IL_0028; } } { return (bool)1; } IL_0028: { int32_t L_11 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_12; L_12 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_chars), L_11, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); ___0_chars = L_12; int32_t L_13 = V_2; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_14; L_14 = Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline((&___1_bytes), L_13, Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var); ___1_bytes = L_14; Il2CppChar* L_15; L_15 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_chars))->____pointer_0))->value, (0), ((&___0_chars))->____length_1); int32_t L_16 = *((uint16_t*)L_15); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_17; L_17 = Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23_inline(L_16, NULL); if (!L_17) { goto IL_0091; } } { V_3 = 1; } IL_004e: { int32_t L_18 = V_3; int32_t L_19; L_19 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_chars), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_18) == ((int32_t)L_19))) { goto IL_006e; } } { int32_t L_20 = V_3; Il2CppChar* L_21; L_21 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_chars))->____pointer_0))->value, (L_20), ((&___0_chars))->____length_1); int32_t L_22 = *((uint16_t*)L_21); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_23; L_23 = Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23_inline(L_22, NULL); if (!L_23) { goto IL_006e; } } { int32_t L_24 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_24, 1)); goto IL_004e; } IL_006e: { int32_t L_25 = V_3; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_26; L_26 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_chars), L_25, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); ___0_chars = L_26; int32_t L_27 = V_2; if (!((int32_t)(L_27%3))) { goto IL_011a; } } { int32_t L_28; L_28 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_chars), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (!L_28) { goto IL_011a; } } { int32_t* L_29 = ___2_bytesWritten; *((int32_t*)L_29) = (int32_t)0; return (bool)0; } IL_0091: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_30 = ___0_chars; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_31 = V_0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_CopyToTempBufferWithoutWhiteSpace_mB0390B5F3C4417CC52A1056C8F78B88F3C543DB2(L_30, L_31, (&V_4), (&V_5), NULL); int32_t L_32 = V_5; if (!((int32_t)(L_32&3))) { goto IL_00a7; } } { int32_t* L_33 = ___2_bytesWritten; *((int32_t*)L_33) = (int32_t)0; return (bool)0; } IL_00a7: { int32_t L_34 = V_5; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_35; L_35 = Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline((&V_0), 0, L_34, Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var); V_0 = L_35; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_36 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_37; L_37 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_36, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var); Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_38 = ___1_bytes; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_39; L_39 = Convert_TryDecodeFromUtf16_mCD2118ACA95E45067AE690E9B88E91C95865FF35(L_37, L_38, (&V_6), (&V_7), NULL); if (L_39) { goto IL_00c9; } } { int32_t* L_40 = ___2_bytesWritten; *((int32_t*)L_40) = (int32_t)0; return (bool)0; } IL_00c9: { int32_t* L_41 = ___2_bytesWritten; int32_t* L_42 = ___2_bytesWritten; int32_t L_43 = *((int32_t*)L_42); int32_t L_44 = V_7; *((int32_t*)L_41) = (int32_t)((int32_t)il2cpp_codegen_add(L_43, L_44)); int32_t L_45 = V_4; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_46; L_46 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_chars), L_45, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); ___0_chars = L_46; int32_t L_47 = V_7; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_48; L_48 = Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline((&___1_bytes), L_47, Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var); ___1_bytes = L_48; int32_t L_49 = V_7; if (!((int32_t)(L_49%3))) { goto IL_011a; } } { V_8 = 0; goto IL_010d; } IL_00f1: { int32_t L_50 = V_8; Il2CppChar* L_51; L_51 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_chars))->____pointer_0))->value, (L_50), ((&___0_chars))->____length_1); int32_t L_52 = *((uint16_t*)L_51); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_53; L_53 = Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23_inline(L_52, NULL); if (L_53) { goto IL_0107; } } { int32_t* L_54 = ___2_bytesWritten; *((int32_t*)L_54) = (int32_t)0; return (bool)0; } IL_0107: { int32_t L_55 = V_8; V_8 = ((int32_t)il2cpp_codegen_add(L_55, 1)); } IL_010d: { int32_t L_56 = V_8; int32_t L_57; L_57 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_chars), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_56) < ((int32_t)L_57))) { goto IL_00f1; } } { return (bool)1; } IL_011a: { int32_t L_58; L_58 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_chars), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (L_58) { goto IL_0013; } } { return (bool)1; } } // System.Void System.Convert::CopyToTempBufferWithoutWhiteSpace(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert_CopyToTempBufferWithoutWhiteSpace_mB0390B5F3C4417CC52A1056C8F78B88F3C543DB2 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_chars, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_tempBuffer, int32_t* ___2_consumed, int32_t* ___3_charsWritten, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar V_1 = 0x0; int32_t V_2 = 0; { int32_t* L_0 = ___3_charsWritten; *((int32_t*)L_0) = (int32_t)0; V_0 = 0; goto IL_0040; } IL_0007: { int32_t L_1 = V_0; Il2CppChar* L_2; L_2 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_chars))->____pointer_0))->value, (L_1), ((&___0_chars))->____length_1); int32_t L_3 = *((uint16_t*)L_2); V_1 = L_3; Il2CppChar L_4 = V_1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_5; L_5 = Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23_inline(L_4, NULL); if (L_5) { goto IL_003c; } } { int32_t* L_6 = ___3_charsWritten; int32_t* L_7 = ___3_charsWritten; int32_t L_8 = *((int32_t*)L_7); V_2 = L_8; int32_t L_9 = V_2; *((int32_t*)L_6) = (int32_t)((int32_t)il2cpp_codegen_add(L_9, 1)); int32_t L_10 = V_2; Il2CppChar* L_11; L_11 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_tempBuffer))->____pointer_0))->value, (L_10), ((&___1_tempBuffer))->____length_1); Il2CppChar L_12 = V_1; *((int16_t*)L_11) = (int16_t)L_12; int32_t* L_13 = ___3_charsWritten; int32_t L_14 = *((int32_t*)L_13); int32_t L_15; L_15 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___1_tempBuffer), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var); if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_003c; } } { int32_t* L_16 = ___2_consumed; int32_t L_17 = V_0; *((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add(L_17, 1)); return; } IL_003c: { int32_t L_18 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1)); } IL_0040: { int32_t L_19 = V_0; int32_t L_20; L_20 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_chars), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_19) < ((int32_t)L_20))) { goto IL_0007; } } { int32_t* L_21 = ___2_consumed; int32_t L_22; L_22 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_chars), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); *((int32_t*)L_21) = (int32_t)L_22; return; } } // System.Boolean System.Convert::IsSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23 (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_0015; } } { Il2CppChar L_1 = ___0_c; if ((((int32_t)L_1) == ((int32_t)((int32_t)9)))) { goto IL_0015; } } { Il2CppChar L_2 = ___0_c; if ((((int32_t)L_2) == ((int32_t)((int32_t)13)))) { goto IL_0015; } } { Il2CppChar L_3 = ___0_c; return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)10)))? 1 : 0); } IL_0015: { return (bool)1; } } // System.Byte[] System.Convert::FromBase64CharPtr(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64CharPtr_m5EB088E0863DEB4AC0889D82BE4998E896A9D9FB (Il2CppChar* ___0_inputPtr, int32_t ___1_inputLength, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { goto IL_0025; } IL_0002: { Il2CppChar* L_0 = ___0_inputPtr; int32_t L_1 = ___1_inputLength; int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_subtract(L_1, 1))), 2))))); V_1 = L_2; int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)32)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((((int32_t)L_4) == ((int32_t)((int32_t)10)))) { goto IL_0020; } } { int32_t L_5 = V_1; if ((((int32_t)L_5) == ((int32_t)((int32_t)13)))) { goto IL_0020; } } { int32_t L_6 = V_1; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)9))))) { goto IL_0029; } } IL_0020: { int32_t L_7 = ___1_inputLength; ___1_inputLength = ((int32_t)il2cpp_codegen_subtract(L_7, 1)); } IL_0025: { int32_t L_8 = ___1_inputLength; if ((((int32_t)L_8) > ((int32_t)0))) { goto IL_0002; } } IL_0029: { Il2CppChar* L_9 = ___0_inputPtr; int32_t L_10 = ___1_inputLength; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_11; L_11 = Convert_FromBase64_ComputeResultLength_m1FA11BAB2F815560FFDF95CDDE4312DE5E4C18A6(L_9, L_10, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_11); V_0 = L_12; Il2CppChar* L_13 = ___0_inputPtr; int32_t L_14 = ___1_inputLength; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15; memset((&L_15), 0, sizeof(L_15)); ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_inline((&L_15), (void*)L_13, L_14, /*hidden argument*/ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_RuntimeMethod_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = V_0; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_17; L_17 = Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91(L_16, Span_1_op_Implicit_m8619157C8809464A173FF531960A75A0ACE2CE91_RuntimeMethod_var); bool L_18; L_18 = Convert_TryFromBase64Chars_mA40EE5AD1A31DBF56F404F618230EC8EB5E8A4B3(L_15, L_17, (&V_2), NULL); if (L_18) { goto IL_0057; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_19 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_19); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D0BAF232D97D0ABBA1986C948E6B9DA38247EDD)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64CharPtr_m5EB088E0863DEB4AC0889D82BE4998E896A9D9FB_RuntimeMethod_var))); } IL_0057: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = V_0; return L_20; } } // System.Int32 System.Convert::FromBase64_ComputeResultLength(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_ComputeResultLength_m1FA11BAB2F815560FFDF95CDDE4312DE5E4C18A6 (Il2CppChar* ___0_inputPtr, int32_t ___1_inputLength, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; uint32_t V_3 = 0; { Il2CppChar* L_0 = ___0_inputPtr; int32_t L_1 = ___1_inputLength; V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2)))); int32_t L_2 = ___1_inputLength; V_1 = L_2; V_2 = 0; goto IL_002d; } IL_000d: { Il2CppChar* L_3 = ___0_inputPtr; int32_t L_4 = *((uint16_t*)L_3); V_3 = L_4; Il2CppChar* L_5 = ___0_inputPtr; ___0_inputPtr = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, 2)); uint32_t L_6 = V_3; if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)32))))) { goto IL_0020; } } { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_7, 1)); goto IL_002d; } IL_0020: { uint32_t L_8 = V_3; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)61))))) { goto IL_002d; } } { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_9, 1)); int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1)); } IL_002d: { Il2CppChar* L_11 = ___0_inputPtr; Il2CppChar* L_12 = V_0; if ((!(((uintptr_t)L_11) >= ((uintptr_t)L_12)))) { goto IL_000d; } } { int32_t L_13 = V_2; if (!L_13) { goto IL_004f; } } { int32_t L_14 = V_2; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_003c; } } { V_2 = 2; goto IL_004f; } IL_003c: { int32_t L_15 = V_2; if ((!(((uint32_t)L_15) == ((uint32_t)2)))) { goto IL_0044; } } { V_2 = 1; goto IL_004f; } IL_0044: { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_16 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_16); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D0BAF232D97D0ABBA1986C948E6B9DA38247EDD)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64_ComputeResultLength_m1FA11BAB2F815560FFDF95CDDE4312DE5E4C18A6_RuntimeMethod_var))); } IL_004f: { int32_t L_17 = V_1; int32_t L_18 = V_2; return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)(L_17/4)), 3)), L_18)); } } // System.Void System.Convert::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert__cctor_m579973DD0239435801A0F8CBB64A1A32E701EC92 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_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*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Empty_t2092C4BE138E38CCF5F75C55C07985DEE23C0DAE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_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*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_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*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063_67_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8_89_FieldInfo_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); s_Il2CppMethodInitialized = true; } { SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_0 = (SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913*)(SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913*)SZArrayNew(SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_1 = L_0; RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8_89_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_1, L_2, NULL); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___s_decodingMap_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___s_decodingMap_0), (void*)L_1); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_3 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_4 = L_3; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast (Empty_t2092C4BE138E38CCF5F75C55C07985DEE23C0DAE_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_6; L_6 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_5, NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast(0), (Type_t*)L_6); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = L_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t* L_9; L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAt(static_cast(1), (Type_t*)L_9); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_10 = L_7; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast(2), (Type_t*)L_12); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_13 = L_10; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; Type_t* L_15; L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast(3), (Type_t*)L_15); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16 = L_13; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) }; Type_t* L_18; L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast(4), (Type_t*)L_18); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_19 = L_16; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) }; Type_t* L_21; L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_21); (L_19)->SetAt(static_cast(5), (Type_t*)L_21); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_22 = L_19; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_23, NULL); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_24); (L_22)->SetAt(static_cast(6), (Type_t*)L_24); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_25 = L_22; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) }; Type_t* L_27; L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast(7), (Type_t*)L_27); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_28 = L_25; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) }; Type_t* L_30; L_30 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_29, NULL); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_30); (L_28)->SetAt(static_cast(8), (Type_t*)L_30); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_31 = L_28; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) }; Type_t* L_33; L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_33); (L_31)->SetAt(static_cast(((int32_t)9)), (Type_t*)L_33); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_34 = L_31; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) }; Type_t* L_36; L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAt(static_cast(((int32_t)10)), (Type_t*)L_36); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_37 = L_34; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) }; Type_t* L_39; L_39 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_38, NULL); NullCheck(L_37); ArrayElementTypeCheck (L_37, L_39); (L_37)->SetAt(static_cast(((int32_t)11)), (Type_t*)L_39); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_40 = L_37; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) }; Type_t* L_42; L_42 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_41, NULL); NullCheck(L_40); ArrayElementTypeCheck (L_40, L_42); (L_40)->SetAt(static_cast(((int32_t)12)), (Type_t*)L_42); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_43 = L_40; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) }; Type_t* L_45; L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL); NullCheck(L_43); ArrayElementTypeCheck (L_43, L_45); (L_43)->SetAt(static_cast(((int32_t)13)), (Type_t*)L_45); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_46 = L_43; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) }; Type_t* L_48; L_48 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_47, NULL); NullCheck(L_46); ArrayElementTypeCheck (L_46, L_48); (L_46)->SetAt(static_cast(((int32_t)14)), (Type_t*)L_48); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_49 = L_46; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) }; Type_t* L_51; L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_51); (L_49)->SetAt(static_cast(((int32_t)15)), (Type_t*)L_51); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_52 = L_49; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; Type_t* L_54; L_54 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_53, NULL); NullCheck(L_52); ArrayElementTypeCheck (L_52, L_54); (L_52)->SetAt(static_cast(((int32_t)16)), (Type_t*)L_54); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_55 = L_52; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t* L_57; L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL); NullCheck(L_55); ArrayElementTypeCheck (L_55, L_57); (L_55)->SetAt(static_cast(((int32_t)17)), (Type_t*)L_57); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_58 = L_55; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_60; L_60 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_59, NULL); NullCheck(L_58); ArrayElementTypeCheck (L_58, L_60); (L_58)->SetAt(static_cast(((int32_t)18)), (Type_t*)L_60); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1 = L_58; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1), (void*)L_58); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_61 = { reinterpret_cast (Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var) }; Type_t* L_62; L_62 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_61, NULL); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___EnumType_2 = L_62; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___EnumType_2), (void*)L_62); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = L_63; RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_65 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063_67_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_64, L_65, NULL); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___base64Table_3 = L_64; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___base64Table_3), (void*)L_64); il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_66 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0; ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___DBNull_4 = L_66; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___DBNull_4), (void*)L_66); 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 System.CurrentSystemTimeZone::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CurrentSystemTimeZone__ctor_m34CD1E73B9BF0477D5B539C6162E7FFC158CEBB0 (CurrentSystemTimeZone_t34EFC9F79D6F3B36341A1978573C91426B7717C9* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_0 = NULL; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1; memset((&V_1), 0, sizeof(V_1)); { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_0); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL); __this->___m_CachedDaylightChanges_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CachedDaylightChanges_3), (void*)L_0); TimeZone__ctor_mE178D688CAB2ACD05923682583066645559DC92C(__this, NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL); V_0 = L_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = V_0; NullCheck(L_2); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_2, NULL); V_1 = L_3; int64_t L_4; L_4 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_1), NULL); __this->___m_ticksOffset_0 = L_4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = V_0; NullCheck(L_5); String_t* L_6; L_6 = TimeZoneInfo_get_StandardName_mE9A075A18964E355D7AFF3A85C3C8EEDBB464A49(L_5, NULL); __this->___m_standardName_1 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_standardName_1), (void*)L_6); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = TimeZoneInfo_get_DaylightName_m02E7E08179ACFB3544A0AE8E9C8B0040E8422764(L_7, NULL); __this->___m_daylightName_2 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_daylightName_2), (void*)L_8); return; } } // System.Boolean System.CurrentSystemTimeZone::GetTimeZoneData(System.Int32,System.Int64[]&,System.String[]&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CurrentSystemTimeZone_GetTimeZoneData_mFC1D68546EAF36314223F5227C131ECAEA1F2D16 (int32_t ___0_year, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___1_data, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___2_names, bool* ___3_daylight_inverted, const RuntimeMethod* method) { typedef bool (*CurrentSystemTimeZone_GetTimeZoneData_mFC1D68546EAF36314223F5227C131ECAEA1F2D16_ftn) (int32_t, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248**, bool*); using namespace il2cpp::icalls; return ((CurrentSystemTimeZone_GetTimeZoneData_mFC1D68546EAF36314223F5227C131ECAEA1F2D16_ftn)mscorlib::System::CurrentSystemTimeZone::GetTimeZoneData40) (___0_year, ___1_data, ___2_names, ___3_daylight_inverted); } #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 System.DBNull::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBNull__ctor_m0752C7E84B1327B63DB5C42B99606B1ECFE58C08 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.DBNull::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBNull__ctor_mFDFEBE53C127D059C572931409E11B5174125EA0 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_0); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEBD4A5B4DB26F7938CFC8A94B9ED6301F694A390)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull__ctor_mFDFEBE53C127D059C572931409E11B5174125EA0_RuntimeMethod_var))); } } // System.Void System.DBNull::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBNull_GetObjectData_m4D6C83AAFD1CD37534BE80A76836AA2B77C459BD (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; UnitySerializationHolder_GetUnitySerializationInfo_mCCA085FD46F01597DF39A5CDBDD4E984FB6621DA(L_0, 2, NULL); return; } } // System.String System.DBNull::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DBNull_ToString_m5FD969CA2E0DA3B6D930BF8417C329E5CEA2A73F (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } // System.String System.DBNull::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DBNull_ToString_mCFD95FFC2CE2AC382920A98847637AC874149E93 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } // System.TypeCode System.DBNull::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DBNull_GetTypeCode_mDAC5AC02EE92C4240499223EB0002EA971EAB3B1 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, const RuntimeMethod* method) { { return (int32_t)(2); } } // System.Boolean System.DBNull::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DBNull_System_IConvertible_ToBoolean_mC120275948B2FF6D4DF206AB7B64897166BFB233 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToBoolean_mC120275948B2FF6D4DF206AB7B64897166BFB233_RuntimeMethod_var))); } } // System.Char System.DBNull::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DBNull_System_IConvertible_ToChar_m36BDDB94045057C8577293ACE204AB37A5E5E7DD (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToChar_m36BDDB94045057C8577293ACE204AB37A5E5E7DD_RuntimeMethod_var))); } } // System.SByte System.DBNull::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t DBNull_System_IConvertible_ToSByte_m3E3593B7FA4BA94F12796103274A02941AB8F76B (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToSByte_m3E3593B7FA4BA94F12796103274A02941AB8F76B_RuntimeMethod_var))); } } // System.Byte System.DBNull::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t DBNull_System_IConvertible_ToByte_m75D279A6D246FB4C18A3505382AC7C64AF7C91D2 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToByte_m75D279A6D246FB4C18A3505382AC7C64AF7C91D2_RuntimeMethod_var))); } } // System.Int16 System.DBNull::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t DBNull_System_IConvertible_ToInt16_mCCC33069235CD65F4BB8017C9E95F30025457045 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToInt16_mCCC33069235CD65F4BB8017C9E95F30025457045_RuntimeMethod_var))); } } // System.UInt16 System.DBNull::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t DBNull_System_IConvertible_ToUInt16_m2B0739D00C82A14A8D88F8FFB418CDD33EEB9B69 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToUInt16_m2B0739D00C82A14A8D88F8FFB418CDD33EEB9B69_RuntimeMethod_var))); } } // System.Int32 System.DBNull::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DBNull_System_IConvertible_ToInt32_m158A01B544BF1B291DCFF9C1A1DE7B40023A1430 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToInt32_m158A01B544BF1B291DCFF9C1A1DE7B40023A1430_RuntimeMethod_var))); } } // System.UInt32 System.DBNull::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DBNull_System_IConvertible_ToUInt32_m953E9B2EDA3E4EEE92564B98851D4384B68A5B13 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToUInt32_m953E9B2EDA3E4EEE92564B98851D4384B68A5B13_RuntimeMethod_var))); } } // System.Int64 System.DBNull::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DBNull_System_IConvertible_ToInt64_mA6E7301D9583B7C320D2AE3C071F1B8B36C853FC (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToInt64_mA6E7301D9583B7C320D2AE3C071F1B8B36C853FC_RuntimeMethod_var))); } } // System.UInt64 System.DBNull::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DBNull_System_IConvertible_ToUInt64_m069773CCE4D88576F428F231BA7CC645143C0FE3 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToUInt64_m069773CCE4D88576F428F231BA7CC645143C0FE3_RuntimeMethod_var))); } } // System.Single System.DBNull::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DBNull_System_IConvertible_ToSingle_mD3FB88964B19BC30F38BF56CA75F56B4DC32D70D (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToSingle_mD3FB88964B19BC30F38BF56CA75F56B4DC32D70D_RuntimeMethod_var))); } } // System.Double System.DBNull::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double DBNull_System_IConvertible_ToDouble_mE806417287E17116293BE1B8DDBF62FB8489B02D (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToDouble_mE806417287E17116293BE1B8DDBF62FB8489B02D_RuntimeMethod_var))); } } // System.Decimal System.DBNull::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F DBNull_System_IConvertible_ToDecimal_m9B5A491B2E0FA7259C1B16D279B5D2AC4C1943CE (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToDecimal_m9B5A491B2E0FA7259C1B16D279B5D2AC4C1943CE_RuntimeMethod_var))); } } // System.DateTime System.DBNull::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DBNull_System_IConvertible_ToDateTime_mD910B2FBF27B53C5F9545D73B007AD06939CF882 (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_0 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_0); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E63F7FFCC4D71B5D1C24FD15BAA03F6CE76AACE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DBNull_System_IConvertible_ToDateTime_mD910B2FBF27B53C5F9545D73B007AD06939CF882_RuntimeMethod_var))); } } // System.Object System.DBNull::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DBNull_System_IConvertible_ToType_m02E5C84A8A6B83DFC8B8807A9CA32D49C9C99CCE (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, 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; } { Type_t* L_0 = ___0_type; RuntimeObject* L_1 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_2; L_2 = Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC(__this, L_0, L_1, NULL); return L_2; } } // System.Void System.DBNull::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBNull__cctor_mA1BA781F6CE64696805DC30BD7D924A6853EA19C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_0 = (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)il2cpp_codegen_object_new(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); NullCheck(L_0); DBNull__ctor_m0752C7E84B1327B63DB5C42B99606B1ECFE58C08(L_0, NULL); ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_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 System.DateTime::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, const RuntimeMethod* method) { { int64_t L_0 = ___0_ticks; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_0011; } } { int64_t L_1 = ___0_ticks; if ((((int64_t)L_1) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0021; } } IL_0011: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F1EB107829748D4B6EAF0971FCDC4458C54CF59)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441_RuntimeMethod_var))); } IL_0021: { int64_t L_3 = ___0_ticks; __this->____dateData_46 = L_3; return; } } IL2CPP_EXTERN_C void DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441_AdjustorThunk (RuntimeObject* __this, int64_t ___0_ticks, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441(_thisAdjusted, ___0_ticks, method); } // System.Void System.DateTime::.ctor(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, uint64_t ___0_dateData, const RuntimeMethod* method) { { uint64_t L_0 = ___0_dateData; __this->____dateData_46 = L_0; return; } } IL2CPP_EXTERN_C void DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_AdjustorThunk (RuntimeObject* __this, uint64_t ___0_dateData, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline(_thisAdjusted, ___0_dateData, 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 ___0_ticks, int32_t ___1_kind, const RuntimeMethod* method) { { int64_t L_0 = ___0_ticks; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_0011; } } { int64_t L_1 = ___0_ticks; if ((((int64_t)L_1) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0021; } } IL_0011: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F1EB107829748D4B6EAF0971FCDC4458C54CF59)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE_RuntimeMethod_var))); } IL_0021: { int32_t L_3 = ___1_kind; if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_0029; } } { int32_t L_4 = ___1_kind; if ((((int32_t)L_4) <= ((int32_t)2))) { goto IL_0039; } } IL_0029: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5613A6A4EDEA9E0E59881C956F596200F1345F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral414EEEFF5F961B9740DE01D5EC1AC2F0F745095E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE_RuntimeMethod_var))); } IL_0039: { int64_t L_6 = ___0_ticks; int32_t L_7 = ___1_kind; __this->____dateData_46 = ((int64_t)(L_6|((int64_t)(((int64_t)L_7)<<((int32_t)62))))); return; } } IL2CPP_EXTERN_C void DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE_AdjustorThunk (RuntimeObject* __this, int64_t ___0_ticks, int32_t ___1_kind, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE(_thisAdjusted, ___0_ticks, ___1_kind, method); } // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, int32_t ___1_kind, bool ___2_isAmbiguousDst, const RuntimeMethod* method) { int64_t G_B5_0 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B5_1 = NULL; int64_t G_B4_0 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B4_1 = NULL; int64_t G_B6_0 = 0; int64_t G_B6_1 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B6_2 = NULL; { int64_t L_0 = ___0_ticks; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_0011; } } { int64_t L_1 = ___0_ticks; if ((((int64_t)L_1) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0021; } } IL_0011: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F1EB107829748D4B6EAF0971FCDC4458C54CF59)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2_RuntimeMethod_var))); } IL_0021: { int64_t L_3 = ___0_ticks; bool L_4 = ___2_isAmbiguousDst; G_B4_0 = L_3; G_B4_1 = __this; if (L_4) { G_B5_0 = L_3; G_B5_1 = __this; goto IL_0031; } } { G_B6_0 = ((int64_t)(std::numeric_limits::min)()); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; goto IL_003a; } IL_0031: { G_B6_0 = ((int64_t)-4611686018427387904LL); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; } IL_003a: { G_B6_2->____dateData_46 = ((int64_t)(G_B6_1|G_B6_0)); return; } } IL2CPP_EXTERN_C void DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2_AdjustorThunk (RuntimeObject* __this, int64_t ___0_ticks, int32_t ___1_kind, bool ___2_isAmbiguousDst, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2(_thisAdjusted, ___0_ticks, ___1_kind, ___2_isAmbiguousDst, method); } // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, 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; } { int32_t L_0 = ___0_year; int32_t L_1 = ___1_month; int32_t L_2 = ___2_day; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_3; L_3 = DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C(L_0, L_1, L_2, NULL); __this->____dateData_46 = L_3; return; } } IL2CPP_EXTERN_C void DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88_AdjustorThunk (RuntimeObject* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88(_thisAdjusted, ___0_year, ___1_month, ___2_day, 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 ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, 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; } { int32_t L_0 = ___0_year; int32_t L_1 = ___1_month; int32_t L_2 = ___2_day; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_3; L_3 = DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C(L_0, L_1, L_2, NULL); int32_t L_4 = ___3_hour; int32_t L_5 = ___4_minute; int32_t L_6 = ___5_second; int64_t L_7; L_7 = DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9(L_4, L_5, L_6, NULL); __this->____dateData_46 = ((int64_t)il2cpp_codegen_add(L_3, L_7)); return; } } IL2CPP_EXTERN_C void DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00_AdjustorThunk (RuntimeObject* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00(_thisAdjusted, ___0_year, ___1_month, ___2_day, ___3_hour, ___4_minute, ___5_second, method); } // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mD89390EF215242275A4E8F78C2C3E8BC3EF6F3C3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_kind, 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 = ___6_kind; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000a; } } { int32_t L_1 = ___6_kind; if ((((int32_t)L_1) <= ((int32_t)2))) { goto IL_001a; } } IL_000a: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5613A6A4EDEA9E0E59881C956F596200F1345F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral414EEEFF5F961B9740DE01D5EC1AC2F0F745095E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_mD89390EF215242275A4E8F78C2C3E8BC3EF6F3C3_RuntimeMethod_var))); } IL_001a: { int32_t L_3 = ___0_year; int32_t L_4 = ___1_month; int32_t L_5 = ___2_day; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_6; L_6 = DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C(L_3, L_4, L_5, NULL); int32_t L_7 = ___3_hour; int32_t L_8 = ___4_minute; int32_t L_9 = ___5_second; int64_t L_10; L_10 = DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9(L_7, L_8, L_9, NULL); V_0 = ((int64_t)il2cpp_codegen_add(L_6, L_10)); int64_t L_11 = V_0; int32_t L_12 = ___6_kind; __this->____dateData_46 = ((int64_t)(L_11|((int64_t)(((int64_t)L_12)<<((int32_t)62))))); return; } } IL2CPP_EXTERN_C void DateTime__ctor_mD89390EF215242275A4E8F78C2C3E8BC3EF6F3C3_AdjustorThunk (RuntimeObject* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_kind, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_mD89390EF215242275A4E8F78C2C3E8BC3EF6F3C3(_thisAdjusted, ___0_year, ___1_month, ___2_day, ___3_hour, ___4_minute, ___5_second, ___6_kind, 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 ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_millisecond, 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 = ___6_millisecond; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000e; } } { int32_t L_1 = ___6_millisecond; if ((((int32_t)L_1) < ((int32_t)((int32_t)1000)))) { goto IL_0033; } } IL_000e: { int32_t L_2 = 0; RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2); int32_t L_4 = ((int32_t)999); RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_4); String_t* L_6; L_6 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCB6B67D4653121AE0F63EE256975A0DBD0FAF6B1)), L_3, L_5, NULL); ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3DF008E4B70EBA2CEFB30E3226F82557BD7FD14D)), L_6, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201_RuntimeMethod_var))); } IL_0033: { int32_t L_8 = ___0_year; int32_t L_9 = ___1_month; int32_t L_10 = ___2_day; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_11; L_11 = DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C(L_8, L_9, L_10, NULL); int32_t L_12 = ___3_hour; int32_t L_13 = ___4_minute; int32_t L_14 = ___5_second; int64_t L_15; L_15 = DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9(L_12, L_13, L_14, NULL); V_0 = ((int64_t)il2cpp_codegen_add(L_11, L_15)); int64_t L_16 = V_0; int32_t L_17 = ___6_millisecond; V_0 = ((int64_t)il2cpp_codegen_add(L_16, ((int64_t)il2cpp_codegen_multiply(((int64_t)L_17), ((int64_t)((int32_t)10000)))))); int64_t L_18 = V_0; if ((((int64_t)L_18) < ((int64_t)((int64_t)0)))) { goto IL_0066; } } { int64_t L_19 = V_0; if ((((int64_t)L_19) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0071; } } IL_0066: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_20); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral758669C6E73419F7C9937E6A901F4CFC2057BEED)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201_RuntimeMethod_var))); } IL_0071: { int64_t L_21 = V_0; __this->____dateData_46 = L_21; return; } } IL2CPP_EXTERN_C void DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201_AdjustorThunk (RuntimeObject* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_millisecond, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201(_thisAdjusted, ___0_year, ___1_month, ___2_day, ___3_hour, ___4_minute, ___5_second, ___6_millisecond, method); } // System.Void System.DateTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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*)&_stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; int64_t V_2 = 0; uint64_t V_3 = 0; SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* V_4 = NULL; int64_t V_5 = 0; String_t* V_6 = NULL; { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958_RuntimeMethod_var))); } IL_000e: { V_0 = (bool)0; V_1 = (bool)0; V_2 = ((int64_t)0); V_3 = ((int64_t)0); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; NullCheck(L_2); SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_3; L_3 = SerializationInfo_GetEnumerator_m5230A1D4E4B612E90B10E2034C638CD42F667EA6(L_2, NULL); V_4 = L_3; goto IL_0073; } IL_0022: { SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_4 = V_4; NullCheck(L_4); String_t* L_5; L_5 = SerializationInfoEnumerator_get_Name_m58B6D682B6C829258730C1E952E9099ACDDAE734(L_4, NULL); V_6 = L_5; String_t* L_6 = V_6; bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF, NULL); if (L_7) { goto IL_0049; } } { String_t* L_8 = V_6; bool L_9; L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, _stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60, NULL); if (L_9) { goto IL_005f; } } { goto IL_0073; } IL_0049: { SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_10 = V_4; NullCheck(L_10); RuntimeObject* L_11; L_11 = SerializationInfoEnumerator_get_Value_mBB22843FD639AD42D9A819A9745C21191C3B1DD9(L_10, NULL); il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12; L_12 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_13; L_13 = Convert_ToInt64_m6CA00ABB70FAD8242C62ED9913F7D7C3B811FC31(L_11, L_12, NULL); V_2 = L_13; V_0 = (bool)1; goto IL_0073; } IL_005f: { SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_14 = V_4; NullCheck(L_14); RuntimeObject* L_15; L_15 = SerializationInfoEnumerator_get_Value_mBB22843FD639AD42D9A819A9745C21191C3B1DD9(L_14, NULL); il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_16; L_16 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_17; L_17 = Convert_ToUInt64_mA2BE4A2841686E8B79607BA469368B4FB4D40F34(L_15, L_16, NULL); V_3 = L_17; V_1 = (bool)1; } IL_0073: { SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_18 = V_4; NullCheck(L_18); bool L_19; L_19 = SerializationInfoEnumerator_MoveNext_m4F052C960AE85EFED1048CAAAC538AB3714078A6(L_18, NULL); if (L_19) { goto IL_0022; } } { bool L_20 = V_1; if (!L_20) { goto IL_0088; } } { uint64_t L_21 = V_3; __this->____dateData_46 = L_21; goto IL_009f; } IL_0088: { bool L_22 = V_0; if (!L_22) { goto IL_0094; } } { int64_t L_23 = V_2; __this->____dateData_46 = L_23; goto IL_009f; } IL_0094: { SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_24 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_24); SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_24, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE6F438B4D15D9368DB9AB085363FC309684D805)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958_RuntimeMethod_var))); } IL_009f: { int64_t L_25; L_25 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); V_5 = L_25; int64_t L_26 = V_5; if ((((int64_t)L_26) < ((int64_t)((int64_t)0)))) { goto IL_00ba; } } { int64_t L_27 = V_5; if ((((int64_t)L_27) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00c5; } } IL_00ba: { SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_28 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_28); SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_28, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0CC8D9716F300EE4E27BA8D2C8FFFB6AD822D078)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958_RuntimeMethod_var))); } IL_00c5: { return; } } IL2CPP_EXTERN_C void DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime__ctor_m3BCC46F053A8B6C0BF4E67B5E6AEF8E11D18E958(_thisAdjusted, ___0_info, ___1_context, method); } // System.Int64 System.DateTime::get_InternalTicks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->____dateData_46; return ((int64_t)((int64_t)L_0&((int64_t)4611686018427387903LL))); } } IL2CPP_EXTERN_C int64_t DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(_thisAdjusted, method); return _returnValue; } // System.UInt64 System.DateTime::get_InternalKind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->____dateData_46; return ((int64_t)((int64_t)L_0&((int64_t)-4611686018427387904LL))); } } IL2CPP_EXTERN_C uint64_t DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815(_thisAdjusted, method); return _returnValue; } // System.DateTime System.DateTime::Add(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_value, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___0_value; int64_t L_1 = L_0.____ticks_22; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2; L_2 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D(__this, L_1, NULL); return L_2; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1_AdjustorThunk (RuntimeObject* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::Add(System.Double,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, int32_t ___1_scale, const RuntimeMethod* method) { int64_t V_0 = 0; double G_B2_0 = 0.0; double G_B1_0 = 0.0; double G_B3_0 = 0.0; double G_B3_1 = 0.0; { double L_0 = ___0_value; int32_t L_1 = ___1_scale; double L_2 = ___0_value; G_B1_0 = ((double)il2cpp_codegen_multiply(L_0, ((double)L_1))); if ((((double)L_2) >= ((double)(0.0)))) { G_B2_0 = ((double)il2cpp_codegen_multiply(L_0, ((double)L_1))); goto IL_001b; } } { G_B3_0 = (-0.5); G_B3_1 = G_B1_0; goto IL_0024; } IL_001b: { G_B3_0 = (0.5); G_B3_1 = G_B2_0; } IL_0024: { V_0 = il2cpp_codegen_cast_double_to_int(((double)il2cpp_codegen_add(G_B3_1, G_B3_0))); int64_t L_3 = V_0; if ((((int64_t)L_3) <= ((int64_t)((int64_t)-315537897600000LL)))) { goto IL_003f; } } { int64_t L_4 = V_0; if ((((int64_t)L_4) < ((int64_t)((int64_t)315537897600000LL)))) { goto IL_004f; } } IL_003f: { 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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1BB7D514C3D15F77603EC9C1408F5FF44C944EAF)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316_RuntimeMethod_var))); } IL_004f: { int64_t L_6 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; L_7 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D(__this, ((int64_t)il2cpp_codegen_multiply(L_6, ((int64_t)((int32_t)10000)))), NULL); return L_7; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316_AdjustorThunk (RuntimeObject* __this, double ___0_value, int32_t ___1_scale, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316(_thisAdjusted, ___0_value, ___1_scale, method); return _returnValue; } // System.DateTime System.DateTime::AddDays(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, const RuntimeMethod* method) { { double L_0 = ___0_value; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316(__this, L_0, ((int32_t)86400000), NULL); return L_1; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::AddMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, const RuntimeMethod* method) { { double L_0 = ___0_value; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316(__this, L_0, 1, NULL); return L_1; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::AddMonths(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_months, 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; } 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 L_0 = ___0_months; if ((((int32_t)L_0) < ((int32_t)((int32_t)-120000)))) { goto IL_0010; } } { int32_t L_1 = ___0_months; if ((((int32_t)L_1) <= ((int32_t)((int32_t)120000)))) { goto IL_0020; } } IL_0010: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD83041E889BDAEB8F029AF50549D1347BD7FC949)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB020DAEB80AFE3984CF55839FF7F2659288FFC06)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD_RuntimeMethod_var))); } IL_0020: { DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D(__this, (&V_0), (&V_1), (&V_2), NULL); int32_t L_3 = V_1; int32_t L_4 = ___0_months; V_3 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_3, 1)), L_4)); int32_t L_5 = V_3; if ((((int32_t)L_5) < ((int32_t)0))) { goto IL_0046; } } { int32_t L_6 = V_3; V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)(L_6%((int32_t)12))), 1)); int32_t L_7 = V_0; int32_t L_8 = V_3; V_0 = ((int32_t)il2cpp_codegen_add(L_7, ((int32_t)(L_8/((int32_t)12))))); goto IL_005a; } IL_0046: { int32_t L_9 = V_3; V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)12), ((int32_t)(((int32_t)il2cpp_codegen_add(L_9, 1))%((int32_t)12))))); int32_t L_10 = V_0; int32_t L_11 = V_3; V_0 = ((int32_t)il2cpp_codegen_add(L_10, ((int32_t)(((int32_t)il2cpp_codegen_subtract(L_11, ((int32_t)11)))/((int32_t)12))))); } IL_005a: { int32_t L_12 = V_0; if ((((int32_t)L_12) < ((int32_t)1))) { goto IL_0066; } } { int32_t L_13 = V_0; if ((((int32_t)L_13) <= ((int32_t)((int32_t)9999)))) { goto IL_0076; } } IL_0066: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_14 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_14); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD83041E889BDAEB8F029AF50549D1347BD7FC949)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF33310D7EB57AD4B307AAB16E09002FFD4E34FF3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD_RuntimeMethod_var))); } IL_0076: { int32_t L_15 = V_0; int32_t L_16 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_17; L_17 = DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977(L_15, L_16, NULL); V_4 = L_17; int32_t L_18 = V_2; int32_t L_19 = V_4; if ((((int32_t)L_18) <= ((int32_t)L_19))) { goto IL_0087; } } { int32_t L_20 = V_4; V_2 = L_20; } IL_0087: { int32_t L_21 = V_0; int32_t L_22 = V_1; int32_t L_23 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_24; L_24 = DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C(L_21, L_22, L_23, NULL); int64_t L_25; L_25 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); uint64_t L_26; L_26 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815(__this, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27; memset((&L_27), 0, sizeof(L_27)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_27), ((int64_t)(((int64_t)il2cpp_codegen_add(L_24, ((int64_t)(L_25%((int64_t)864000000000LL)))))|(int64_t)L_26)), /*hidden argument*/NULL); return L_27; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD_AdjustorThunk (RuntimeObject* __this, int32_t ___0_months, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD(_thisAdjusted, ___0_months, method); return _returnValue; } // System.DateTime System.DateTime::AddSeconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddSeconds_mC5FE3FB22A1295CA747746ECE48B9D4A4B6B2E81 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___0_value, const RuntimeMethod* method) { { double L_0 = ___0_value; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = DateTime_Add_m33C942DCCCB0106EB41CB571B014532CC7D4F316(__this, L_0, ((int32_t)1000), NULL); return L_1; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddSeconds_mC5FE3FB22A1295CA747746ECE48B9D4A4B6B2E81_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_AddSeconds_mC5FE3FB22A1295CA747746ECE48B9D4A4B6B2E81(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::AddTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_value, const RuntimeMethod* method) { int64_t V_0 = 0; { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); V_0 = L_0; int64_t L_1 = ___0_value; int64_t L_2 = V_0; if ((((int64_t)L_1) > ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)3155378975999999999LL), L_2))))) { goto IL_001c; } } { int64_t L_3 = ___0_value; int64_t L_4 = V_0; if ((((int64_t)L_3) >= ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)0), L_4))))) { goto IL_002c; } } IL_001c: { 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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF33310D7EB57AD4B307AAB16E09002FFD4E34FF3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D_RuntimeMethod_var))); } IL_002c: { int64_t L_6 = V_0; int64_t L_7 = ___0_value; uint64_t L_8; L_8 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815(__this, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; memset((&L_9), 0, sizeof(L_9)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_9), ((int64_t)(((int64_t)il2cpp_codegen_add(L_6, L_7))|(int64_t)L_8)), /*hidden argument*/NULL); return L_9; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D_AdjustorThunk (RuntimeObject* __this, int64_t ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::AddYears(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; if ((((int32_t)L_0) < ((int32_t)((int32_t)-10000)))) { goto IL_0010; } } { int32_t L_1 = ___0_value; if ((((int32_t)L_1) <= ((int32_t)((int32_t)10000)))) { goto IL_0020; } } IL_0010: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE9BB7116C03E5DA9D01F8D4803A0FFE9ADA5307)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB655C47A0A1F6AF4DCDB6B7A1506B8EFB729C8BF)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE_RuntimeMethod_var))); } IL_0020: { int32_t L_3 = ___0_value; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTime_AddMonths_mF426338945B097998273C1AD421CF809035660AD(__this, ((int32_t)il2cpp_codegen_multiply(L_3, ((int32_t)12))), NULL); return L_4; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Int32 System.DateTime::Compare(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_Compare_mF0E4E7A00DBC08126468AC4BF61B64AF58F2BEB4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) { int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_t1), NULL); V_0 = L_0; int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_t2), NULL); V_1 = L_1; int64_t L_2 = V_0; int64_t L_3 = V_1; if ((((int64_t)L_2) <= ((int64_t)L_3))) { goto IL_0016; } } { return 1; } IL_0016: { int64_t L_4 = V_0; int64_t L_5 = V_1; if ((((int64_t)L_4) >= ((int64_t)L_5))) { goto IL_001c; } } { return (-1); } IL_001c: { return 0; } } // System.Int32 System.DateTime::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_m2DC5F6BDB6A7D578448192AA07953CBC97BECAC9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_value, 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; } { RuntimeObject* L_0 = ___0_value; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___0_value; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5555755D3361E32457AAF97F7B3A0E3237765D53)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_CompareTo_m2DC5F6BDB6A7D578448192AA07953CBC97BECAC9_RuntimeMethod_var))); } IL_0018: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); RuntimeObject* L_4 = ___0_value; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_5; L_5 = DateTime_Compare_mF0E4E7A00DBC08126468AC4BF61B64AF58F2BEB4(L_3, ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), NULL); return L_5; } } IL2CPP_EXTERN_C int32_t DateTime_CompareTo_m2DC5F6BDB6A7D578448192AA07953CBC97BECAC9_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_CompareTo_m2DC5F6BDB6A7D578448192AA07953CBC97BECAC9(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Int32 System.DateTime::CompareTo(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, 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; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___0_value; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_2; L_2 = DateTime_Compare_mF0E4E7A00DBC08126468AC4BF61B64AF58F2BEB4(L_0, L_1, NULL); return L_2; } } IL2CPP_EXTERN_C int32_t DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Int64 System.DateTime::DateToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C (int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, 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; } Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL; int32_t V_1 = 0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* G_B7_0 = NULL; { int32_t L_0 = ___0_year; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_006c; } } { int32_t L_1 = ___0_year; if ((((int32_t)L_1) > ((int32_t)((int32_t)9999)))) { goto IL_006c; } } { int32_t L_2 = ___1_month; if ((((int32_t)L_2) < ((int32_t)1))) { goto IL_006c; } } { int32_t L_3 = ___1_month; if ((((int32_t)L_3) > ((int32_t)((int32_t)12)))) { goto IL_006c; } } { int32_t L_4 = ___0_year; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_5; L_5 = DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C(L_4, NULL); if (L_5) { goto IL_0024; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30; G_B7_0 = L_6; goto IL_0029; } IL_0024: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31; G_B7_0 = L_7; } IL_0029: { V_0 = G_B7_0; int32_t L_8 = ___2_day; if ((((int32_t)L_8) < ((int32_t)1))) { goto IL_006c; } } { int32_t L_9 = ___2_day; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = V_0; int32_t L_11 = ___1_month; NullCheck(L_10); int32_t L_12 = L_11; int32_t L_13 = (L_10)->GetAt(static_cast(L_12)); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = V_0; int32_t L_15 = ___1_month; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_subtract(L_15, 1)); int32_t L_17 = (L_14)->GetAt(static_cast(L_16)); if ((((int32_t)L_9) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_13, L_17))))) { goto IL_006c; } } { int32_t L_18 = ___0_year; V_1 = ((int32_t)il2cpp_codegen_subtract(L_18, 1)); int32_t L_19 = V_1; int32_t L_20 = V_1; int32_t L_21 = V_1; int32_t L_22 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = V_0; int32_t L_24 = ___1_month; NullCheck(L_23); int32_t L_25 = ((int32_t)il2cpp_codegen_subtract(L_24, 1)); int32_t L_26 = (L_23)->GetAt(static_cast(L_25)); int32_t L_27 = ___2_day; return ((int64_t)il2cpp_codegen_multiply(((int64_t)((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_19, ((int32_t)365))), ((int32_t)(L_20/4)))), ((int32_t)(L_21/((int32_t)100))))), ((int32_t)(L_22/((int32_t)400))))), L_26)), L_27)), 1))), ((int64_t)864000000000LL))); } IL_006c: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_28 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_28); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_28, (String_t*)NULL, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5C41D52FA73299672D15406F85174D906E9E65DC)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C_RuntimeMethod_var))); } } // System.Int64 System.DateTime::TimeToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9 (int32_t ___0_hour, int32_t ___1_minute, int32_t ___2_second, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_hour; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0024; } } { int32_t L_1 = ___0_hour; if ((((int32_t)L_1) >= ((int32_t)((int32_t)24)))) { goto IL_0024; } } { int32_t L_2 = ___1_minute; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0024; } } { int32_t L_3 = ___1_minute; if ((((int32_t)L_3) >= ((int32_t)((int32_t)60)))) { goto IL_0024; } } { int32_t L_4 = ___2_second; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0024; } } { int32_t L_5 = ___2_second; if ((((int32_t)L_5) >= ((int32_t)((int32_t)60)))) { goto IL_0024; } } { int32_t L_6 = ___0_hour; int32_t L_7 = ___1_minute; int32_t L_8 = ___2_second; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); int64_t L_9; L_9 = TimeSpan_TimeToTicks_mBA709BC134A96A780823D75398B2E90287505570(L_6, L_7, L_8, NULL); return L_9; } IL_0024: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_10 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_10, (String_t*)NULL, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral09E3CE30ED220A58CBC39E1FB2FC6F254A93DB03)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9_RuntimeMethod_var))); } } // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977 (int32_t ___0_year, int32_t ___1_month, 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; } Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* G_B6_0 = NULL; { int32_t L_0 = ___1_month; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_0009; } } { int32_t L_1 = ___1_month; if ((((int32_t)L_1) <= ((int32_t)((int32_t)12)))) { goto IL_0019; } } IL_0009: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFAE2329D6E15DBA161C93E78324E39B842CF47E4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_DaysInMonth_mB6063AA3711F1EE486B5FF6C858CDA9B04DD3977_RuntimeMethod_var))); } IL_0019: { int32_t L_3 = ___0_year; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_4; L_4 = DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C(L_3, NULL); if (L_4) { goto IL_0028; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30; G_B6_0 = L_5; goto IL_002d; } IL_0028: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31; G_B6_0 = L_6; } IL_002d: { V_0 = G_B6_0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = V_0; int32_t L_8 = ___1_month; NullCheck(L_7); int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAt(static_cast(L_9)); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_11 = V_0; int32_t L_12 = ___1_month; NullCheck(L_11); int32_t L_13 = ((int32_t)il2cpp_codegen_subtract(L_12, 1)); int32_t L_14 = (L_11)->GetAt(static_cast(L_13)); return ((int32_t)il2cpp_codegen_subtract(L_10, L_14)); } } // System.Boolean System.DateTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m0EF1F769B475D00BB907072ED7585E6A6ECAB133 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_value, 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; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject* L_0 = ___0_value; if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))) { goto IL_001f; } } { int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); RuntimeObject* L_2 = ___0_value; V_0 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_2, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); int64_t L_3; L_3 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&V_0), NULL); return (bool)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0); } IL_001f: { return (bool)0; } } IL2CPP_EXTERN_C bool DateTime_Equals_m0EF1F769B475D00BB907072ED7585E6A6ECAB133_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = DateTime_Equals_m0EF1F769B475D00BB907072ED7585E6A6ECAB133(_thisAdjusted, ___0_value, method); return _returnValue; } // System.Boolean System.DateTime::Equals(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_value), NULL); return (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::FromBinary(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromBinary_m3CED9C962489A2A0ABF34FB77B2AB257B9DA7B7B (int64_t ___0_dateData, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; bool V_1 = false; int64_t V_2 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; { int64_t L_0 = ___0_dateData; if (!((int64_t)(L_0&((int64_t)(std::numeric_limits::min)())))) { goto IL_00d3; } } { int64_t L_1 = ___0_dateData; V_0 = ((int64_t)(L_1&((int64_t)4611686018427387903LL))); int64_t L_2 = V_0; if ((((int64_t)L_2) <= ((int64_t)((int64_t)4611685154427387904LL)))) { goto IL_0034; } } { int64_t L_3 = V_0; V_0 = ((int64_t)il2cpp_codegen_subtract(L_3, ((int64_t)4611686018427387904LL))); } IL_0034: { V_1 = (bool)0; int64_t L_4 = V_0; if ((((int64_t)L_4) >= ((int64_t)((int64_t)0)))) { goto IL_0051; } } { 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; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_5, 2, NULL); V_3 = L_6; int64_t L_7; L_7 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL); V_2 = L_7; goto IL_0094; } IL_0051: { int64_t L_8 = V_0; if ((((int64_t)L_8) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0073; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_9, 2, NULL); V_3 = L_10; int64_t L_11; L_11 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL); V_2 = L_11; goto IL_0094; } IL_0073: { int64_t L_12 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13; memset((&L_13), 0, sizeof(L_13)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_13), L_12, 1, /*hidden argument*/NULL); V_4 = (bool)0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_14; L_14 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2(L_13, L_14, (&V_4), (&V_1), NULL); V_3 = L_15; int64_t L_16; L_16 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL); V_2 = L_16; } IL_0094: { int64_t L_17 = V_0; int64_t L_18 = V_2; V_0 = ((int64_t)il2cpp_codegen_add(L_17, L_18)); int64_t L_19 = V_0; if ((((int64_t)L_19) >= ((int64_t)((int64_t)0)))) { goto IL_00a9; } } { int64_t L_20 = V_0; V_0 = ((int64_t)il2cpp_codegen_add(L_20, ((int64_t)864000000000LL))); } IL_00a9: { int64_t L_21 = V_0; if ((((int64_t)L_21) < ((int64_t)((int64_t)0)))) { goto IL_00ba; } } { int64_t L_22 = V_0; if ((((int64_t)L_22) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00ca; } } IL_00ba: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_23 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_23); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD3E53F482F854233BE7E79000141D8F223B6682B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_FromBinary_m3CED9C962489A2A0ABF34FB77B2AB257B9DA7B7B_RuntimeMethod_var))); } IL_00ca: { int64_t L_24 = V_0; bool L_25 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26; memset((&L_26), 0, sizeof(L_26)); DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2((&L_26), L_24, 2, L_25, /*hidden argument*/NULL); return L_26; } IL_00d3: { int64_t L_27 = ___0_dateData; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28; L_28 = DateTime_FromBinaryRaw_m61270C18465960DF146A60BC5D6148D4B93A56E8(L_27, NULL); return L_28; } } // System.DateTime System.DateTime::FromBinaryRaw(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromBinaryRaw_m61270C18465960DF146A60BC5D6148D4B93A56E8 (int64_t ___0_dateData, const RuntimeMethod* method) { int64_t V_0 = 0; { int64_t L_0 = ___0_dateData; V_0 = ((int64_t)(L_0&((int64_t)4611686018427387903LL))); int64_t L_1 = V_0; if ((((int64_t)L_1) < ((int64_t)((int64_t)0)))) { goto IL_001d; } } { int64_t L_2 = V_0; if ((((int64_t)L_2) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_002d; } } IL_001d: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD3E53F482F854233BE7E79000141D8F223B6682B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_FromBinaryRaw_m61270C18465960DF146A60BC5D6148D4B93A56E8_RuntimeMethod_var))); } IL_002d: { int64_t L_4 = ___0_dateData; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5; memset((&L_5), 0, sizeof(L_5)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_5), L_4, /*hidden argument*/NULL); return L_5; } } // System.DateTime System.DateTime::FromFileTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromFileTime_m222D518E725E95C1FBD8F4FADE4162D6878101DA (int64_t ___0_fileTime, 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; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); { int64_t L_0 = ___0_fileTime; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = DateTime_FromFileTimeUtc_m438EB6875CCA2AC723474C3B4BE8906803BE6517(L_0, NULL); V_0 = L_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2; L_2 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&V_0), NULL); return L_2; } } // System.DateTime System.DateTime::FromFileTimeUtc(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromFileTimeUtc_m438EB6875CCA2AC723474C3B4BE8906803BE6517 (int64_t ___0_fileTime, const RuntimeMethod* method) { { int64_t L_0 = ___0_fileTime; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_0011; } } { int64_t L_1 = ___0_fileTime; if ((((int64_t)L_1) <= ((int64_t)((int64_t)2650467743999999999LL)))) { goto IL_0021; } } IL_0011: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBB62E92766460DDF2A10079AF8CE4DDDFD86586A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C0FB1B49782357DC1CCDE93D4ADFB4161605BC7)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_FromFileTimeUtc_m438EB6875CCA2AC723474C3B4BE8906803BE6517_RuntimeMethod_var))); } IL_0021: { int64_t L_3 = ___0_fileTime; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; memset((&L_4), 0, sizeof(L_4)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_4), ((int64_t)il2cpp_codegen_add(L_3, ((int64_t)504911232000000000LL))), 1, /*hidden argument*/NULL); return L_4; } } // System.Void System.DateTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_mC90A1D56C5CD5E23BE66C9D90EC3A867C71F490C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; 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*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_mC90A1D56C5CD5E23BE66C9D90EC3A867C71F490C_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; int64_t L_3; L_3 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); NullCheck(L_2); SerializationInfo_AddValue_m216A4FEE287DCA4612C30DB41571962A584D6324(L_2, _stringLiteral928FFC09BCE4E64CA3AC5579C0DCC18658018EEF, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; uint64_t L_5 = __this->____dateData_46; NullCheck(L_4); SerializationInfo_AddValue_mA4580664C8C0D978F65E405D235E3BAF945B25AF(L_4, _stringLiteral5906B1AF129B2EACC9A652E63E3344351D9DEE60, L_5, NULL); return; } } IL2CPP_EXTERN_C void DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_mC90A1D56C5CD5E23BE66C9D90EC3A867C71F490C_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_mC90A1D56C5CD5E23BE66C9D90EC3A867C71F490C(_thisAdjusted, ___0_info, ___1_context, method); } // System.DateTime System.DateTime::SpecifyKind(System.DateTime,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_SpecifyKind_mFC3F6DD6AD017F62A8AF81DAD5620AEC474871D0 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, int32_t ___1_kind, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_value), NULL); int32_t L_1 = ___1_kind; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2; memset((&L_2), 0, sizeof(L_2)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_2), L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.DateTime System.DateTime::get_Date() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); int64_t L_1 = L_0; uint64_t L_2; L_2 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815(__this, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; memset((&L_3), 0, sizeof(L_3)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_3), ((int64_t)(((int64_t)il2cpp_codegen_subtract(L_1, ((int64_t)(L_1%((int64_t)864000000000LL)))))|(int64_t)L_2)), /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::GetDatePart(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___0_part, 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; } 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_B13_0 = 0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* G_B16_0 = NULL; { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, 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_0032; } } { V_2 = 3; } IL_0032: { 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_005f; } } { V_4 = 3; } IL_005f: { int32_t L_13 = ___0_part; if (L_13) { goto IL_0078; } } { int32_t L_14 = V_1; int32_t L_15 = V_2; int32_t L_16 = V_3; int32_t L_17 = V_4; return ((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)); } IL_0078: { 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 = ___0_part; if ((!(((uint32_t)L_20) == ((uint32_t)1)))) { goto IL_008b; } } { int32_t L_21 = V_0; return ((int32_t)il2cpp_codegen_add(L_21, 1)); } IL_008b: { int32_t L_22 = V_4; if ((!(((uint32_t)L_22) == ((uint32_t)3)))) { goto IL_009e; } } { int32_t L_23 = V_3; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)24))))) { goto IL_009b; } } { int32_t L_24 = V_2; G_B13_0 = ((((int32_t)L_24) == ((int32_t)3))? 1 : 0); goto IL_009f; } IL_009b: { G_B13_0 = 1; goto IL_009f; } IL_009e: { G_B13_0 = 0; } IL_009f: { if (G_B13_0) { goto IL_00a8; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30; G_B16_0 = L_25; goto IL_00ad; } IL_00a8: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31; G_B16_0 = L_26; } IL_00ad: { V_5 = G_B16_0; int32_t L_27 = V_0; V_6 = ((int32_t)il2cpp_codegen_add(((int32_t)(L_27>>5)), 1)); goto IL_00be; } IL_00b8: { int32_t L_28 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_28, 1)); } IL_00be: { int32_t L_29 = V_0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_30 = V_5; int32_t L_31 = V_6; NullCheck(L_30); int32_t L_32 = L_31; int32_t L_33 = (L_30)->GetAt(static_cast(L_32)); if ((((int32_t)L_29) >= ((int32_t)L_33))) { goto IL_00b8; } } { int32_t L_34 = ___0_part; if ((!(((uint32_t)L_34) == ((uint32_t)2)))) { goto IL_00cd; } } { int32_t L_35 = V_6; return L_35; } IL_00cd: { int32_t L_36 = V_0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_37 = V_5; int32_t L_38 = V_6; NullCheck(L_37); int32_t L_39 = ((int32_t)il2cpp_codegen_subtract(L_38, 1)); int32_t L_40 = (L_37)->GetAt(static_cast(L_39)); return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_36, L_40)), 1)); } } IL2CPP_EXTERN_C int32_t DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7_AdjustorThunk (RuntimeObject* __this, int32_t ___0_part, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7(_thisAdjusted, ___0_part, method); return _returnValue; } // System.Void System.DateTime::GetDatePart(System.Int32&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t* ___0_year, int32_t* ___1_month, int32_t* ___2_day, 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; } 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_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, 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_0032; } } { V_2 = 3; } IL_0032: { 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_005f; } } { V_4 = 3; } IL_005f: { int32_t* L_13 = ___0_year; 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_0094; } } { int32_t L_21 = V_3; if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)24))))) { goto IL_0091; } } { int32_t L_22 = V_2; G_B9_0 = ((((int32_t)L_22) == ((int32_t)3))? 1 : 0); goto IL_0095; } IL_0091: { G_B9_0 = 1; goto IL_0095; } IL_0094: { G_B9_0 = 0; } IL_0095: { if (G_B9_0) { goto IL_009e; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30; G_B12_0 = L_23; goto IL_00a3; } IL_009e: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_24 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31; G_B12_0 = L_24; } IL_00a3: { V_5 = G_B12_0; int32_t L_25 = V_0; V_6 = ((int32_t)il2cpp_codegen_add(((int32_t)(L_25>>5)), 1)); goto IL_00b4; } IL_00ae: { int32_t L_26 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_26, 1)); } IL_00b4: { 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(L_30)); if ((((int32_t)L_27) >= ((int32_t)L_31))) { goto IL_00ae; } } { int32_t* L_32 = ___1_month; int32_t L_33 = V_6; *((int32_t*)L_32) = (int32_t)L_33; int32_t* L_34 = ___2_day; 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(L_38)); *((int32_t*)L_34) = (int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_35, L_39)), 1)); return; } } IL2CPP_EXTERN_C void DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D_AdjustorThunk (RuntimeObject* __this, int32_t* ___0_year, int32_t* ___1_month, int32_t* ___2_day, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D(_thisAdjusted, ___0_year, ___1_month, ___2_day, method); } // System.Int32 System.DateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7(__this, 3, NULL); return L_0; } } IL2CPP_EXTERN_C int32_t DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28(_thisAdjusted, method); return _returnValue; } // System.DayOfWeek System.DateTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); return (int32_t)(((int32_t)((int64_t)(((int64_t)il2cpp_codegen_add(((int64_t)(L_0/((int64_t)864000000000LL))), ((int64_t)1)))%((int64_t)7))))); } } IL2CPP_EXTERN_C int32_t DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { int64_t V_0 = 0; { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); V_0 = L_0; int64_t L_1 = V_0; int64_t L_2 = V_0; return ((int32_t)(((int32_t)L_1)^((int32_t)((int64_t)(L_2>>((int32_t)32)))))); } } IL2CPP_EXTERN_C int32_t DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::get_Hour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); return ((int32_t)((int64_t)(((int64_t)(L_0/((int64_t)36000000000LL)))%((int64_t)((int32_t)24))))); } } IL2CPP_EXTERN_C int32_t DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3(_thisAdjusted, method); return _returnValue; } // System.Boolean System.DateTime::IsAmbiguousDaylightSavingTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { uint64_t L_0; L_0 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815(__this, NULL); return (bool)((((int64_t)L_0) == ((int64_t)((int64_t)-4611686018427387904LL)))? 1 : 0); } } IL2CPP_EXTERN_C bool DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27(_thisAdjusted, method); return _returnValue; } // System.DateTimeKind System.DateTime::get_Kind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { uint64_t V_0 = 0; { uint64_t L_0; L_0 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815(__this, NULL); V_0 = L_0; uint64_t L_1 = V_0; if (!L_1) { goto IL_0018; } } { uint64_t L_2 = V_0; if ((((int64_t)L_2) == ((int64_t)((int64_t)4611686018427387904LL)))) { goto IL_001a; } } { goto IL_001c; } IL_0018: { return (int32_t)(0); } IL_001a: { return (int32_t)(1); } IL_001c: { return (int32_t)(2); } } IL2CPP_EXTERN_C int32_t DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::get_Millisecond() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); return ((int32_t)((int64_t)(((int64_t)(L_0/((int64_t)((int32_t)10000))))%((int64_t)((int32_t)1000))))); } } IL2CPP_EXTERN_C int32_t DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::get_Minute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); return ((int32_t)((int64_t)(((int64_t)(L_0/((int64_t)((int32_t)600000000))))%((int64_t)((int32_t)60))))); } } IL2CPP_EXTERN_C int32_t DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7(__this, 2, NULL); return L_0; } } IL2CPP_EXTERN_C int32_t DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2(_thisAdjusted, method); return _returnValue; } // System.DateTime System.DateTime::get_Now() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; int64_t V_2 = 0; int64_t V_3 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0; L_0 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL); V_0 = L_0; V_1 = (bool)0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m5F887A725FB1D272979C57AEA1A3675BAC6ED637(L_1, (&V_1), NULL); V_4 = L_2; int64_t L_3; L_3 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_4), NULL); V_2 = L_3; int64_t L_4; L_4 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_0), NULL); int64_t L_5 = V_2; V_3 = ((int64_t)il2cpp_codegen_add(L_4, L_5)); int64_t L_6 = V_3; if ((((int64_t)L_6) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0040; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; memset((&L_7), 0, sizeof(L_7)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_7), ((int64_t)3155378975999999999LL), 2, /*hidden argument*/NULL); return L_7; } IL_0040: { int64_t L_8 = V_3; if ((((int64_t)L_8) >= ((int64_t)((int64_t)0)))) { goto IL_004e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; memset((&L_9), 0, sizeof(L_9)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_9), ((int64_t)0), 2, /*hidden argument*/NULL); return L_9; } IL_004e: { int64_t L_10 = V_3; bool L_11 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; memset((&L_12), 0, sizeof(L_12)); DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2((&L_12), L_10, 2, L_11, /*hidden argument*/NULL); return L_12; } } // System.Int32 System.DateTime::get_Second() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); return ((int32_t)((int64_t)(((int64_t)(L_0/((int64_t)((int32_t)10000000))))%((int64_t)((int32_t)60))))); } } IL2CPP_EXTERN_C int32_t DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA(_thisAdjusted, method); return _returnValue; } // System.Int64 System.DateTime::get_Ticks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); return L_0; } } IL2CPP_EXTERN_C int64_t DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6(_thisAdjusted, method); return _returnValue; } // System.TimeSpan System.DateTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1; memset((&L_1), 0, sizeof(L_1)); TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&L_1), ((int64_t)(L_0%((int64_t)864000000000LL))), /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A _returnValue; _returnValue = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04(_thisAdjusted, method); return _returnValue; } // System.Int32 System.DateTime::get_Year() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = DateTime_GetDatePart_m16709BE6046BFAA2C389EE00C30F86C9A0EE06F7(__this, 0, NULL); return L_0; } } IL2CPP_EXTERN_C int32_t DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(_thisAdjusted, method); return _returnValue; } // System.Boolean System.DateTime::IsLeapYear(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C (int32_t ___0_year, const RuntimeMethod* method) { { int32_t L_0 = ___0_year; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_000c; } } { int32_t L_1 = ___0_year; if ((((int32_t)L_1) <= ((int32_t)((int32_t)9999)))) { goto IL_001c; } } IL_000c: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1DEDCD1168FE0A01C595FF5B7901D1C14F15F786)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral978E2B96DC2EF05DF82DED36A0D229D41A53154C)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C_RuntimeMethod_var))); } IL_001c: { int32_t L_3 = ___0_year; if (((int32_t)(L_3%4))) { goto IL_0034; } } { int32_t L_4 = ___0_year; if (((int32_t)(L_4%((int32_t)100)))) { goto IL_0032; } } { int32_t L_5 = ___0_year; return (bool)((((int32_t)((int32_t)(L_5%((int32_t)400)))) == ((int32_t)0))? 1 : 0); } IL_0032: { return (bool)1; } IL_0034: { return (bool)0; } } // System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Parse_mC5B13ABDD2A2A2AC709D961EE959BBE26DB241AC (String_t* ___0_s, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_s; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)48), NULL); } IL_000a: { String_t* L_1 = ___0_s; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_1, NULL); RuntimeObject* L_3 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var); DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4; L_4 = DateTimeFormatInfo_GetInstance_m610566C9C55DA97F13DA7436BCC18E796AAB1CBD(L_3, NULL); il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5; L_5 = DateTimeParse_Parse_mA20355303009B45379D61C550110547C6C4772B7(L_2, L_4, 0, NULL); return L_5; } } // System.TimeSpan System.DateTime::Subtract(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_Subtract_m4064A98F489219E9C414DF5C03EE041351B4502A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D(__this, NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_value), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; memset((&L_2), 0, sizeof(L_2)); TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&L_2), ((int64_t)il2cpp_codegen_subtract(L_0, L_1)), /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_Subtract_m4064A98F489219E9C414DF5C03EE041351B4502A_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A _returnValue; _returnValue = DateTime_Subtract_m4064A98F489219E9C414DF5C03EE041351B4502A(_thisAdjusted, ___0_value, method); return _returnValue; } // System.DateTime System.DateTime::ToLocalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0; L_0 = DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595(__this, (bool)0, NULL); return L_0; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94(_thisAdjusted, method); return _returnValue; } // System.DateTime System.DateTime::ToLocalTime(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, bool ___0_throwOnOverflow, 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; } bool V_0 = false; bool V_1 = false; int64_t V_2 = 0; int64_t V_3 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993(__this, NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0010; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); return L_1; } IL_0010: { V_0 = (bool)0; V_1 = (bool)0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3; L_3 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4; L_4 = TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2(L_2, L_3, (&V_0), (&V_1), NULL); V_4 = L_4; int64_t L_5; L_5 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_4), NULL); V_2 = L_5; int64_t L_6; L_6 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6(__this, NULL); int64_t L_7 = V_2; V_3 = ((int64_t)il2cpp_codegen_add(L_6, L_7)); int64_t L_8 = V_3; if ((((int64_t)L_8) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0065; } } { bool L_9 = ___0_throwOnOverflow; if (!L_9) { goto IL_0055; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595_RuntimeMethod_var))); } IL_0055: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_11), ((int64_t)3155378975999999999LL), 2, /*hidden argument*/NULL); return L_11; } IL_0065: { int64_t L_12 = V_3; if ((((int64_t)L_12) >= ((int64_t)((int64_t)0)))) { goto IL_0081; } } { bool L_13 = ___0_throwOnOverflow; if (!L_13) { goto IL_0078; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_14); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595_RuntimeMethod_var))); } IL_0078: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; memset((&L_15), 0, sizeof(L_15)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_15), ((int64_t)0), 2, /*hidden argument*/NULL); return L_15; } IL_0081: { int64_t L_16 = V_3; bool L_17 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; memset((&L_18), 0, sizeof(L_18)); DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2((&L_18), L_16, 2, L_17, /*hidden argument*/NULL); return L_18; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595_AdjustorThunk (RuntimeObject* __this, bool ___0_throwOnOverflow, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595(_thisAdjusted, ___0_throwOnOverflow, method); return _returnValue; } // System.String System.DateTime::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m447C83E1F8FFFFF4D20C0F7D5C18DEB160F9833A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); String_t* L_1; L_1 = DateTimeFormat_Format_m8F8FA6A9F8BD8EDCC502540B4CF79EF7A43FF7F4(L_0, (String_t*)NULL, (RuntimeObject*)NULL, NULL); return L_1; } } IL2CPP_EXTERN_C String_t* DateTime_ToString_m447C83E1F8FFFFF4D20C0F7D5C18DEB160F9833A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = DateTime_ToString_m447C83E1F8FFFFF4D20C0F7D5C18DEB160F9833A(_thisAdjusted, method); return _returnValue; } // System.String System.DateTime::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___0_format, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); String_t* L_1 = ___0_format; il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); String_t* L_2; L_2 = DateTimeFormat_Format_m8F8FA6A9F8BD8EDCC502540B4CF79EF7A43FF7F4(L_0, L_1, (RuntimeObject*)NULL, NULL); return L_2; } } IL2CPP_EXTERN_C String_t* DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78(_thisAdjusted, ___0_format, method); return _returnValue; } // System.String System.DateTime::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m66457C11C42C07E2F437A9D899E6E3FB9FD77B50 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); RuntimeObject* L_1 = ___0_provider; il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); String_t* L_2; L_2 = DateTimeFormat_Format_m8F8FA6A9F8BD8EDCC502540B4CF79EF7A43FF7F4(L_0, (String_t*)NULL, L_1, NULL); return L_2; } } IL2CPP_EXTERN_C String_t* DateTime_ToString_m66457C11C42C07E2F437A9D899E6E3FB9FD77B50_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = DateTime_ToString_m66457C11C42C07E2F437A9D899E6E3FB9FD77B50(_thisAdjusted, ___0_provider, method); return _returnValue; } // 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* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); String_t* L_1 = ___0_format; RuntimeObject* L_2 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); String_t* L_3; L_3 = DateTimeFormat_Format_m8F8FA6A9F8BD8EDCC502540B4CF79EF7A43FF7F4(L_0, L_1, L_2, NULL); return L_3; } } IL2CPP_EXTERN_C String_t* DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00(_thisAdjusted, ___0_format, ___1_provider, method); return _returnValue; } // System.Boolean System.DateTime::TryFormat(System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_TryFormat_m9385B37BF1A10A718818D41C7CEAAC3B2C57BEB2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_1 = ___0_destination; int32_t* L_2 = ___1_charsWritten; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___2_format; RuntimeObject* L_4 = ___3_provider; il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var); bool L_5; L_5 = DateTimeFormat_TryFormat_m0CEC09DC521B9D2CE450DB7124389D52BDC62857(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C bool DateTime_TryFormat_m9385B37BF1A10A718818D41C7CEAAC3B2C57BEB2_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = DateTime_TryFormat_m9385B37BF1A10A718818D41C7CEAAC3B2C57BEB2(_thisAdjusted, ___0_destination, ___1_charsWritten, ___2_format, ___3_provider, method); return _returnValue; } // System.DateTime System.DateTime::ToUniversalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, 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; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = TimeZoneInfo_ConvertTimeToUtc_m08D8D56D51765E340034FFEC1CE950BC3FA20484(L_0, 2, NULL); return L_1; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9(_thisAdjusted, method); return _returnValue; } // System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t, const RuntimeMethod* method) { int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_d), NULL); V_0 = L_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_t; int64_t L_2 = L_1.____ticks_22; V_1 = L_2; int64_t L_3 = V_1; int64_t L_4 = V_0; if ((((int64_t)L_3) > ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)3155378975999999999LL), L_4))))) { goto IL_0024; } } { int64_t L_5 = V_1; int64_t L_6 = V_0; if ((((int64_t)L_5) >= ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)0), L_6))))) { goto IL_0034; } } IL_0024: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF33310D7EB57AD4B307AAB16E09002FFD4E34FF3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865_RuntimeMethod_var))); } IL_0034: { int64_t L_8 = V_0; int64_t L_9 = V_1; uint64_t L_10; L_10 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815((&___0_d), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_11), ((int64_t)(((int64_t)il2cpp_codegen_add(L_8, L_9))|(int64_t)L_10)), /*hidden argument*/NULL); return L_11; } } // System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t, const RuntimeMethod* method) { int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_d), NULL); V_0 = L_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_t; int64_t L_2 = L_1.____ticks_22; V_1 = L_2; int64_t L_3 = V_0; int64_t L_4 = V_1; if ((((int64_t)L_3) < ((int64_t)L_4))) { goto IL_0021; } } { int64_t L_5 = V_0; int64_t L_6 = V_1; if ((((int64_t)((int64_t)il2cpp_codegen_subtract(L_5, ((int64_t)3155378975999999999LL)))) <= ((int64_t)L_6))) { goto IL_0031; } } IL_0021: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF33310D7EB57AD4B307AAB16E09002FFD4E34FF3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31_RuntimeMethod_var))); } IL_0031: { int64_t L_8 = V_0; int64_t L_9 = V_1; uint64_t L_10; L_10 = DateTime_get_InternalKind_mF3F46387DAD9193571E63B53D2CDAE8DA2FE6815((&___0_d), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_11), ((int64_t)(((int64_t)il2cpp_codegen_subtract(L_8, L_9))|(int64_t)L_10)), /*hidden argument*/NULL); return L_11; } } // System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_op_Subtraction_m64D26F5ABFAE6E166A7E567093D025F6C69F0123 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_d2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_d1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_d2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; memset((&L_2), 0, sizeof(L_2)); TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&L_2), ((int64_t)il2cpp_codegen_subtract(L_0, L_1)), /*hidden argument*/NULL); return L_2; } } // System.Boolean System.DateTime::op_Equality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Equality_m568A6320E27F3F7708C77BF8751925C8775DD921 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_d2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_d1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_d2), NULL); return (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0); } } // System.Boolean System.DateTime::op_Inequality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Inequality_mFB20C42AFEA4EEDE607352300499C54680797974 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_d2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_d1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_d2), NULL); return (bool)((((int32_t)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_t1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_t2), NULL); return (bool)((((int64_t)L_0) < ((int64_t)L_1))? 1 : 0); } } // System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_t1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_t2), NULL); return (bool)((((int32_t)((((int64_t)L_0) > ((int64_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_t1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_t2), NULL); return (bool)((((int64_t)L_0) > ((int64_t)L_1))? 1 : 0); } } // System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) { { int64_t L_0; L_0 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___0_t1), NULL); int64_t L_1; L_1 = DateTime_get_InternalTicks_m80645EA2AFA7D75594415703E0396FFA2E2D950D((&___1_t2), NULL); return (bool)((((int32_t)((((int64_t)L_0) < ((int64_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.TypeCode System.DateTime::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetTypeCode_mBDBBFA844A2A64CE673773E6BB637E24E508545D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)16)); } } IL2CPP_EXTERN_C int32_t DateTime_GetTypeCode_mBDBBFA844A2A64CE673773E6BB637E24E508545D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_GetTypeCode_mBDBBFA844A2A64CE673773E6BB637E24E508545D(_thisAdjusted, method); return _returnValue; } // System.Boolean System.DateTime::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_System_IConvertible_ToBoolean_m88D0685E40F160ECD9BA0097A9D5EAE129D57320 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToBoolean_m88D0685E40F160ECD9BA0097A9D5EAE129D57320_RuntimeMethod_var))); } } IL2CPP_EXTERN_C bool DateTime_System_IConvertible_ToBoolean_m88D0685E40F160ECD9BA0097A9D5EAE129D57320_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = DateTime_System_IConvertible_ToBoolean_m88D0685E40F160ECD9BA0097A9D5EAE129D57320(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Char System.DateTime::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DateTime_System_IConvertible_ToChar_m3A2D7E1724D045078329DE5B6928DAF35358128C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToChar_m3A2D7E1724D045078329DE5B6928DAF35358128C_RuntimeMethod_var))); } } IL2CPP_EXTERN_C Il2CppChar DateTime_System_IConvertible_ToChar_m3A2D7E1724D045078329DE5B6928DAF35358128C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = DateTime_System_IConvertible_ToChar_m3A2D7E1724D045078329DE5B6928DAF35358128C(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.SByte System.DateTime::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t DateTime_System_IConvertible_ToSByte_m58BE7B4B9E8805399461C451EDB2A5F038A30E2B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6FA4C59C48F20F657EA95225B529B162ECF44EAB)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToSByte_m58BE7B4B9E8805399461C451EDB2A5F038A30E2B_RuntimeMethod_var))); } } IL2CPP_EXTERN_C int8_t DateTime_System_IConvertible_ToSByte_m58BE7B4B9E8805399461C451EDB2A5F038A30E2B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = DateTime_System_IConvertible_ToSByte_m58BE7B4B9E8805399461C451EDB2A5F038A30E2B(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Byte System.DateTime::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t DateTime_System_IConvertible_ToByte_mC9A4AE726942D47E6A1D6E1C627CD22F53665530 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072BA90B274B502615639084DC3D7FCC63407A24)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToByte_mC9A4AE726942D47E6A1D6E1C627CD22F53665530_RuntimeMethod_var))); } } IL2CPP_EXTERN_C uint8_t DateTime_System_IConvertible_ToByte_mC9A4AE726942D47E6A1D6E1C627CD22F53665530_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = DateTime_System_IConvertible_ToByte_mC9A4AE726942D47E6A1D6E1C627CD22F53665530(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int16 System.DateTime::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t DateTime_System_IConvertible_ToInt16_m53F782E932C1349E508278A88C0B5D6FA484A963 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral979BEF74EBFAB7697A86533A10926355727B6C8A)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToInt16_m53F782E932C1349E508278A88C0B5D6FA484A963_RuntimeMethod_var))); } } IL2CPP_EXTERN_C int16_t DateTime_System_IConvertible_ToInt16_m53F782E932C1349E508278A88C0B5D6FA484A963_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = DateTime_System_IConvertible_ToInt16_m53F782E932C1349E508278A88C0B5D6FA484A963(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt16 System.DateTime::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t DateTime_System_IConvertible_ToUInt16_m87CAD02FAE277DCA7F36D940680D1659CE7094BE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3680357E36BF098D58315A89BD03F078921BEFD9)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToUInt16_m87CAD02FAE277DCA7F36D940680D1659CE7094BE_RuntimeMethod_var))); } } IL2CPP_EXTERN_C uint16_t DateTime_System_IConvertible_ToUInt16_m87CAD02FAE277DCA7F36D940680D1659CE7094BE_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = DateTime_System_IConvertible_ToUInt16_m87CAD02FAE277DCA7F36D940680D1659CE7094BE(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int32 System.DateTime::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_System_IConvertible_ToInt32_mEF8F4DF23984AF54CB1748F08B6E4D2AB50B5ECE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB47297909F3BD6EDB8AD67A8511975233214355)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToInt32_mEF8F4DF23984AF54CB1748F08B6E4D2AB50B5ECE_RuntimeMethod_var))); } } IL2CPP_EXTERN_C int32_t DateTime_System_IConvertible_ToInt32_mEF8F4DF23984AF54CB1748F08B6E4D2AB50B5ECE_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = DateTime_System_IConvertible_ToInt32_mEF8F4DF23984AF54CB1748F08B6E4D2AB50B5ECE(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt32 System.DateTime::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DateTime_System_IConvertible_ToUInt32_m7297BB44A3D2F758C253C0DA1552411BF4137FB1 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB12933F4DC58820F9722BDF423F448FD91C0EE8A)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToUInt32_m7297BB44A3D2F758C253C0DA1552411BF4137FB1_RuntimeMethod_var))); } } IL2CPP_EXTERN_C uint32_t DateTime_System_IConvertible_ToUInt32_m7297BB44A3D2F758C253C0DA1552411BF4137FB1_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = DateTime_System_IConvertible_ToUInt32_m7297BB44A3D2F758C253C0DA1552411BF4137FB1(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Int64 System.DateTime::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_System_IConvertible_ToInt64_m1A022E5D74555F165C25A1D75E19DA9A16E7087F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB7E7D625DFBC9C92FA0449D5E3E0BE263DECD0EA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToInt64_m1A022E5D74555F165C25A1D75E19DA9A16E7087F_RuntimeMethod_var))); } } IL2CPP_EXTERN_C int64_t DateTime_System_IConvertible_ToInt64_m1A022E5D74555F165C25A1D75E19DA9A16E7087F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = DateTime_System_IConvertible_ToInt64_m1A022E5D74555F165C25A1D75E19DA9A16E7087F(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.UInt64 System.DateTime::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DateTime_System_IConvertible_ToUInt64_mACC536AC91C65A8333B715AE1E97DBCA096A9884 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF45CADC16AD267EA891B4231D162B68FDED748D)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToUInt64_mACC536AC91C65A8333B715AE1E97DBCA096A9884_RuntimeMethod_var))); } } IL2CPP_EXTERN_C uint64_t DateTime_System_IConvertible_ToUInt64_mACC536AC91C65A8333B715AE1E97DBCA096A9884_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = DateTime_System_IConvertible_ToUInt64_mACC536AC91C65A8333B715AE1E97DBCA096A9884(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Single System.DateTime::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DateTime_System_IConvertible_ToSingle_mF2470BC10216C1A1395825805F07797604EB2B89 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToSingle_mF2470BC10216C1A1395825805F07797604EB2B89_RuntimeMethod_var))); } } IL2CPP_EXTERN_C float DateTime_System_IConvertible_ToSingle_mF2470BC10216C1A1395825805F07797604EB2B89_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = DateTime_System_IConvertible_ToSingle_mF2470BC10216C1A1395825805F07797604EB2B89(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Double System.DateTime::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double DateTime_System_IConvertible_ToDouble_mF9398C544CB0CF7A704C4DA7F2AF55251EDA271C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToDouble_mF9398C544CB0CF7A704C4DA7F2AF55251EDA271C_RuntimeMethod_var))); } } IL2CPP_EXTERN_C double DateTime_System_IConvertible_ToDouble_mF9398C544CB0CF7A704C4DA7F2AF55251EDA271C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = DateTime_System_IConvertible_ToDouble_mF9398C544CB0CF7A704C4DA7F2AF55251EDA271C(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Decimal System.DateTime::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F DateTime_System_IConvertible_ToDecimal_m6DC5225E5665975254A30217122921B578C095C5 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_System_IConvertible_ToDecimal_m6DC5225E5665975254A30217122921B578C095C5_RuntimeMethod_var))); } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F DateTime_System_IConvertible_ToDecimal_m6DC5225E5665975254A30217122921B578C095C5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = DateTime_System_IConvertible_ToDecimal_m6DC5225E5665975254A30217122921B578C095C5(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.DateTime System.DateTime::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_System_IConvertible_ToDateTime_m98F5BA3029803DD93434761007D831D61040C570 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); return L_0; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_System_IConvertible_ToDateTime_m98F5BA3029803DD93434761007D831D61040C570_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = DateTime_System_IConvertible_ToDateTime_m98F5BA3029803DD93434761007D831D61040C570(_thisAdjusted, ___0_provider, method); return _returnValue; } // System.Object System.DateTime::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DateTime_System_IConvertible_ToType_mA83365225C865F66AF4CFB8D29F028F5E73859CE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)__this); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = L_0; RuntimeObject* L_2 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___0_type; RuntimeObject* L_4 = ___1_provider; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* DateTime_System_IConvertible_ToType_mA83365225C865F66AF4CFB8D29F028F5E73859CE_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = DateTime_System_IConvertible_ToType_mA83365225C865F66AF4CFB8D29F028F5E73859CE(_thisAdjusted, ___0_type, ___1_provider, method); return _returnValue; } // System.Boolean System.DateTime::TryCreate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_TryCreate_mBCE7832FEBDEE2EC302095F693607BF412E70BE1 (int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, int32_t ___3_hour, int32_t ___4_minute, int32_t ___5_second, int32_t ___6_millisecond, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___7_result, 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; } Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL; int64_t V_1 = 0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* G_B8_0 = NULL; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_0 = ___7_result; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; *(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_0 = L_1; int32_t L_2 = ___0_year; if ((((int32_t)L_2) < ((int32_t)1))) { goto IL_0021; } } { int32_t L_3 = ___0_year; if ((((int32_t)L_3) > ((int32_t)((int32_t)9999)))) { goto IL_0021; } } { int32_t L_4 = ___1_month; if ((((int32_t)L_4) < ((int32_t)1))) { goto IL_0021; } } { int32_t L_5 = ___1_month; if ((((int32_t)L_5) <= ((int32_t)((int32_t)12)))) { goto IL_0023; } } IL_0021: { return (bool)0; } IL_0023: { int32_t L_6 = ___0_year; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_7; L_7 = DateTime_IsLeapYear_mB422194991B45198BD881EA4790F7AF4F5D6081C(L_6, NULL); if (L_7) { goto IL_0032; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30; G_B8_0 = L_8; goto IL_0037; } IL_0032: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31; G_B8_0 = L_9; } IL_0037: { V_0 = G_B8_0; int32_t L_10 = ___2_day; if ((((int32_t)L_10) < ((int32_t)1))) { goto IL_0048; } } { int32_t L_11 = ___2_day; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = V_0; int32_t L_13 = ___1_month; NullCheck(L_12); int32_t L_14 = L_13; int32_t L_15 = (L_12)->GetAt(static_cast(L_14)); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = V_0; int32_t L_17 = ___1_month; NullCheck(L_16); int32_t L_18 = ((int32_t)il2cpp_codegen_subtract(L_17, 1)); int32_t L_19 = (L_16)->GetAt(static_cast(L_18)); if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_15, L_19))))) { goto IL_004a; } } IL_0048: { return (bool)0; } IL_004a: { int32_t L_20 = ___3_hour; if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_0069; } } { int32_t L_21 = ___3_hour; if ((((int32_t)L_21) >= ((int32_t)((int32_t)24)))) { goto IL_0069; } } { int32_t L_22 = ___4_minute; if ((((int32_t)L_22) < ((int32_t)0))) { goto IL_0069; } } { int32_t L_23 = ___4_minute; if ((((int32_t)L_23) >= ((int32_t)((int32_t)60)))) { goto IL_0069; } } { int32_t L_24 = ___5_second; if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_0069; } } { int32_t L_25 = ___5_second; if ((((int32_t)L_25) < ((int32_t)((int32_t)60)))) { goto IL_006b; } } IL_0069: { return (bool)0; } IL_006b: { int32_t L_26 = ___6_millisecond; if ((((int32_t)L_26) < ((int32_t)0))) { goto IL_0079; } } { int32_t L_27 = ___6_millisecond; if ((((int32_t)L_27) < ((int32_t)((int32_t)1000)))) { goto IL_007b; } } IL_0079: { return (bool)0; } IL_007b: { int32_t L_28 = ___0_year; int32_t L_29 = ___1_month; int32_t L_30 = ___2_day; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_31; L_31 = DateTime_DateToTicks_m2ADC6FF6BB38418819671A51620FBD0CAE0A208C(L_28, L_29, L_30, NULL); int32_t L_32 = ___3_hour; int32_t L_33 = ___4_minute; int32_t L_34 = ___5_second; int64_t L_35; L_35 = DateTime_TimeToTicks_mFE9BA5F0AE03AB8E462BD15D006049ACF842B1F9(L_32, L_33, L_34, NULL); V_1 = ((int64_t)il2cpp_codegen_add(L_31, L_35)); int64_t L_36 = V_1; int32_t L_37 = ___6_millisecond; V_1 = ((int64_t)il2cpp_codegen_add(L_36, ((int64_t)il2cpp_codegen_multiply(((int64_t)L_37), ((int64_t)((int32_t)10000)))))); int64_t L_38 = V_1; if ((((int64_t)L_38) < ((int64_t)((int64_t)0)))) { goto IL_00ad; } } { int64_t L_39 = V_1; if ((((int64_t)L_39) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00af; } } IL_00ad: { return (bool)0; } IL_00af: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_40 = ___7_result; int64_t L_41 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_42; memset((&L_42), 0, sizeof(L_42)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_42), L_41, 0, /*hidden argument*/NULL); *(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_40 = L_42; return (bool)1; } } // System.DateTime System.DateTime::get_UtcNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA (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; } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_0; L_0 = DateTime_GetSystemTimeAsFileTime_m1A823139262897B7FEC7B803F727CF49023F4B71(NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; memset((&L_1), 0, sizeof(L_1)); DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline((&L_1), ((int64_t)(((int64_t)il2cpp_codegen_add(L_0, ((int64_t)504911232000000000LL)))|((int64_t)4611686018427387904LL))), /*hidden argument*/NULL); return L_1; } } // System.Int64 System.DateTime::GetSystemTimeAsFileTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_GetSystemTimeAsFileTime_m1A823139262897B7FEC7B803F727CF49023F4B71 (const RuntimeMethod* method) { typedef int64_t (*DateTime_GetSystemTimeAsFileTime_m1A823139262897B7FEC7B803F727CF49023F4B71_ftn) (); using namespace il2cpp::icalls; return ((DateTime_GetSystemTimeAsFileTime_m1A823139262897B7FEC7B803F727CF49023F4B71_ftn)mscorlib::System::DateTime::GetSystemTimeAsFileTime) (); } // System.Int64 System.DateTime::ToBinaryRaw() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_ToBinaryRaw_mBA228545EFBF2455CD1F2A653CA156882A90E5B2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->____dateData_46; return L_0; } } IL2CPP_EXTERN_C int64_t DateTime_ToBinaryRaw_mBA228545EFBF2455CD1F2A653CA156882A90E5B2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = DateTime_ToBinaryRaw_mBA228545EFBF2455CD1F2A653CA156882A90E5B2_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.DateTime::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__cctor_m7FF6CEDD93F3AFADBC5CBFEB7E5032672BF4EF13 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____5857EE4CE98BFABBD62B385C1098507DD0052FF3951043AAD6A1DABD495F18AA_27_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FADB218011E7702BB9575D0C32A685DA10B5C72EB809BD9A955DB1C76E4D8315_92_FieldInfo_var); s_Il2CppMethodInitialized = true; } { 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 (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____5857EE4CE98BFABBD62B385C1098507DD0052FF3951043AAD6A1DABD495F18AA_27_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_1, L_2, NULL); ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth365_30), (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 (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FADB218011E7702BB9575D0C32A685DA10B5C72EB809BD9A955DB1C76E4D8315_92_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_4, L_5, NULL); ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31 = L_4; Il2CppCodeGenWriteBarrier((void**)(&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___s_daysToMonth366_31), (void*)L_4); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6; memset((&L_6), 0, sizeof(L_6)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_6), ((int64_t)0), 0, /*hidden argument*/NULL); ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32 = L_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; memset((&L_7), 0, sizeof(L_7)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_7), ((int64_t)3155378975999999999LL), 0, /*hidden argument*/NULL); ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33 = L_7; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; memset((&L_8), 0, sizeof(L_8)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_8), ((int64_t)621355968000000000LL), 1, /*hidden argument*/NULL); ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___UnixEpoch_34 = L_8; return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif 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 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 ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___0_text; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0; return L_1; } IL_000d: { String_t* L_2 = ___0_text; NullCheck(L_2); Il2CppChar* L_3; L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL); String_t* L_4 = ___0_text; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6; memset((&L_6), 0, sizeof(L_6)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_6; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Utc_m0690BFE721AA48181F69883884DDEFCC81EDDE0D_inline (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 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectoryUnity_mC243B810BBC87D97D387CB623C7B3ECE3DB6ED32_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline (String_t* ___0_text, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___0_text; if (L_0) { goto IL_001a; } } { int32_t L_1 = ___1_start; if (L_1) { goto IL_0009; } } { int32_t L_2 = ___2_length; if (!L_2) { goto IL_0010; } } IL_0009: { ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL); } IL_0010: { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = V_0; return L_3; } IL_001a: { int32_t L_4 = ___1_start; String_t* L_5 = ___0_text; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if ((!(((uint32_t)L_4) <= ((uint32_t)L_6)))) { goto IL_002e; } } { int32_t L_7 = ___2_length; String_t* L_8 = ___0_text; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); int32_t L_10 = ___1_start; if ((!(((uint32_t)L_7) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10)))))) { goto IL_0035; } } IL_002e: { ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL); } IL_0035: { String_t* L_11 = ___0_text; NullCheck(L_11); Il2CppChar* L_12; L_12 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_11, NULL); int32_t L_13 = ___1_start; Il2CppChar* L_14; L_14 = il2cpp_unsafe_add(L_12, L_13); int32_t L_15 = ___2_length; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16; memset((&L_16), 0, sizeof(L_16)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_16), L_14, L_15, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_16; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_mCDA6B03F6605094C599D7865D23DFB6A04DEE3B6_inline (String_t* ___0_text, int32_t ___1_start, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___0_text; if (L_0) { goto IL_0017; } } { int32_t L_1 = ___1_start; if (!L_1) { goto IL_000d; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL); } IL_000d: { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = V_0; return L_2; } IL_0017: { int32_t L_3 = ___1_start; String_t* L_4 = ___0_text; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if ((!(((uint32_t)L_3) > ((uint32_t)L_5)))) { goto IL_0027; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL); } IL_0027: { String_t* L_6 = ___0_text; NullCheck(L_6); Il2CppChar* L_7; L_7 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_6, NULL); int32_t L_8 = ___1_start; Il2CppChar* L_9; L_9 = il2cpp_unsafe_add(L_7, L_8); String_t* L_10 = ___0_text; NullCheck(L_10); int32_t L_11; L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL); int32_t L_12 = ___1_start; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13; memset((&L_13), 0, sizeof(L_13)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_13), L_9, ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_13; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffset_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffsetDelta_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____daylightDelta_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_OrdinalIgnoreCase_m071AA1B1747345CCA058A3879EBDEBBA2EA4B169_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* L_0 = ((StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var))->___s_ordinalIgnoreCase_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateStart_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateEnd_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { bool L_0 = __this->____noDaylightTransitions_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionStart_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionEnd_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____timeOfDay_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isFixedDateRule_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____month_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____day_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____week_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____dayOfWeek_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___0_ticks, const RuntimeMethod* method) { { int64_t L_0 = ___0_ticks; __this->____ticks_22 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* __this, const RuntimeMethod* method) { { Exception_t* L_0 = __this->___m_Exception_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____HResult_11 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline (Exception_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____HResult_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method) { { Exception_t* L_0 = __this->____innerException_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float BitConverter_Int32BitsToSingle_mAD799CFA19FABC0DCA7A09F3380A1F0B0EB39130_inline (int32_t ___0_value, const RuntimeMethod* method) { { float L_0 = *((float*)((uintptr_t)(&___0_value))); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_EqualsOrdinalIgnoreCase_m7023A654AB08294BBEBEC9B9281FF3FD651E0C70_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_span), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); int32_t L_1; L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_0) == ((int32_t)L_1))) { goto IL_0012; } } { return (bool)0; } IL_0012: { int32_t L_2; L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (L_2) { goto IL_001d; } } { return (bool)1; } IL_001d: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___0_span; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___1_value; il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var); int32_t L_5; L_5 = CompareInfo_CompareOrdinalIgnoreCase_mDD33EF7DEB14E5B3CC2CC4CC4E1DE26A7E5C1202(L_3, L_4, NULL); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline (String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___0_value; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0; return L_1; } IL_000d: { String_t* L_2 = ___0_value; NullCheck(L_2); Il2CppChar* L_3; L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL); String_t* L_4 = ___0_value; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6; memset((&L_6), 0, sizeof(L_6)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_6; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Convert_Decode_m74719FCFF21B855C78E3859EDCE7F92506ED2A20_inline (Il2CppChar* ___0_encodedChars, int8_t* ___1_decodingMap, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { Il2CppChar* L_0 = ___0_encodedChars; int32_t L_1 = *((uint16_t*)L_0); V_0 = L_1; Il2CppChar* L_2 = ___0_encodedChars; Il2CppChar* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = *((uint16_t*)L_3); V_1 = L_4; Il2CppChar* L_5 = ___0_encodedChars; Il2CppChar* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = *((uint16_t*)L_6); V_2 = L_7; Il2CppChar* L_8 = ___0_encodedChars; Il2CppChar* L_9; L_9 = il2cpp_unsafe_add(L_8, 3); int32_t L_10 = *((uint16_t*)L_9); V_3 = L_10; int32_t L_11 = V_0; int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_3; if (!((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(L_11|L_12))|L_13))|L_14)))&((int64_t)(uint64_t)((uint32_t)((int32_t)-256)))))) { goto IL_0031; } } { return (-1); } IL_0031: { int8_t* L_15 = ___1_decodingMap; int32_t L_16 = V_0; int8_t* L_17; L_17 = il2cpp_unsafe_add(L_15, L_16); int32_t L_18 = *((int8_t*)L_17); V_0 = L_18; int8_t* L_19 = ___1_decodingMap; int32_t L_20 = V_1; int8_t* L_21; L_21 = il2cpp_unsafe_add(L_19, L_20); int32_t L_22 = *((int8_t*)L_21); V_1 = L_22; int8_t* L_23 = ___1_decodingMap; int32_t L_24 = V_2; int8_t* L_25; L_25 = il2cpp_unsafe_add(L_23, L_24); int32_t L_26 = *((int8_t*)L_25); V_2 = L_26; int8_t* L_27 = ___1_decodingMap; int32_t L_28 = V_3; int8_t* L_29; L_29 = il2cpp_unsafe_add(L_27, L_28); int32_t L_30 = *((int8_t*)L_29); V_3 = L_30; int32_t L_31 = V_0; V_0 = ((int32_t)(L_31<<((int32_t)18))); int32_t L_32 = V_1; V_1 = ((int32_t)(L_32<<((int32_t)12))); int32_t L_33 = V_2; V_2 = ((int32_t)(L_33<<6)); int32_t L_34 = V_0; int32_t L_35 = V_3; V_0 = ((int32_t)(L_34|L_35)); int32_t L_36 = V_1; int32_t L_37 = V_2; V_1 = ((int32_t)(L_36|L_37)); int32_t L_38 = V_0; int32_t L_39 = V_1; V_0 = ((int32_t)(L_38|L_39)); int32_t L_40 = V_0; return L_40; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Convert_WriteThreeLowOrderBytes_mF81EE1FF49E7A654C1AF5971E25F88786FAC08B1_inline (uint8_t* ___0_destination, int32_t ___1_value, const RuntimeMethod* method) { { uint8_t* L_0 = ___0_destination; int32_t L_1 = ___1_value; *((int8_t*)L_0) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_1>>((int32_t)16)))); uint8_t* L_2 = ___0_destination; uint8_t* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = ___1_value; *((int8_t*)L_3) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_4>>8))); uint8_t* L_5 = ___0_destination; uint8_t* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = ___1_value; *((int8_t*)L_6) = (int8_t)((int32_t)(uint8_t)L_7); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Convert_IsSpace_m9880C3C75ADA4C1F19FE7A907AFBB81C1F885F23_inline (Il2CppChar ___0_c, const RuntimeMethod* method) { { Il2CppChar L_0 = ___0_c; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_0015; } } { Il2CppChar L_1 = ___0_c; if ((((int32_t)L_1) == ((int32_t)((int32_t)9)))) { goto IL_0015; } } { Il2CppChar L_2 = ___0_c; if ((((int32_t)L_2) == ((int32_t)((int32_t)13)))) { goto IL_0015; } } { Il2CppChar L_3 = ___0_c; return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)10)))? 1 : 0); } IL_0015: { return (bool)1; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTime__ctor_mE0BBACEC3A7AADB76EC243F5B4D9DCC9545AF50C_inline (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, uint64_t ___0_dateData, const RuntimeMethod* method) { { uint64_t L_0 = ___0_dateData; __this->____dateData_46 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t DateTime_ToBinaryRaw_mBA228545EFBF2455CD1F2A653CA156882A90E5B2_inline (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->____dateData_46; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, 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; } { if (!false) { goto IL_0016; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_1; L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL); ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF(L_1, NULL); } IL_0016: { int32_t L_2 = ___1_length; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001f; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_001f: { void* L_3 = ___0_pointer; Il2CppChar* L_4; L_4 = il2cpp_unsafe_as_ref((uint8_t*)L_3); ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5; memset((&L_5), 0, sizeof(L_5)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4); __this->____pointer_0 = L_5; int32_t L_6 = ___1_length; __this->____length_1 = L_6; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_gshared_inline (const RuntimeMethod* method) { { il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_0 = ((ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->___U3CSharedU3Ek__BackingField_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, 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 = ___0_item; NullCheck(L_6); (L_6)->SetAt(static_cast(L_7), (RuntimeObject*)L_8); return; } IL_0034: { RuntimeObject* L_9 = ___0_item; (( 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 bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { typedef bool (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_obj, reinterpret_cast(__this->___method_3)); } 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; } } 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 bool Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_gshared_inline (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___0_arg, const RuntimeMethod* method) { typedef bool (*FunctionPointerType) (RuntimeObject*, Il2CppChar, const RuntimeMethod*); return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_arg, reinterpret_cast(__this->___method_3)); } 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 ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_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 Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array; if (L_0) { goto IL_0016; } } { int32_t L_1 = ___1_start; if (L_1) { goto IL_0009; } } { int32_t L_2 = ___2_length; if (!L_2) { goto IL_000e; } } IL_0009: { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_000e: { il2cpp_codegen_initobj(__this, sizeof(ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D)); return; } IL_0016: { int32_t L_3 = ___1_start; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_array; NullCheck(L_4); if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_0024; } } { int32_t L_5 = ___2_length; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___0_array; NullCheck(L_6); int32_t L_7 = ___1_start; if ((!(((uint32_t)L_5) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), L_7)))))) { goto IL_0029; } } IL_0024: { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___0_array; NullCheck((RuntimeArray*)L_8); uint8_t* L_9; L_9 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_8, NULL); uint8_t* L_10; L_10 = il2cpp_unsafe_as_ref(L_9); int32_t L_11 = ___1_start; uint8_t* L_12; L_12 = il2cpp_unsafe_add(L_10, L_11); ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_13; memset((&L_13), 0, sizeof(L_13)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_13), L_12); __this->____pointer_0 = L_13; int32_t L_14 = ___2_length; __this->____length_1 = L_14; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___0_start; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) <= ((uint32_t)L_1)))) { goto IL_0014; } } { int32_t L_2 = ___1_length; int32_t L_3 = (int32_t)__this->____length_1; int32_t L_4 = ___0_start; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4)))))) { goto IL_0019; } } IL_0014: { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_0019: { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0; V_0 = L_5; Il2CppChar* L_6; L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0)); int32_t L_7 = ___0_start; Il2CppChar* L_8; L_8 = il2cpp_unsafe_add(L_6, L_7); int32_t L_9 = ___1_length; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10; memset((&L_10), 0, sizeof(L_10)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array; if (L_0) { goto IL_000b; } } { il2cpp_codegen_initobj(__this, sizeof(ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D)); return; } IL_000b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_array; NullCheck((RuntimeArray*)L_1); uint8_t* L_2; L_2 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_1, NULL); uint8_t* L_3; L_3 = il2cpp_unsafe_as_ref(L_2); ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_4; memset((&L_4), 0, sizeof(L_4)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_4), L_3); __this->____pointer_0 = L_4; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___0_array; NullCheck(L_5); __this->____length_1 = ((int32_t)(((RuntimeArray*)L_5)->max_length)); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, const RuntimeMethod* method) { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___0_start; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_000e: { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_2 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0; V_0 = L_2; Il2CppChar* L_3; L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0)); int32_t L_4 = ___0_start; Il2CppChar* L_5; L_5 = il2cpp_unsafe_add(L_3, L_4); int32_t L_6 = (int32_t)__this->____length_1; int32_t L_7 = ___0_start; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_8; memset((&L_8), 0, sizeof(L_8)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_8; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___0_start, const RuntimeMethod* method) { ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___0_start; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_000e: { ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_2 = (ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC)__this->____pointer_0; V_0 = L_2; uint8_t* L_3; L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(uint8_t, (Il2CppByReference*)(&V_0)); int32_t L_4 = ___0_start; uint8_t* L_5; L_5 = il2cpp_unsafe_add(L_3, L_4); int32_t L_6 = (int32_t)__this->____length_1; int32_t L_7 = ___0_start; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_8; memset((&L_8), 0, sizeof(L_8)); Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_8; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___0_start; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) <= ((uint32_t)L_1)))) { goto IL_0014; } } { int32_t L_2 = ___1_length; int32_t L_3 = (int32_t)__this->____length_1; int32_t L_4 = ___0_start; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4)))))) { goto IL_0019; } } IL_0014: { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_0019: { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0; V_0 = L_5; Il2CppChar* L_6; L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0)); int32_t L_7 = ___0_start; Il2CppChar* L_8; L_8 = il2cpp_unsafe_add(L_6, L_7); int32_t L_9 = ___1_length; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_10; memset((&L_10), 0, sizeof(L_10)); Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, void* ___0_pointer, int32_t ___1_length, 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; } { if (!false) { goto IL_0016; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_1; L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL); ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF(L_1, NULL); } IL_0016: { int32_t L_2 = ___1_length; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001f; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL); } IL_001f: { void* L_3 = ___0_pointer; Il2CppChar* L_4; L_4 = il2cpp_unsafe_as_ref((uint8_t*)L_3); ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5; memset((&L_5), 0, sizeof(L_5)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4); __this->____pointer_0 = L_5; int32_t L_6 = ___1_length; __this->____length_1 = L_6; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) { { RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0* L_0; L_0 = il2cpp_unsafe_as(__this); NullCheck(L_0); uint8_t* L_1 = (&L_0->___Data_2); return L_1; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___0_ptr; ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1; memset((&L_1), 0, sizeof(L_1)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0); __this->____pointer_0 = L_1; int32_t L_2 = ___1_length; __this->____length_1 = L_2; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) { { uint8_t* L_0 = ___0_ptr; ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_1; memset((&L_1), 0, sizeof(L_1)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0); __this->____pointer_0 = L_1; int32_t L_2 = ___1_length; __this->____length_1 = L_2; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___0_ptr; ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1; memset((&L_1), 0, sizeof(L_1)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0); __this->____pointer_0 = L_1; int32_t L_2 = ___1_length; __this->____length_1 = L_2; return; } }