Badminton-Scoreboard/Classes/Native/mscorlib.cpp
2023-10-08 10:24:48 +08:00

35966 lines
1.4 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include "icalls/mscorlib/Interop.h"
#include "icalls/mscorlib/Mono/RuntimeClassHandle.h"
#include "icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h"
#include "icalls/mscorlib/Mono/RuntimeMarshal.h"
#include "icalls/mscorlib/Mono/SafeStringMarshal.h"
#include "icalls/mscorlib/System/String.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 <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
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 <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtualActionInvoker5
{
typedef void (*Action)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtualFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct VirtualFuncInvoker7
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
// System.Action`1<System.Object>
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
// System.Buffers.ArrayPool`1<System.Byte>
struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD;
// System.Comparison`1<Mono.Globalization.Unicode.Level2Map>
struct Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE;
// System.Comparison`1<System.Object>
struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding>
struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator>
struct Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470;
// System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>
struct Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8;
// System.Collections.Generic.IComparer`1<Mono.Globalization.Unicode.Contraction>
struct IComparer_1_tA8FE324C126879C27B219151B67567D681D4429E;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E;
// System.Collections.Generic.IEnumerable`1<System.String>
struct IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44;
// System.Collections.Generic.IEnumerator`1<System.Char>
struct IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8;
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>
struct List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258;
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>
struct List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<System.String>
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// Mono.Globalization.Unicode.Contraction[]
struct ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// Mono.Globalization.Unicode.Level2Map[]
struct Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// Mono.Globalization.Unicode.TailoringInfo[]
struct TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// Mono.Globalization.Unicode.CodePointIndexer/TableRange[]
struct TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
// System.CharEnumerator
struct CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// Mono.Globalization.Unicode.CodePointIndexer
struct CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// Mono.Globalization.Unicode.Contraction
struct Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540;
// Mono.Globalization.Unicode.ContractionComparer
struct ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Text.DecoderFallback
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
// System.Text.DecoderFallbackBuffer
struct DecoderFallbackBuffer_t02E41C0BEC894A17CFE1A1FE88A2388DFDA05A73;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.IO.DirectoryNotFoundException
struct DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Exception
struct Exception_t;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757;
// System.Threading.ExecutionContext
struct ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710;
// System.IO.FileNotFoundException
struct FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A;
// System.IConvertible
struct IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910;
// System.Security.Principal.IPrincipal
struct IPrincipal_tE7AF5096287F6C3472585E124CB38FF2A51EAB5F;
// System.Globalization.ISimpleCollator
struct ISimpleCollator_t084383013F96378AFFD4540649E086C9C13BFF5B;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82;
// System.IntPtr
struct IntPtr_t;
// System.Threading.InternalThread
struct InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687;
// Mono.Globalization.Unicode.Level2Map
struct Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.MissingMetadataException
struct MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4;
// System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0;
// Mono.Interop.MonoPInvokeCallbackAttribute
struct MonoPInvokeCallbackAttribute_tCB0F576FE9D9F83EAC879DEAB365905A52052C7F;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.OperationCanceledException
struct OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662;
// System.OutOfMemoryException
struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F;
// System.Threading.ParameterizedThreadStart
struct ParameterizedThreadStart_tAA8FDC4E868056A7CB7CB2C4AB4986039B1D91E9;
// System.IO.PathTooLongException
struct PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5;
// Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks
struct ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC;
// System.Reflection.RuntimeAssembly
struct RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF;
// Internal.Runtime.Augments.RuntimeThread
struct RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D;
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E;
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7;
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449;
// Mono.Globalization.Unicode.SimpleCollator
struct SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D;
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB;
// Mono.Xml.SmallXmlParserException
struct SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7;
// System.Globalization.SortKey
struct SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740;
// Mono.Globalization.Unicode.SortKeyBuffer
struct SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A;
// System.Globalization.SortVersion
struct SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E;
// System.Collections.Stack
struct Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295;
// Mono.Globalization.Unicode.TailoringInfo
struct TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A;
// Internal.Runtime.Augments.TaskTraceCallbacks
struct TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7;
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F;
// System.Type
struct Type_t;
// System.Reflection.TypeFilter
struct TypeFilter_tD8F0A4CFBE6E8F8FA8D673113A73026EDA4640BA;
// System.UnauthorizedAccessException
struct UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t3CB1550411277AD1F17B720A3C07C37973A99558;
// Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c
struct U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596;
// Mono.RuntimeStructs/GPtrArray
struct GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF;
// Mono.RuntimeStructs/GenericParamInfo
struct GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726;
// Mono.RuntimeStructs/MonoClass
struct MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90;
// Mono.RuntimeStructs/RemoteClass
struct RemoteClass_t8F343021C09FCE40A298F94523C6E988DD3E3DD0;
// Mono.Xml.SmallXmlParser/AttrListImpl
struct AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827;
// Mono.Xml.SmallXmlParser/IContentHandler
struct IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25;
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* AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D_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* CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540_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* DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Error_tA96F6BC4A908C7D5F1E1C4A60CE2AC73DCA88D4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_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* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Normalization_t15B8C90D2AEC7D6D933322DBDF8850055BDD24AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringSplitOptions_t4DD892C76C70DD4800FC1B76054D69826F770062_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_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_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____042957A0DB5FF2D38A343AC5AE5F8635B88F10C32EB87A238B1DFB4756468476_1_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____0F9E3C7E66CDEF5C44FA29E65CA676C480F7A2A4A067F70107FDC292C68D38B0_4_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____2403FBEA85D0741C5727760E97EF16C9BF23294F21C0F1265A4BAF7F22202A64_12_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3D95E4501B1964D7FCE16E3F5682A038752B462357D87343880B1E819F6163FE_16_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____42E1421FC2A5A6A33E964D7EB9603EB101818D858DDA09B2BC9B5A888C1C351C_18_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____4623CA5867960AA898AA1F65E720CD5ECD3552542E0C6F6FB65B21D14DD1CBC2_19_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____508085E0DDEEA9CE48BFAE98CEC779F8D06301AE973555D37680D08190CAFA70_22_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____9960C7FC60CDD325C8A2A00995BE7064EAC3F6295C6A5C4E797D2281846131E4_51_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____99E66DACA3EFF94776AF1258E0E5B2F4DF2900E4EA32351B0DF37A87F2426B1F_52_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A2DFDF9C2CED8BB1C0B9B06064345ACC9C22DFE5FEC9976FF061F0994451519B_54_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____BABD01C34E7E65E57E4C431281E782B4101CE0644A8090AD6E501F1C6CF2C9DF_61_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____BB425A9B43E10C921902A25D07A4317DEFF9F606A788672E1B21633C143407F0_62_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C250CAD28060A4EB63B4C4A643DDA196CCD35FD2FC67FB749ADF4BAC6D62E1A0_63_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____CAFFFC9D15E4037EE8FBDB1A45DFE456F0936BDC7310F1882EAF14B706A76658_69_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D896D464C3726A21162F271ACB711464AD07EA9C9CE78E0297FD0DE934471FA6_73_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E32C465157D21F39B3DBF186A98FB02185C63B0260B47247A7A5FDF2B061EAA8_80_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E5F4F6214036DF103321A8A0CE30C2EF935694B4199D52BC538E7EF3F045CB92_81_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____EBE07C3718876777F609CD22058F4C3A6CCCC695F5BDE90998DC1E12E0CBE63D_84_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____EF82B163CA8252A793A6E73F57775D843C9A21F65586926EB11893FA8BB603E9_86_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FEC387BA57A54BB6066E4CA8A4F9C0FF9C36B9CBD6600C3683F6FB1BDB5077EB_95_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9;
IL2CPP_EXTERN_C String_t* _stringLiteral022B0E9B09F68A8CB6BCCB96E171E2D48495A4E9;
IL2CPP_EXTERN_C String_t* _stringLiteral03B46450C9E1B2EDEB8A6AAE5F044BF93B41FA5D;
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
IL2CPP_EXTERN_C String_t* _stringLiteral08E7C6EEE80F9AC466CA0F2CDEE7A1AD9CA33809;
IL2CPP_EXTERN_C String_t* _stringLiteral0B387A0B65C6A93464FB0B268584E15E02AE9BEC;
IL2CPP_EXTERN_C String_t* _stringLiteral0C45DB50527FCFAD456E74EB416B617329505309;
IL2CPP_EXTERN_C String_t* _stringLiteral15F97E5D6378242ED54641B00B68E301623A0191;
IL2CPP_EXTERN_C String_t* _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B;
IL2CPP_EXTERN_C String_t* _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C;
IL2CPP_EXTERN_C String_t* _stringLiteral29F4EA55DD5B588CCE1FE1BBB9B911C4B9AFF232;
IL2CPP_EXTERN_C String_t* _stringLiteral2EF947F393DF2D510E54AA24E9F66B1C7A034D18;
IL2CPP_EXTERN_C String_t* _stringLiteral2F4BD08A34D0299781F26947721F0D0A3DD83595;
IL2CPP_EXTERN_C String_t* _stringLiteral2F91B436F1FDA448531F89F242574E9FC1A8183B;
IL2CPP_EXTERN_C String_t* _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9;
IL2CPP_EXTERN_C String_t* _stringLiteral383355447EEB1AF0BE901CEADDE1BA8E0858F766;
IL2CPP_EXTERN_C String_t* _stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE;
IL2CPP_EXTERN_C String_t* _stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A;
IL2CPP_EXTERN_C String_t* _stringLiteral3C6CF51A587C627F6C6EE34036C6723F4B925EFF;
IL2CPP_EXTERN_C String_t* _stringLiteral3FDD093FD971BAD6BFF1C29ED951F8C924AB9E05;
IL2CPP_EXTERN_C String_t* _stringLiteral45156A8D2466CD5E8D665BB78DFE524EEFDD922A;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral46FD4E76FB7B00BBA6C5853EE81B91AE4514F80E;
IL2CPP_EXTERN_C String_t* _stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059;
IL2CPP_EXTERN_C String_t* _stringLiteral486127276D66E3B1DB7A039EE3BF49F54F065D65;
IL2CPP_EXTERN_C String_t* _stringLiteral4B0E509E3481549FC8F096287EFB425FAAFC38A4;
IL2CPP_EXTERN_C String_t* _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12;
IL2CPP_EXTERN_C String_t* _stringLiteral516E89FB5F1967293F4DB1BE32E381475420AB44;
IL2CPP_EXTERN_C String_t* _stringLiteral51E32388186E3C054444183AA4F66F30E4D384D2;
IL2CPP_EXTERN_C String_t* _stringLiteral51F30CFFB908674FE7BC9CBFAE4EFD647D2D3594;
IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4;
IL2CPP_EXTERN_C String_t* _stringLiteral58CD8557F6DA92AF6C70377C1199294381C92BE9;
IL2CPP_EXTERN_C String_t* _stringLiteral5B58855139A125726544ED5CAC3077D928C41B40;
IL2CPP_EXTERN_C String_t* _stringLiteral5B6805FF35E9D5281B12A6FE89E20C33842F2B82;
IL2CPP_EXTERN_C String_t* _stringLiteral5E984ABC3F146D0F73D38E9AEB96864C5CB5FE7C;
IL2CPP_EXTERN_C String_t* _stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C;
IL2CPP_EXTERN_C String_t* _stringLiteral6F30587D636DD02AA8802E2D71D364E879582D89;
IL2CPP_EXTERN_C String_t* _stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF;
IL2CPP_EXTERN_C String_t* _stringLiteral738F291E53E97C08DAE378C71EF70A60E31AE900;
IL2CPP_EXTERN_C String_t* _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA;
IL2CPP_EXTERN_C String_t* _stringLiteral7C26512813CDF9F1A470756AB50D2C3272536A90;
IL2CPP_EXTERN_C String_t* _stringLiteral7E750D5E6CC6A882337F102C93B3A378286EF1B4;
IL2CPP_EXTERN_C String_t* _stringLiteral80905910A78441C04EDCE26C733491EBE4B06012;
IL2CPP_EXTERN_C String_t* _stringLiteral812C96C792369F4F61D694362CDDAE257125AB04;
IL2CPP_EXTERN_C String_t* _stringLiteral8294A19DAAE7E1B519B6BFD2EDBE3F2DE6D2AC77;
IL2CPP_EXTERN_C String_t* _stringLiteral87788F8601C24A0EB26FE8614DF502D90FAE0419;
IL2CPP_EXTERN_C String_t* _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406;
IL2CPP_EXTERN_C String_t* _stringLiteral8A8643E91A3472B185B02A5F88F56AB678880D65;
IL2CPP_EXTERN_C String_t* _stringLiteral92559341F2ABCC1B4508737CEFF7E200AAFFDBAF;
IL2CPP_EXTERN_C String_t* _stringLiteral9314E51D0364D320B5BB9F10EB1CB0704A3299F7;
IL2CPP_EXTERN_C String_t* _stringLiteral94791E5D8B01F7E850EE91A020593E00567D0FD1;
IL2CPP_EXTERN_C String_t* _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62;
IL2CPP_EXTERN_C String_t* _stringLiteral9ABD0C34749B0AA1E5D52F198A80EB2AA3298525;
IL2CPP_EXTERN_C String_t* _stringLiteral9C597032B7C6DEBC66AD134CE8D12A054D0A25A0;
IL2CPP_EXTERN_C String_t* _stringLiteral9DDEA8BF887EF34A1240A262845FAFAF04EFC4DE;
IL2CPP_EXTERN_C String_t* _stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901;
IL2CPP_EXTERN_C String_t* _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C;
IL2CPP_EXTERN_C String_t* _stringLiteralA185F0FDE2E3A93D140F407291AA8AA60D14D5DA;
IL2CPP_EXTERN_C String_t* _stringLiteralA64E96030EBA05DC44D50FF6155C02A2BD6699EF;
IL2CPP_EXTERN_C String_t* _stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9;
IL2CPP_EXTERN_C String_t* _stringLiteralAA8B4A4C4CB6611C6ED82449A0AA123F20839416;
IL2CPP_EXTERN_C String_t* _stringLiteralAA9171B82604177F94F0540D2D89B6A7C2DFFD91;
IL2CPP_EXTERN_C String_t* _stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66;
IL2CPP_EXTERN_C String_t* _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7;
IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
IL2CPP_EXTERN_C String_t* _stringLiteralC7E2F23A67BD173305EF6BA6A3E5DDED9F9E2465;
IL2CPP_EXTERN_C String_t* _stringLiteralC802F6A28E8FE91CFF56B63DFD0201D59F5E72F8;
IL2CPP_EXTERN_C String_t* _stringLiteralC8FB6FC33F8E8609AC13CC4724E1B2EFB4372240;
IL2CPP_EXTERN_C String_t* _stringLiteralCB2FE77231F429D3D9DC375DB50B86F3FE7DF081;
IL2CPP_EXTERN_C String_t* _stringLiteralCEC49CE5B8EEBB0AE649A7794608079E6C355F17;
IL2CPP_EXTERN_C String_t* _stringLiteralCF3843BE796C015B3DD186C8C01C34B6AFA715E0;
IL2CPP_EXTERN_C String_t* _stringLiteralCFAC928B9632979CA328C6C33549FD409AEF4B74;
IL2CPP_EXTERN_C String_t* _stringLiteralD1FF669F3ECB73800536C07454B4DAAE967F218F;
IL2CPP_EXTERN_C String_t* _stringLiteralD3DA7A392EC73AFA8F12777ABB14CCBC99229BB9;
IL2CPP_EXTERN_C String_t* _stringLiteralD4F5AB3DB8A9A36171F6BAE4DC5ED6137E31D30B;
IL2CPP_EXTERN_C String_t* _stringLiteralD89ADD2DB1FBF30630EEA02FAAF144060CA0E908;
IL2CPP_EXTERN_C String_t* _stringLiteralDF2916BA870AAD63B1B4F4894D7E1D3D75B67C40;
IL2CPP_EXTERN_C String_t* _stringLiteralE058B51F6E4C46804212A5C9AC795A219B9EFAD7;
IL2CPP_EXTERN_C String_t* _stringLiteralE132EE424C20BA450E30E9FE0BA4CA35C197C729;
IL2CPP_EXTERN_C String_t* _stringLiteralE1FB00E6628A397F7A0AAF615CAC25E7DF12710C;
IL2CPP_EXTERN_C String_t* _stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33;
IL2CPP_EXTERN_C String_t* _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34;
IL2CPP_EXTERN_C String_t* _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB;
IL2CPP_EXTERN_C String_t* _stringLiteralE984241AE97EB8CC7E8796D3939F5F1C4D012B3A;
IL2CPP_EXTERN_C String_t* _stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A;
IL2CPP_EXTERN_C String_t* _stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132;
IL2CPP_EXTERN_C String_t* _stringLiteralF298420007D4E42F3A228C88928B608D8F69AE57;
IL2CPP_EXTERN_C String_t* _stringLiteralF6E5C3F4294DE895EA4E7238168E286295FFD9C4;
IL2CPP_EXTERN_C String_t* _stringLiteralF7AA791C8152A98FFF08ACB38CDB66499C02C97D;
IL2CPP_EXTERN_C String_t* _stringLiteralFBFED6DEA5A92748E7B7A0A236B4FBA1EFEF38C6;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Interop_ThrowExceptionForIoErrno_mD1F1F0FA4F261F7541137053F29DC244D32DA714_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA712408EB20FE442926FB62ED8BD9A081438F91B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m37936F298F44633B62E94F28FA811A9564FF4A89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mB410DEDC02C80B09BBBA1D5E4349DF97842CE78C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m98422ED392AD80F51FB67422E8037A59508EB065_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mDB9A5833D13B76B178E20283BB565A8336B614DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC8997D2202766FB8AD08F8355CCE9D9BF57B3757_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mDED626FB9D28DA7191C6BC79601486000B0DAE3C_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* MSCompatUnicodeTable_BuildTailoringTables_m799DB61E22220EB93396E091DE35ABB161061BBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RuntimeMarshal_PtrToUtf8String_m276711BAF873D42C86A34FB4D74320EDE5F22841_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SimpleCollator_GetTailContraction_m5B278B3F2B83D8C24ADFB172C071ABB40D3D9004_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SimpleCollator_IndexOf_mA4E0147AD4E1892A2865084EDBFE68A05D160373_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SimpleCollator_LastIndexOf_mA10DF8A160173336E3159912701A4EA27D670EA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_Parse_mDBDCE208B61E525047652DEFB54D2B75695E0CBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadAttribute_m68F93A21DBAA757306E4A8469E563A86A5C37E09_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadCDATASection_m959663B4552B92B7040E13B23BB395905EC50BA1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadComment_m1D1D6B2E2C6C7C532717D1989E1B5A3CAA998684_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadReference_m33EEC080ACA6D08AD59AC077D37B8554DCD72E15_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlParser_SkipWhitespaces_mDC28EBFD4733F067C178259ACB05862C60AA7C2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_CompareOrdinal_m8940CFAE90021ED8DA3F2DF8226941C9EEB2E32D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_CompareTo_mB3C343642248A69BB1250CFAD23C40436858F38E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Compare_m68FBA6075A0142439B0249D884863356D99090CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Copy_mB9EAED306DA73B406D69E1642CF582A9CA4BF717_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Ctor_mCCCF4E70864FD0C9518ACF86F7F62675B264B04E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Equals_m7BDFC0B951005B9DC2BAED464AFE68FF7E9ACE5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Equals_mCC34895D0DB2AD440C9D8767032215BC86B5C48B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Format_m918500C1EFB475181349A79989BB79BB36102894_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Insert_mA279E748F06514A6D0B9B680D651D6A6C6BB561A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Join_m8159F953B3D62AA54A0853A6E9573CDC0F63E158_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_PadLeft_m99DDD242908E78B71E9631EE66331E8A130EB31F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_PadRight_m7C573780177B3246D67D860C2A75AEF5832C7543_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Remove_m4D7A58E2124F8D0D8AE3EEDE74B6AD6A863ABA68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Remove_m8266E0BF5D8565D4CDC850F21E9178AE254C3E85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_ReplaceHelper_mBEF426D6843AA1AFFF1C10A1517F1CCC196DA8FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* String_wcslen_m05E3BF2D98BEC77F378B255B6AD0B93F05503D44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CBuildTailoringTablesU3Eb__17_0_m602688B6CEE9BDA27C40F4750616F62FDCA2A3F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_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 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
struct TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21;
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
// <Module>
struct U3CModuleU3E_tE279FCC7BCE13192883FB7E7A6FC8AF8783D8CFB
{
};
// System.Buffers.ArrayPool`1<System.Byte>
struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07 : public RuntimeObject
{
};
// System.Buffers.ArrayPool`1<System.Int32>
struct ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01 : public RuntimeObject
{
};
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t7BBC8CED754F364A777871A238BBBE3F94FFDDE1 : public RuntimeObject
{
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject
{
};
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>
struct List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ____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<Mono.Globalization.Unicode.Level2Map>
struct List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* ____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<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
// System.Collections.Generic.List`1<System.String>
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.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
{
};
// Mono.Security.BitConverterLE
struct BitConverterLE_t39B118272E6A4505B40BA39190F18CF236D9519B : 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;
};
// Mono.Globalization.Unicode.CodePointIndexer
struct CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF : public RuntimeObject
{
// Mono.Globalization.Unicode.CodePointIndexer/TableRange[] Mono.Globalization.Unicode.CodePointIndexer::ranges
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* ___ranges_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::TotalCount
int32_t ___TotalCount_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::defaultIndex
int32_t ___defaultIndex_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::defaultCP
int32_t ___defaultCP_3;
};
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57 : public RuntimeObject
{
// System.String System.Globalization.CompareInfo::m_name
String_t* ___m_name_5;
// System.String System.Globalization.CompareInfo::_sortName
String_t* ____sortName_6;
// System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion
SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E* ___m_SortVersion_7;
// System.Int32 System.Globalization.CompareInfo::culture
int32_t ___culture_8;
// System.Globalization.ISimpleCollator System.Globalization.CompareInfo::collator
RuntimeObject* ___collator_9;
};
// Mono.Globalization.Unicode.Contraction
struct Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540 : public RuntimeObject
{
// System.Int32 Mono.Globalization.Unicode.Contraction::Index
int32_t ___Index_0;
// System.Char[] Mono.Globalization.Unicode.Contraction::Source
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___Source_1;
// System.String Mono.Globalization.Unicode.Contraction::Replacement
String_t* ___Replacement_2;
// System.Byte[] Mono.Globalization.Unicode.Contraction::SortKey
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___SortKey_3;
};
// Mono.Globalization.Unicode.ContractionComparer
struct ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B : public RuntimeObject
{
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : 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.Text.Decoder
struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC : public RuntimeObject
{
// System.Text.DecoderFallback System.Text.Decoder::_fallback
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ____fallback_0;
// System.Text.DecoderFallbackBuffer System.Text.Decoder::_fallbackBuffer
DecoderFallbackBuffer_t02E41C0BEC894A17CFE1A1FE88A2388DFDA05A73* ____fallbackBuffer_1;
};
// 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.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;
};
// Interop
struct Interop_tA734BB5ABB0FD1DEA36919E923C341E180C95996 : public RuntimeObject
{
};
// InteropErrorExtensions
struct InteropErrorExtensions_t184666DEB50428ED4BBCAF2BC9D0947A64D5FC44 : public RuntimeObject
{
};
// Mono.Globalization.Unicode.Level2Map
struct Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1 : public RuntimeObject
{
// System.Byte Mono.Globalization.Unicode.Level2Map::Source
uint8_t ___Source_0;
// System.Byte Mono.Globalization.Unicode.Level2Map::Replace
uint8_t ___Replace_1;
};
// Locale
struct Locale_tABBCF792A2526AA2C8858FB96E2C57AECC491D66 : public RuntimeObject
{
};
// Mono.Globalization.Unicode.MSCompatUnicodeTable
struct MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E : public RuntimeObject
{
};
// Mono.Globalization.Unicode.MSCompatUnicodeTableUtil
struct MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927 : public RuntimeObject
{
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0 : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_marshaled_com
{
};
// Mono.Globalization.Unicode.NormalizationTableUtil
struct NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940 : public RuntimeObject
{
};
// Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks
struct ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC : public RuntimeObject
{
};
// Mono.Runtime
struct Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE : public RuntimeObject
{
};
// Internal.Runtime.Augments.RuntimeAugments
struct RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14 : public RuntimeObject
{
};
// Mono.RuntimeMarshal
struct RuntimeMarshal_tC7744D1885E2805B0B0F2C6DBCBEFBA3831ABA9E : public RuntimeObject
{
};
// Mono.RuntimeStructs
struct RuntimeStructs_t3EEB198A241613C95EF29ED50A8618FEA8E28780 : public RuntimeObject
{
};
// Internal.Runtime.Augments.RuntimeThread
struct RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D : public RuntimeObject
{
// System.Threading.Thread Internal.Runtime.Augments.RuntimeThread::thread
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___thread_1;
};
// SR
struct SR_t209CA5CC218F62F0CD9FF53A64F9D079F96ED8FD : public RuntimeObject
{
};
// Mono.Globalization.Unicode.SimpleCollator
struct SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D : public RuntimeObject
{
// System.Globalization.TextInfo Mono.Globalization.Unicode.SimpleCollator::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_1;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkIndexer
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___cjkIndexer_2;
// Mono.Globalization.Unicode.Contraction[] Mono.Globalization.Unicode.SimpleCollator::contractions
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ___contractions_3;
// Mono.Globalization.Unicode.Level2Map[] Mono.Globalization.Unicode.SimpleCollator::level2Maps
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* ___level2Maps_4;
// System.Byte[] Mono.Globalization.Unicode.SimpleCollator::unsafeFlags
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___unsafeFlags_5;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkCatTable
uint8_t* ___cjkCatTable_6;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv1Table
uint8_t* ___cjkLv1Table_7;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv2Table
uint8_t* ___cjkLv2Table_8;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkLv2Indexer
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___cjkLv2Indexer_9;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::lcid
int32_t ___lcid_10;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::frenchSort
bool ___frenchSort_11;
};
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB : public RuntimeObject
{
// Mono.Xml.SmallXmlParser/IContentHandler Mono.Xml.SmallXmlParser::handler
RuntimeObject* ___handler_0;
// System.IO.TextReader Mono.Xml.SmallXmlParser::reader
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___reader_1;
// System.Collections.Stack Mono.Xml.SmallXmlParser::elementNames
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* ___elementNames_2;
// System.Collections.Stack Mono.Xml.SmallXmlParser::xmlSpaces
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* ___xmlSpaces_3;
// System.String Mono.Xml.SmallXmlParser::xmlSpace
String_t* ___xmlSpace_4;
// System.Text.StringBuilder Mono.Xml.SmallXmlParser::buffer
StringBuilder_t* ___buffer_5;
// System.Char[] Mono.Xml.SmallXmlParser::nameBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___nameBuffer_6;
// System.Boolean Mono.Xml.SmallXmlParser::isWhitespace
bool ___isWhitespace_7;
// Mono.Xml.SmallXmlParser/AttrListImpl Mono.Xml.SmallXmlParser::attributes
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* ___attributes_8;
// System.Int32 Mono.Xml.SmallXmlParser::line
int32_t ___line_9;
// System.Int32 Mono.Xml.SmallXmlParser::column
int32_t ___column_10;
// System.Boolean Mono.Xml.SmallXmlParser::resetColumn
bool ___resetColumn_11;
};
// System.Globalization.SortKey
struct SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740 : public RuntimeObject
{
// System.String System.Globalization.SortKey::source
String_t* ___source_0;
// System.Byte[] System.Globalization.SortKey::key
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___key_1;
// System.Globalization.CompareOptions System.Globalization.SortKey::options
int32_t ___options_2;
// System.Int32 System.Globalization.SortKey::lcid
int32_t ___lcid_3;
};
// Native definition for P/Invoke marshalling of System.Globalization.SortKey
struct SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740_marshaled_pinvoke
{
char* ___source_0;
Il2CppSafeArray/*NONE*/* ___key_1;
int32_t ___options_2;
int32_t ___lcid_3;
};
// Native definition for COM marshalling of System.Globalization.SortKey
struct SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740_marshaled_com
{
Il2CppChar* ___source_0;
Il2CppSafeArray/*NONE*/* ___key_1;
int32_t ___options_2;
int32_t ___lcid_3;
};
// Mono.Globalization.Unicode.SortKeyBuffer
struct SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A : public RuntimeObject
{
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l1b
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l1b_0;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l2b
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l2b_1;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l3b
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l3b_2;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l4sb
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l4sb_3;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l4tb
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l4tb_4;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l4kb
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l4kb_5;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l4wb
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l4wb_6;
// System.Byte[] Mono.Globalization.Unicode.SortKeyBuffer::l5b
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___l5b_7;
// System.String Mono.Globalization.Unicode.SortKeyBuffer::source
String_t* ___source_8;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l1
int32_t ___l1_9;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l2
int32_t ___l2_10;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l3
int32_t ___l3_11;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l4s
int32_t ___l4s_12;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l4t
int32_t ___l4t_13;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l4k
int32_t ___l4k_14;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l4w
int32_t ___l4w_15;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::l5
int32_t ___l5_16;
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::lcid
int32_t ___lcid_17;
// System.Globalization.CompareOptions Mono.Globalization.Unicode.SortKeyBuffer::options
int32_t ___options_18;
// System.Boolean Mono.Globalization.Unicode.SortKeyBuffer::processLevel2
bool ___processLevel2_19;
// System.Boolean Mono.Globalization.Unicode.SortKeyBuffer::frenchSort
bool ___frenchSort_20;
// System.Boolean Mono.Globalization.Unicode.SortKeyBuffer::frenchSorted
bool ___frenchSorted_21;
};
// System.Collections.Stack
struct Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47 : public RuntimeObject
{
// System.Object[] System.Collections.Stack::_array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array_0;
// System.Int32 System.Collections.Stack::_size
int32_t ____size_1;
// System.Int32 System.Collections.Stack::_version
int32_t ____version_2;
// System.Object System.Collections.Stack::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// 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;
};
// Mono.Globalization.Unicode.TailoringInfo
struct TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A : public RuntimeObject
{
// System.Int32 Mono.Globalization.Unicode.TailoringInfo::LCID
int32_t ___LCID_0;
// System.Int32 Mono.Globalization.Unicode.TailoringInfo::TailoringIndex
int32_t ___TailoringIndex_1;
// System.Int32 Mono.Globalization.Unicode.TailoringInfo::TailoringCount
int32_t ___TailoringCount_2;
// System.Boolean Mono.Globalization.Unicode.TailoringInfo::FrenchSort
bool ___FrenchSort_3;
};
// Internal.Threading.Tasks.Tracing.TaskTrace
struct TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC : public RuntimeObject
{
};
// Internal.Runtime.Augments.TaskTraceCallbacks
struct TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71 : 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
{
};
// Microsoft.Win32.Win32Native
struct Win32Native_tC38D13C09A83EE75F833498628E6C79E3C760A62 : public RuntimeObject
{
};
// Interop/Sys
struct Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8 : public RuntimeObject
{
};
// Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c
struct U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596 : public RuntimeObject
{
};
// Mono.Xml.SmallXmlParser/AttrListImpl
struct AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827 : public RuntimeObject
{
// System.Collections.Generic.List`1<System.String> Mono.Xml.SmallXmlParser/AttrListImpl::attrNames
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___attrNames_0;
// System.Collections.Generic.List`1<System.String> Mono.Xml.SmallXmlParser/AttrListImpl::attrValues
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___attrValues_1;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.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.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED
{
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::_source
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_pinvoke
{
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_com
{
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
// 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.Text.DecoderNLS
struct DecoderNLS_tF18CBF663DFA66748F619AD7C6D6C4859DBFA80B : public Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC
{
// System.Text.Encoding System.Text.DecoderNLS::_encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding_2;
// System.Boolean System.Text.DecoderNLS::_mustFlush
bool ____mustFlush_3;
// System.Boolean System.Text.DecoderNLS::_throwOnOverflow
bool ____throwOnOverflow_4;
// System.Int32 System.Text.DecoderNLS::_bytesUsed
int32_t ____bytesUsed_5;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
// Mono.Interop.MonoPInvokeCallbackAttribute
struct MonoPInvokeCallbackAttribute_tCB0F576FE9D9F83EAC879DEAB365905A52052C7F : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// System.ParamsArray
struct ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C
{
// System.Object System.ParamsArray::_arg0
RuntimeObject* ____arg0_3;
// System.Object System.ParamsArray::_arg1
RuntimeObject* ____arg1_4;
// System.Object System.ParamsArray::_arg2
RuntimeObject* ____arg2_5;
// System.Object[] System.ParamsArray::_args
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____args_6;
};
// Native definition for P/Invoke marshalling of System.ParamsArray
struct ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C_marshaled_pinvoke
{
Il2CppIUnknown* ____arg0_3;
Il2CppIUnknown* ____arg1_4;
Il2CppIUnknown* ____arg2_5;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____args_6;
};
// Native definition for COM marshalling of System.ParamsArray
struct ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C_marshaled_com
{
Il2CppIUnknown* ____arg0_3;
Il2CppIUnknown* ____arg1_4;
Il2CppIUnknown* ____arg2_5;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____args_6;
};
// Mono.RuntimeClassHandle
struct RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72
{
// Mono.RuntimeStructs/MonoClass* Mono.RuntimeClassHandle::value
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___value_0;
};
// Mono.RuntimeGPtrArrayHandle
struct RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328
{
// Mono.RuntimeStructs/GPtrArray* Mono.RuntimeGPtrArrayHandle::value
GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF* ___value_0;
};
// Mono.RuntimeGenericParamInfoHandle
struct RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B
{
// Mono.RuntimeStructs/GenericParamInfo* Mono.RuntimeGenericParamInfoHandle::value
GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726* ___value_0;
};
// Mono.RuntimeRemoteClassHandle
struct RuntimeRemoteClassHandle_t47A1D2639335E036FE04C79F1858CF28663F1FDF
{
// Mono.RuntimeStructs/RemoteClass* Mono.RuntimeRemoteClassHandle::value
RemoteClass_t8F343021C09FCE40A298F94523C6E988DD3E3DD0* ___value_0;
};
// 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.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
};
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
{
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687* ___internal_thread_6;
// System.Object System.Threading.Thread::m_ThreadStartArg
RuntimeObject* ___m_ThreadStartArg_7;
// System.Object System.Threading.Thread::pending_exception
RuntimeObject* ___pending_exception_8;
// System.MulticastDelegate System.Threading.Thread::m_Delegate
MulticastDelegate_t* ___m_Delegate_10;
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710* ___m_ExecutionContext_11;
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
bool ___m_ExecutionContextBelongsToOuterScope_12;
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
RuntimeObject* ___principal_13;
// System.Int32 System.Threading.Thread::principal_version
int32_t ___principal_version_14;
};
// 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;
};
// Mono.ValueTuple
struct ValueTuple_t383425DF86F158BE774915FDBC1BBEE948A1F9E0
{
union
{
struct
{
};
uint8_t ValueTuple_t383425DF86F158BE774915FDBC1BBEE948A1F9E0__padding[1];
};
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// Mono.Globalization.Unicode.CodePointIndexer/TableRange
struct TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497
{
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Start
int32_t ___Start_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::End
int32_t ___End_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Count
int32_t ___Count_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexStart
int32_t ___IndexStart_3;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexEnd
int32_t ___IndexEnd_4;
};
// Interop/ErrorInfo
struct ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8
{
// Interop/Error Interop/ErrorInfo::_error
int32_t ____error_0;
// System.Int32 Interop/ErrorInfo::_rawErrno
int32_t ____rawErrno_1;
};
// Mono.MonoAssemblyName/<public_key_token>e__FixedBuffer
struct U3Cpublic_key_tokenU3Ee__FixedBuffer_t1118C8F322424F0D0E8FBD41672A6F3DC8E78EDE
{
union
{
struct
{
// System.Byte Mono.MonoAssemblyName/<public_key_token>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cpublic_key_tokenU3Ee__FixedBuffer_t1118C8F322424F0D0E8FBD41672A6F3DC8E78EDE__padding[17];
};
};
// Mono.RuntimeStructs/GPtrArray
struct GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF
{
// System.IntPtr* Mono.RuntimeStructs/GPtrArray::data
intptr_t* ___data_0;
// System.Int32 Mono.RuntimeStructs/GPtrArray::len
int32_t ___len_1;
};
// Mono.RuntimeStructs/MonoClass
struct MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90
{
union
{
struct
{
};
uint8_t MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90__padding[1];
};
};
// Mono.Globalization.Unicode.SimpleCollator/Context
struct Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE
{
// System.Globalization.CompareOptions Mono.Globalization.Unicode.SimpleCollator/Context::Option
int32_t ___Option_0;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator/Context::NeverMatchFlags
uint8_t* ___NeverMatchFlags_1;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator/Context::AlwaysMatchFlags
uint8_t* ___AlwaysMatchFlags_2;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator/Context::Buffer1
uint8_t* ___Buffer1_3;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator/Context::Buffer2
uint8_t* ___Buffer2_4;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator/Context::PrevCode
int32_t ___PrevCode_5;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator/Context::PrevSortKey
uint8_t* ___PrevSortKey_6;
};
// Mono.Globalization.Unicode.SimpleCollator/Escape
struct Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178
{
// System.String Mono.Globalization.Unicode.SimpleCollator/Escape::Source
String_t* ___Source_0;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator/Escape::Index
int32_t ___Index_1;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator/Escape::Start
int32_t ___Start_2;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator/Escape::End
int32_t ___End_3;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator/Escape::Optional
int32_t ___Optional_4;
};
// Native definition for P/Invoke marshalling of Mono.Globalization.Unicode.SimpleCollator/Escape
struct Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_pinvoke
{
char* ___Source_0;
int32_t ___Index_1;
int32_t ___Start_2;
int32_t ___End_3;
int32_t ___Optional_4;
};
// Native definition for COM marshalling of Mono.Globalization.Unicode.SimpleCollator/Escape
struct Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_com
{
Il2CppChar* ___Source_0;
int32_t ___Index_1;
int32_t ___Start_2;
int32_t ___End_3;
int32_t ___Optional_4;
};
// Mono.Globalization.Unicode.SimpleCollator/PreviousInfo
struct PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103
{
// System.Int32 Mono.Globalization.Unicode.SimpleCollator/PreviousInfo::Code
int32_t ___Code_0;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator/PreviousInfo::SortKey
uint8_t* ___SortKey_1;
};
// System.String/ProbabilisticMap
struct ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B
{
union
{
struct
{
union
{
};
};
uint8_t ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B__padding[32];
};
};
// 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<System.Byte>
struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
{
// System.IntPtr System.ByReference`1::_value
intptr_t ____value_0;
};
// System.ByReference`1<System.Char>
struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
{
// System.IntPtr System.ByReference`1::_value
intptr_t ____value_0;
};
// System.ByReference`1<System.Int32>
struct ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4
{
// System.IntPtr System.ByReference`1::_value
intptr_t ____value_0;
};
// 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;
};
// Mono.MonoAssemblyName
struct MonoAssemblyName_t86B4669C242DAF7EE82C100B54589B0390A8D4FF
{
// System.IntPtr Mono.MonoAssemblyName::name
intptr_t ___name_0;
// System.IntPtr Mono.MonoAssemblyName::culture
intptr_t ___culture_1;
// System.IntPtr Mono.MonoAssemblyName::hash_value
intptr_t ___hash_value_2;
// System.IntPtr Mono.MonoAssemblyName::public_key
intptr_t ___public_key_3;
// Mono.MonoAssemblyName/<public_key_token>e__FixedBuffer Mono.MonoAssemblyName::public_key_token
U3Cpublic_key_tokenU3Ee__FixedBuffer_t1118C8F322424F0D0E8FBD41672A6F3DC8E78EDE ___public_key_token_4;
// System.UInt32 Mono.MonoAssemblyName::hash_alg
uint32_t ___hash_alg_5;
// System.UInt32 Mono.MonoAssemblyName::hash_len
uint32_t ___hash_len_6;
// System.UInt32 Mono.MonoAssemblyName::flags
uint32_t ___flags_7;
// System.UInt16 Mono.MonoAssemblyName::major
uint16_t ___major_8;
// System.UInt16 Mono.MonoAssemblyName::minor
uint16_t ___minor_9;
// System.UInt16 Mono.MonoAssemblyName::build
uint16_t ___build_10;
// System.UInt16 Mono.MonoAssemblyName::revision
uint16_t ___revision_11;
// System.UInt16 Mono.MonoAssemblyName::arch
uint16_t ___arch_12;
};
// System.Reflection.RuntimeAssembly
struct RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF : public Assembly_t
{
// System.IntPtr System.Reflection.RuntimeAssembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Object System.Reflection.RuntimeAssembly::_evidence
RuntimeObject* ____evidence_1;
// System.Reflection.Assembly/ResolveEventHolder System.Reflection.RuntimeAssembly::resolve_event_holder
ResolveEventHolder_t3CB1550411277AD1F17B720A3C07C37973A99558* ___resolve_event_holder_2;
// System.Object System.Reflection.RuntimeAssembly::_minimum
RuntimeObject* ____minimum_3;
// System.Object System.Reflection.RuntimeAssembly::_optional
RuntimeObject* ____optional_4;
// System.Object System.Reflection.RuntimeAssembly::_refuse
RuntimeObject* ____refuse_5;
// System.Object System.Reflection.RuntimeAssembly::_granted
RuntimeObject* ____granted_6;
// System.Object System.Reflection.RuntimeAssembly::_denied
RuntimeObject* ____denied_7;
// System.Boolean System.Reflection.RuntimeAssembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.RuntimeAssembly::assemblyName
String_t* ___assemblyName_9;
};
// Native definition for P/Invoke marshalling of System.Reflection.RuntimeAssembly
struct RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF_marshaled_pinvoke : public Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
Il2CppIUnknown* ____evidence_1;
ResolveEventHolder_t3CB1550411277AD1F17B720A3C07C37973A99558* ___resolve_event_holder_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.RuntimeAssembly
struct RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF_marshaled_com : public Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
Il2CppIUnknown* ____evidence_1;
ResolveEventHolder_t3CB1550411277AD1F17B720A3C07C37973A99558* ___resolve_event_holder_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// Mono.RuntimeEventHandle
struct RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26
{
// System.IntPtr Mono.RuntimeEventHandle::value
intptr_t ___value_0;
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
{
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
};
// Mono.RuntimePropertyHandle
struct RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48
{
// System.IntPtr Mono.RuntimePropertyHandle::value
intptr_t ___value_0;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// Mono.SafeGPtrArrayHandle
struct SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F
{
// Mono.RuntimeGPtrArrayHandle Mono.SafeGPtrArrayHandle::handle
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328 ___handle_0;
};
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7 : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
{
// System.IntPtr System.Runtime.InteropServices.SafeHandle::handle
intptr_t ___handle_0;
// System.Int32 System.Runtime.InteropServices.SafeHandle::_state
int32_t ____state_1;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_ownsHandle
bool ____ownsHandle_2;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_fullyInitialized
bool ____fullyInitialized_3;
};
// Mono.SafeStringMarshal
struct SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E
{
// System.String Mono.SafeStringMarshal::str
String_t* ___str_0;
// System.IntPtr Mono.SafeStringMarshal::marshaled_string
intptr_t ___marshaled_string_1;
};
// Native definition for P/Invoke marshalling of Mono.SafeStringMarshal
struct SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_pinvoke
{
char* ___str_0;
intptr_t ___marshaled_string_1;
};
// Native definition for COM marshalling of Mono.SafeStringMarshal
struct SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_com
{
Il2CppChar* ___str_0;
intptr_t ___marshaled_string_1;
};
// 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.Boolean> 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;
};
// Mono.RuntimeStructs/GenericParamInfo
struct GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726
{
// Mono.RuntimeStructs/MonoClass* Mono.RuntimeStructs/GenericParamInfo::pklass
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___pklass_0;
// System.IntPtr Mono.RuntimeStructs/GenericParamInfo::name
intptr_t ___name_1;
// System.UInt16 Mono.RuntimeStructs/GenericParamInfo::flags
uint16_t ___flags_2;
// System.UInt32 Mono.RuntimeStructs/GenericParamInfo::token
uint32_t ___token_3;
// Mono.RuntimeStructs/MonoClass** Mono.RuntimeStructs/GenericParamInfo::constraints
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** ___constraints_4;
};
// Mono.RuntimeStructs/RemoteClass
struct RemoteClass_t8F343021C09FCE40A298F94523C6E988DD3E3DD0
{
// System.IntPtr Mono.RuntimeStructs/RemoteClass::default_vtable
intptr_t ___default_vtable_0;
// System.IntPtr Mono.RuntimeStructs/RemoteClass::xdomain_vtable
intptr_t ___xdomain_vtable_1;
// Mono.RuntimeStructs/MonoClass* Mono.RuntimeStructs/RemoteClass::proxy_class
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___proxy_class_2;
// System.IntPtr Mono.RuntimeStructs/RemoteClass::proxy_class_name
intptr_t ___proxy_class_name_3;
// System.UInt32 Mono.RuntimeStructs/RemoteClass::interface_count
uint32_t ___interface_count_4;
};
// System.ReadOnlySpan`1<System.Byte>
struct ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D
{
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
// System.Int32 System.ReadOnlySpan`1::_length
int32_t ____length_1;
};
// System.ReadOnlySpan`1<System.Char>
struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
{
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
// System.Int32 System.ReadOnlySpan`1::_length
int32_t ____length_1;
};
// System.ReadOnlySpan`1<System.Int32>
struct ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282
{
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 ____pointer_0;
// System.Int32 System.ReadOnlySpan`1::_length
int32_t ____length_1;
};
// System.Span`1<System.Byte>
struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
{
// System.ByReference`1<T> System.Span`1::_pointer
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
// System.Int32 System.Span`1::_length
int32_t ____length_1;
};
// System.Span`1<System.Char>
struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D
{
// System.ByReference`1<T> System.Span`1::_pointer
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
// System.Int32 System.Span`1::_length
int32_t ____length_1;
};
// System.Span`1<System.Int32>
struct Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316
{
// System.ByReference`1<T> System.Span`1::_pointer
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 ____pointer_0;
// System.Int32 System.Span`1::_length
int32_t ____length_1;
};
// 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;
};
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629 : public SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7
{
};
// 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.Comparison`1<Mono.Globalization.Unicode.Level2Map>
struct Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE : public MulticastDelegate_t
{
};
// System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>
struct Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8 : public MulticastDelegate_t
{
};
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
struct ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B
{
// System.Span`1<T> System.Collections.Generic.ValueListBuilder`1::_span
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ____span_0;
// T[] System.Collections.Generic.ValueListBuilder`1::_arrayFromPool
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____arrayFromPool_1;
// System.Int32 System.Collections.Generic.ValueListBuilder`1::_pos
int32_t ____pos_2;
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NullReferenceException
struct NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.OperationCanceledException
struct OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ____cancellationToken_18;
};
// System.OutOfMemoryException
struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ParameterizedThreadStart
struct ParameterizedThreadStart_tAA8FDC4E868056A7CB7CB2C4AB4986039B1D91E9 : public MulticastDelegate_t
{
};
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E : public SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629
{
};
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449 : public SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629
{
};
// Mono.Xml.SmallXmlParserException
struct SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.Int32 Mono.Xml.SmallXmlParserException::line
int32_t ___line_18;
// System.Int32 Mono.Xml.SmallXmlParserException::column
int32_t ___column_19;
};
// System.TypeLoadException
struct TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.TypeLoadException::ClassName
String_t* ___ClassName_18;
// System.String System.TypeLoadException::AssemblyName
String_t* ___AssemblyName_19;
// System.String System.TypeLoadException::MessageArg
String_t* ___MessageArg_20;
// System.Int32 System.TypeLoadException::ResourceId
int32_t ___ResourceId_21;
};
// System.UnauthorizedAccessException
struct UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Text.ValueUtf8Converter
struct ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266
{
// System.Byte[] System.Text.ValueUtf8Converter::_arrayToReturnToPool
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____arrayToReturnToPool_0;
// System.Span`1<System.Byte> System.Text.ValueUtf8Converter::_bytes
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ____bytes_1;
};
// Native definition for P/Invoke marshalling of System.Text.ValueUtf8Converter
struct ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ____arrayToReturnToPool_0;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ____bytes_1;
};
// Native definition for COM marshalling of System.Text.ValueUtf8Converter
struct ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266_marshaled_com
{
Il2CppSafeArray/*NONE*/* ____arrayToReturnToPool_0;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ____bytes_1;
};
// 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.IO.DirectoryNotFoundException
struct DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF : public IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910
{
};
// System.IO.FileNotFoundException
struct FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A : public IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910
{
// System.String System.IO.FileNotFoundException::<FileName>k__BackingField
String_t* ___U3CFileNameU3Ek__BackingField_18;
// System.String System.IO.FileNotFoundException::<FusionLog>k__BackingField
String_t* ___U3CFusionLogU3Ek__BackingField_19;
};
// System.IO.PathTooLongException
struct PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5 : public IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910
{
};
// System.TypeAccessException
struct TypeAccessException_tE5A715168AAF4BFC4BEE9C1242794621C98AE233 : public TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32
{
};
// System.Reflection.MissingMetadataException
struct MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4 : public TypeAccessException_tE5A715168AAF4BFC4BEE9C1242794621C98AE233
{
};
// <Module>
// <Module>
// System.Buffers.ArrayPool`1<System.Byte>
struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_StaticFields
{
// System.Buffers.ArrayPool`1<T> System.Buffers.ArrayPool`1::<Shared>k__BackingField
ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ___U3CSharedU3Ek__BackingField_0;
};
// System.Buffers.ArrayPool`1<System.Byte>
// System.Buffers.ArrayPool`1<System.Int32>
struct ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01_StaticFields
{
// System.Buffers.ArrayPool`1<T> System.Buffers.ArrayPool`1::<Shared>k__BackingField
ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01* ___U3CSharedU3Ek__BackingField_0;
};
// System.Buffers.ArrayPool`1<System.Int32>
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t7BBC8CED754F364A777871A238BBBE3F94FFDDE1_StaticFields
{
// T[] System.EmptyArray`1::Value
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___Value_0;
};
// System.EmptyArray`1<System.Char>
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields
{
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value_0;
};
// System.EmptyArray`1<System.Object>
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>
struct List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>
struct List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
// System.Collections.Generic.List`1<System.String>
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.String>
// 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
// Mono.Security.BitConverterLE
// Mono.Security.BitConverterLE
// System.CharEnumerator
// System.CharEnumerator
// Mono.Globalization.Unicode.CodePointIndexer
// Mono.Globalization.Unicode.CodePointIndexer
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields
{
// System.Globalization.CompareInfo System.Globalization.CompareInfo::Invariant
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___Invariant_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator> System.Globalization.CompareInfo::collators
Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470* ___collators_10;
// System.Boolean System.Globalization.CompareInfo::managedCollation
bool ___managedCollation_11;
// System.Boolean System.Globalization.CompareInfo::managedCollationChecked
bool ___managedCollationChecked_12;
};
// System.Globalization.CompareInfo
// Mono.Globalization.Unicode.Contraction
// Mono.Globalization.Unicode.Contraction
// Mono.Globalization.Unicode.ContractionComparer
struct ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_StaticFields
{
// Mono.Globalization.Unicode.ContractionComparer Mono.Globalization.Unicode.ContractionComparer::Instance
ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B* ___Instance_0;
};
// Mono.Globalization.Unicode.ContractionComparer
// 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.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// System.Globalization.CultureInfo
// 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<System.Int32,System.Text.Encoding> 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.Runtime.ExceptionServices.ExceptionDispatchInfo
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
// Interop
// Interop
// InteropErrorExtensions
// InteropErrorExtensions
// Mono.Globalization.Unicode.Level2Map
// Mono.Globalization.Unicode.Level2Map
// Locale
// Locale
// Mono.Globalization.Unicode.MSCompatUnicodeTable
struct MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields
{
// System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::MaxExpansionLength
int32_t ___MaxExpansionLength_0;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::ignorableFlags
uint8_t* ___ignorableFlags_1;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::categories
uint8_t* ___categories_2;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level1
uint8_t* ___level1_3;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level2
uint8_t* ___level2_4;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level3
uint8_t* ___level3_5;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHScategory
uint8_t* ___cjkCHScategory_6;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTcategory
uint8_t* ___cjkCHTcategory_7;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAcategory
uint8_t* ___cjkJAcategory_8;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOcategory
uint8_t* ___cjkKOcategory_9;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHSlv1
uint8_t* ___cjkCHSlv1_10;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTlv1
uint8_t* ___cjkCHTlv1_11;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAlv1
uint8_t* ___cjkJAlv1_12;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv1
uint8_t* ___cjkKOlv1_13;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv2
uint8_t* ___cjkKOlv2_14;
// System.Char[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringArr
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___tailoringArr_15;
// Mono.Globalization.Unicode.TailoringInfo[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringInfos
TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE* ___tailoringInfos_16;
// System.Object Mono.Globalization.Unicode.MSCompatUnicodeTable::forLock
RuntimeObject* ___forLock_17;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::isReady
bool ___isReady_18;
};
// Mono.Globalization.Unicode.MSCompatUnicodeTable
// Mono.Globalization.Unicode.MSCompatUnicodeTableUtil
struct MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields
{
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::Ignorable
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Ignorable_0;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::Category
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Category_1;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::Level1
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Level1_2;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::Level2
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Level2_3;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::Level3
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Level3_4;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::CjkCHS
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___CjkCHS_5;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::Cjk
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Cjk_6;
};
// Mono.Globalization.Unicode.MSCompatUnicodeTableUtil
// System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_StaticFields
{
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName
TypeFilter_tD8F0A4CFBE6E8F8FA8D673113A73026EDA4640BA* ___FilterTypeName_0;
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase
TypeFilter_tD8F0A4CFBE6E8F8FA8D673113A73026EDA4640BA* ___FilterTypeNameIgnoreCase_1;
};
// System.Reflection.Module
// Mono.Globalization.Unicode.NormalizationTableUtil
struct NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields
{
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Prop
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Prop_0;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Map
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Map_1;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Combining
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Combining_2;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Composite
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Composite_3;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Helper
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* ___Helper_4;
};
// Mono.Globalization.Unicode.NormalizationTableUtil
// Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks
// Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks
// Mono.Runtime
struct Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_StaticFields
{
// System.Object Mono.Runtime::dump
RuntimeObject* ___dump_0;
};
// Mono.Runtime
// Internal.Runtime.Augments.RuntimeAugments
struct RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_StaticFields
{
// Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks Internal.Runtime.Augments.RuntimeAugments::s_reflectionExecutionDomainCallbacks
ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* ___s_reflectionExecutionDomainCallbacks_0;
};
// Internal.Runtime.Augments.RuntimeAugments
// Mono.RuntimeMarshal
// Mono.RuntimeMarshal
// Mono.RuntimeStructs
// Mono.RuntimeStructs
// Internal.Runtime.Augments.RuntimeThread
struct RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_StaticFields
{
// System.Int32 Internal.Runtime.Augments.RuntimeThread::OptimalMaxSpinWaitsPerSpinIteration
int32_t ___OptimalMaxSpinWaitsPerSpinIteration_0;
};
// Internal.Runtime.Augments.RuntimeThread
// SR
// SR
// Mono.Globalization.Unicode.SimpleCollator
struct SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_StaticFields
{
// Mono.Globalization.Unicode.SimpleCollator Mono.Globalization.Unicode.SimpleCollator::invariant
SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* ___invariant_0;
};
// Mono.Globalization.Unicode.SimpleCollator
// Mono.Xml.SmallXmlParser
// Mono.Xml.SmallXmlParser
// System.Globalization.SortKey
// System.Globalization.SortKey
// Mono.Globalization.Unicode.SortKeyBuffer
// Mono.Globalization.Unicode.SortKeyBuffer
// System.Collections.Stack
// System.Collections.Stack
// System.String
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.String
// System.Text.StringBuilder
// System.Text.StringBuilder
// Mono.Globalization.Unicode.TailoringInfo
// Mono.Globalization.Unicode.TailoringInfo
// Internal.Threading.Tasks.Tracing.TaskTrace
struct TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_StaticFields
{
// Internal.Runtime.Augments.TaskTraceCallbacks Internal.Threading.Tasks.Tracing.TaskTrace::s_callbacks
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* ___s_callbacks_0;
};
// Internal.Threading.Tasks.Tracing.TaskTrace
// Internal.Runtime.Augments.TaskTraceCallbacks
// Internal.Runtime.Augments.TaskTraceCallbacks
// Microsoft.Win32.Win32Native
// Microsoft.Win32.Win32Native
// Interop/Sys
struct Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_StaticFields
{
// System.Boolean Interop/Sys::CanSetHiddenFlag
bool ___CanSetHiddenFlag_0;
};
// Interop/Sys
// Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c
struct U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields
{
// Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c::<>9
U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596* ___U3CU3E9_0;
// System.Comparison`1<Mono.Globalization.Unicode.Level2Map> Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c::<>9__17_0
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* ___U3CU3E9__17_0_1;
};
// Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c
// Mono.Xml.SmallXmlParser/AttrListImpl
// Mono.Xml.SmallXmlParser/AttrListImpl
// 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.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.Char
// 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.Text.DecoderNLS
// System.Text.DecoderNLS
// System.Double
// System.Double
// 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
// Mono.Interop.MonoPInvokeCallbackAttribute
// Mono.Interop.MonoPInvokeCallbackAttribute
// System.ParamsArray
struct ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C_StaticFields
{
// System.Object[] System.ParamsArray::s_oneArgArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_oneArgArray_0;
// System.Object[] System.ParamsArray::s_twoArgArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_twoArgArray_1;
// System.Object[] System.ParamsArray::s_threeArgArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_threeArgArray_2;
};
// System.ParamsArray
// Mono.RuntimeClassHandle
// Mono.RuntimeClassHandle
// Mono.RuntimeGPtrArrayHandle
// Mono.RuntimeGPtrArrayHandle
// Mono.RuntimeGenericParamInfoHandle
// Mono.RuntimeGenericParamInfoHandle
// Mono.RuntimeRemoteClassHandle
// Mono.RuntimeRemoteClassHandle
// System.SByte
// System.SByte
// System.Single
// System.Single
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields
{
// System.IO.TextReader System.IO.TextReader::Null
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null_1;
};
// System.IO.TextReader
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_StaticFields
{
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E* ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentUICulture_5;
};
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_ThreadStaticFields
{
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F* ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___current_thread_9;
};
// System.UInt16
// System.UInt16
// System.UInt32
// System.UInt32
// System.UInt64
// System.UInt64
// Mono.ValueTuple
// Mono.ValueTuple
// System.Void
// System.Void
// Mono.Globalization.Unicode.CodePointIndexer/TableRange
// Mono.Globalization.Unicode.CodePointIndexer/TableRange
// Interop/ErrorInfo
// Interop/ErrorInfo
// Mono.MonoAssemblyName/<public_key_token>e__FixedBuffer
// Mono.MonoAssemblyName/<public_key_token>e__FixedBuffer
// Mono.RuntimeStructs/GPtrArray
// Mono.RuntimeStructs/GPtrArray
// Mono.RuntimeStructs/MonoClass
// Mono.RuntimeStructs/MonoClass
// Mono.Globalization.Unicode.SimpleCollator/Context
// Mono.Globalization.Unicode.SimpleCollator/Context
// Mono.Globalization.Unicode.SimpleCollator/Escape
// Mono.Globalization.Unicode.SimpleCollator/Escape
// Mono.Globalization.Unicode.SimpleCollator/PreviousInfo
// Mono.Globalization.Unicode.SimpleCollator/PreviousInfo
// System.String/ProbabilisticMap
// System.String/ProbabilisticMap
// Interop/Sys/DirectoryEntry
// Interop/Sys/DirectoryEntry
// Interop/Sys/FileStatus
// Interop/Sys/FileStatus
// System.ByReference`1<System.Byte>
// System.ByReference`1<System.Byte>
// System.ByReference`1<System.Char>
// System.ByReference`1<System.Char>
// System.ByReference`1<System.Int32>
// System.ByReference`1<System.Int32>
// System.Exception
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// System.Exception
// Mono.MonoAssemblyName
// Mono.MonoAssemblyName
// System.Reflection.RuntimeAssembly
// System.Reflection.RuntimeAssembly
// Mono.RuntimeEventHandle
// Mono.RuntimeEventHandle
// System.RuntimeFieldHandle
// System.RuntimeFieldHandle
// Mono.RuntimePropertyHandle
// Mono.RuntimePropertyHandle
// System.RuntimeTypeHandle
// System.RuntimeTypeHandle
// Mono.SafeGPtrArrayHandle
// Mono.SafeGPtrArrayHandle
// System.Runtime.InteropServices.SafeHandle
// System.Runtime.InteropServices.SafeHandle
// Mono.SafeStringMarshal
// Mono.SafeStringMarshal
// 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
// Mono.RuntimeStructs/GenericParamInfo
// Mono.RuntimeStructs/GenericParamInfo
// Mono.RuntimeStructs/RemoteClass
// Mono.RuntimeStructs/RemoteClass
// System.ReadOnlySpan`1<System.Byte>
// System.ReadOnlySpan`1<System.Byte>
// System.ReadOnlySpan`1<System.Char>
// System.ReadOnlySpan`1<System.Char>
// System.ReadOnlySpan`1<System.Int32>
// System.ReadOnlySpan`1<System.Int32>
// System.Span`1<System.Byte>
// System.Span`1<System.Byte>
// System.Span`1<System.Char>
// System.Span`1<System.Char>
// System.Span`1<System.Int32>
// System.Span`1<System.Int32>
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
// 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.Comparison`1<Mono.Globalization.Unicode.Level2Map>
// System.Comparison`1<Mono.Globalization.Unicode.Level2Map>
// System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>
// System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
// System.ArgumentException
// System.ArgumentException
// System.IO.IOException
// System.IO.IOException
// System.IndexOutOfRangeException
// System.IndexOutOfRangeException
// System.NotImplementedException
// System.NotImplementedException
// System.NotSupportedException
// System.NotSupportedException
// System.NullReferenceException
// System.NullReferenceException
// System.OperationCanceledException
// System.OperationCanceledException
// System.OutOfMemoryException
// System.OutOfMemoryException
// System.Threading.ParameterizedThreadStart
// System.Threading.ParameterizedThreadStart
// Microsoft.Win32.SafeHandles.SafeFileHandle
// Microsoft.Win32.SafeHandles.SafeFileHandle
// Microsoft.Win32.SafeHandles.SafeWaitHandle
// Microsoft.Win32.SafeHandles.SafeWaitHandle
// Mono.Xml.SmallXmlParserException
// Mono.Xml.SmallXmlParserException
// System.UnauthorizedAccessException
// System.UnauthorizedAccessException
// System.Text.ValueUtf8Converter
// System.Text.ValueUtf8Converter
// System.ArgumentNullException
// System.ArgumentNullException
// System.ArgumentOutOfRangeException
// System.ArgumentOutOfRangeException
// System.IO.DirectoryNotFoundException
// System.IO.DirectoryNotFoundException
// System.IO.FileNotFoundException
// System.IO.FileNotFoundException
// System.IO.PathTooLongException
// System.IO.PathTooLongException
// System.Reflection.MissingMetadataException
// System.Reflection.MissingMetadataException
#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.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.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.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.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.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;
}
};
// Mono.Globalization.Unicode.CodePointIndexer/TableRange[]
struct TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21 : public RuntimeArray
{
ALIGN_FIELD (8) TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497 m_Items[1];
inline TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497* 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, TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497 value)
{
m_Items[index] = value;
}
};
// Mono.Globalization.Unicode.TailoringInfo[]
struct TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE : public RuntimeArray
{
ALIGN_FIELD (8) TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* m_Items[1];
inline TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A** 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, TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Mono.Globalization.Unicode.Contraction[]
struct ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E : public RuntimeArray
{
ALIGN_FIELD (8) Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* m_Items[1];
inline Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** 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, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Mono.Globalization.Unicode.Level2Map[]
struct Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C : public RuntimeArray
{
ALIGN_FIELD (8) Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* m_Items[1];
inline Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1** 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, Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TResult System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>::Invoke(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Func_2_Invoke_m911CDB96474C146DFAFB9E9CDA9CDE8D68BB87AC_gshared_inline (Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* __this, ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_arg, const RuntimeMethod* method) ;
// System.Buffers.ArrayPool`1<T> System.Buffers.ArrayPool`1<System.Byte>::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.Span`1<System.Byte>::.ctor(System.Void*,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
// T& System.Runtime.InteropServices.MemoryMarshal::GetReference<System.Byte>(System.Span`1<T>)
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.ReadOnlySpan`1<System.Byte>::.ctor(System.Void*,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
// System.Int32 System.MemoryExtensions::IndexOf<System.Byte>(System.ReadOnlySpan`1<T>,T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_span, uint8_t ___1_value, const RuntimeMethod* method) ;
// System.Span`1<T> System.Span`1<System.Char>::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<T> System.Span`1<System.Char>::op_Implicit(System.Span`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<System.Object>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m4204C143D97E871DF2553329CFB0FBE3CD1A01F2_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method) ;
// System.Void System.Comparison`1<System.Object>::.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<System.Object>::Sort(System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___0_comparison, const RuntimeMethod* method) ;
// System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE_gshared (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
// T& System.Runtime.InteropServices.MemoryMarshal::GetReference<System.Char>(System.ReadOnlySpan`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, const RuntimeMethod* method) ;
// System.Int32 System.ReadOnlySpan`1<System.Char>::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.Void System.Span`1<System.Int32>::.ctor(System.Void*,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::.ctor(System.Span`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_gshared (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_initialSpan, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Append(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_gshared_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, int32_t ___0_item, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.ValueListBuilder`1<System.Int32>::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_gshared_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method) ;
// System.ReadOnlySpan`1<T> System.Collections.Generic.ValueListBuilder`1<System.Int32>::AsSpan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_gshared (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Dispose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_gshared_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method) ;
// System.Int32 System.ReadOnlySpan`1<System.Int32>::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_gshared_inline (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282* __this, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Char>::.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.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, const RuntimeMethod* method) ;
// System.Void System.ReadOnlySpan`1<System.Char>::CopyTo(System.Span`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, const RuntimeMethod* method) ;
// System.Void System.ReadOnlySpan`1<System.Char>::.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.ReadOnlySpan`1<T> System.ReadOnlySpan`1<System.Char>::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.Array::Empty<System.Object>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (const RuntimeMethod* method) ;
// System.Boolean System.ReadOnlySpan`1<System.Int32>::get_IsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_gshared (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282* __this, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Char>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_gshared_inline (const RuntimeMethod* method) ;
// System.Int32 System.ReadOnlySpan`1<System.Byte>::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.Int32 System.Span`1<System.Int32>::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m87AB3C694F2E4802F14D006F21C020816045285F_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Grow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueListBuilder_1_Grow_m77CD139AE5695E19D15528EDCABC2DBC5232442A_gshared (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method) ;
// TResult System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>::Invoke(T)
inline ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Func_2_Invoke_m911CDB96474C146DFAFB9E9CDA9CDE8D68BB87AC_inline (Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* __this, ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_arg, const RuntimeMethod* method)
{
return (( ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 (*) (Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8*, ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8, const RuntimeMethod*))Func_2_Invoke_m911CDB96474C146DFAFB9E9CDA9CDE8D68BB87AC_gshared_inline)(__this, ___0_arg, 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) ;
// Interop/ErrorInfo Interop/Sys::GetLastErrorInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Sys_GetLastErrorInfo_m1C1BB8341DD84927BD33E6240585E753D4B3572B (const RuntimeMethod* method) ;
// System.Void Interop::ThrowExceptionForIoErrno(Interop/ErrorInfo,System.String,System.Boolean,System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Interop_ThrowExceptionForIoErrno_mD1F1F0FA4F261F7541137053F29DC244D32DA714 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_errorInfo, String_t* ___1_path, bool ___2_isDirectory, Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* ___3_errorRewriter, const RuntimeMethod* method) ;
// System.Int64 Interop::CheckIo(System.Int64,System.String,System.Boolean,System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Interop_CheckIo_mCEB71E59B76B8B3B533398E029C7CC55500FE958 (int64_t ___0_result, String_t* ___1_path, bool ___2_isDirectory, Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* ___3_errorRewriter, const RuntimeMethod* method) ;
// Interop/Error Interop/ErrorInfo::get_Error()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B_inline (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, 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.Void System.IO.DirectoryNotFoundException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryNotFoundException__ctor_mA7F098E81D1D163C09BF5E64A34634290B76F235 (DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF* __this, String_t* ___0_message, 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.Void System.IO.FileNotFoundException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mA8C9C93DB8C5B96D6B5E59B2AE07154F265FB1A1 (FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
// System.Void System.IO.FileNotFoundException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mC4247CABF75A7B484A21790CD7F8EFA8AC101677 (FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A* __this, String_t* ___0_message, String_t* ___1_fileName, const RuntimeMethod* method) ;
// System.Exception Interop::GetIOException(Interop/ErrorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Interop_GetIOException_m4AEFBBA1E1D56F9C4D69CDD0626267AB8CFC9943 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_errorInfo, const RuntimeMethod* method) ;
// System.Void System.UnauthorizedAccessException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnauthorizedAccessException__ctor_m37F82265DB9C7D153840E157E860BBF373E9459F (UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791* __this, String_t* ___0_message, Exception_t* ___1_inner, const RuntimeMethod* method) ;
// System.Void System.IO.PathTooLongException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m2E98EE527C0503C02F7305BC57045AB86BB202A7 (PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5* __this, String_t* ___0_message, const RuntimeMethod* method) ;
// System.Int32 Interop/ErrorInfo::get_RawErrno()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method) ;
// System.Void System.IO.IOException::.ctor(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m9748591C355AD9F4C53B456CD8125C26C61B754A (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* __this, String_t* ___0_message, int32_t ___1_hresult, const RuntimeMethod* method) ;
// System.Void System.OperationCanceledException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_m2F34C3B8AEE2AA6C7EB2BB77AE5E0289101293E4 (OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662* __this, 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.String Interop/ErrorInfo::GetErrorMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorInfo_GetErrorMessage_m8126CB6DD05026B361004182D21965A7AAC89B68 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method) ;
// System.Void Interop/Sys::GetNonCryptographicallySecureRandomBytes(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sys_GetNonCryptographicallySecureRandomBytes_m6E685E563363C27974F36F253C28B4F19D9FACF9 (uint8_t* ___0_buffer, int32_t ___1_length, const RuntimeMethod* method) ;
// Interop/Error Interop/Sys::ConvertErrorPlatformToPal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ConvertErrorPlatformToPal_m1526F9D253055CD6230AD7329163BB4EBA552AAE (int32_t ___0_platformErrno, const RuntimeMethod* method) ;
// System.Void Interop/ErrorInfo::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorInfo__ctor_m69D7F33C0932334C68D390C3249427538AB6BDBA (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, int32_t ___0_errno, const RuntimeMethod* method) ;
// System.Void Interop/ErrorInfo::.ctor(Interop/Error)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorInfo__ctor_m5BAA16B076ADF4BC99001F2AB4973313BB53ECBF (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, int32_t ___0_error, const RuntimeMethod* method) ;
// System.Int32 Interop/Sys::ConvertErrorPalToPlatform(Interop/Error)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ConvertErrorPalToPlatform_m0060542D169E075F73B8224507CAEE5EA3F01626 (int32_t ___0_error, const RuntimeMethod* method) ;
// System.String Interop/Sys::StrError(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Sys_StrError_m5773D4515862D09A21D378D4FFCE551E1F86F6BF (int32_t ___0_platformErrno, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method) ;
// System.String Interop/ErrorInfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorInfo_ToString_mCC02EC6DEB01119DE687B1B1488919C602065C17 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method) ;
// System.Int32 System.Runtime.InteropServices.Marshal::GetLastWin32Error()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Marshal_GetLastWin32Error_mCD7EBA7503BF36F46DB58D98E96101FB67684379 (const RuntimeMethod* method) ;
// System.Byte* Interop/Sys::StrErrorR(System.Int32,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* Sys_StrErrorR_m75F4B015F3633733A51DDF15F716AE13BD72DC07 (int32_t ___0_platformErrno, uint8_t* ___1_buffer, int32_t ___2_bufferSize, const RuntimeMethod* method) ;
// System.IntPtr System.IntPtr::op_Explicit(System.Void*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D (void* ___0_value, const RuntimeMethod* method) ;
// System.String System.Runtime.InteropServices.Marshal::PtrToStringAnsi(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Marshal_PtrToStringAnsi_m8DF88D9F22FCF791C538A36C9233B3882F579B4A (intptr_t ___0_ptr, const RuntimeMethod* method) ;
// System.Buffers.ArrayPool`1<T> System.Buffers.ArrayPool`1<System.Byte>::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.Int32 Interop/Sys::ReadLink(System.String,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ReadLink_mC85620C48F33C828AB0A025498E3388B553C8EAF (String_t* ___0_path, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_buffer, int32_t ___2_bufferSize, 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.Void System.Runtime.InteropServices.SafeHandle::DangerousAddRef(System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_DangerousAddRef_m9FA46208A92D8B33059B8E8712F49AE45BB5E922 (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, bool* ___0_success, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.SafeHandle::DangerousRelease()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_DangerousRelease_m30A8B4E5BEA935C8925BC2115CD0AD13B937953E (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Byte>::.ctor(System.Void*,System.Int32)
inline void Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
{
(( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline)(__this, ___0_pointer, ___1_length, method);
}
// System.Void System.Text.ValueUtf8Converter::.ctor(System.Span`1<System.Byte>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueUtf8Converter__ctor_mC2AD8452442C044B152ABEEF3706892BB66C90D9 (ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_initialBuffer, const RuntimeMethod* method) ;
// System.Span`1<System.Byte> System.Text.ValueUtf8Converter::ConvertAndTerminateString(System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ValueUtf8Converter_ConvertAndTerminateString_m7525C8D794AB245BB9AD2D64D238B68AC55111A4 (ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ;
// T& System.Runtime.InteropServices.MemoryMarshal::GetReference<System.Byte>(System.Span`1<T>)
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.Int32 Interop/Sys::Stat(System.Byte&,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Stat_m03EFE78D57885DC5AB93B289499251C76206C1EA (uint8_t* ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, const RuntimeMethod* method) ;
// System.Void System.Text.ValueUtf8Converter::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueUtf8Converter_Dispose_m601586EE197FB0A58CD6A0F67C91DC4530B2EAE2 (ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266* __this, const RuntimeMethod* method) ;
// System.Int32 Interop/Sys::LStat(System.Byte&,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_LStat_mA12F131FFC1087EAE105C597E639CF72CFCED146 (uint8_t* ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, const RuntimeMethod* method) ;
// System.Int32 Interop/Sys::LChflagsCanSetHiddenFlag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_LChflagsCanSetHiddenFlag_mF927D75AA5A0EBF295A07FC40BECF267041D6F6B (const RuntimeMethod* method) ;
// System.Void System.ReadOnlySpan`1<System.Byte>::.ctor(System.Void*,System.Int32)
inline void ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
{
(( void (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, void*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_gshared_inline)(__this, ___0_pointer, ___1_length, method);
}
// System.Int32 System.MemoryExtensions::IndexOf<System.Byte>(System.ReadOnlySpan`1<T>,T)
inline int32_t MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_span, uint8_t ___1_value, const RuntimeMethod* method)
{
return (( int32_t (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, uint8_t, const RuntimeMethod*))MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_gshared_inline)(___0_span, ___1_value, method);
}
// System.Span`1<T> System.Span`1<System.Char>::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<T> System.Span`1<System.Char>::op_Implicit(System.Span`1<T>)
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.ReadOnlySpan`1<System.Char> Interop/Sys/DirectoryEntry::GetName(System.Span`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996 (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_buffer, const RuntimeMethod* 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.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mC3AF0F4C7566888FD25A74833B83F5A8C6F9D931 (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, String_t* ___1_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75 (RuntimeObject* ___0_provider, String_t* ___1_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m44BF8BF44DC9B67D6CF265A1A2703A6D743F5C56 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, RuntimeObject* ___3_arg1, 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 Mono.RuntimeClassHandle::.ctor(Mono.RuntimeStructs/MonoClass*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34_inline (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___0_value, const RuntimeMethod* method) ;
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF (intptr_t ___0_value, const RuntimeMethod* method) ;
// System.Void Mono.RuntimeClassHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeClassHandle__ctor_m7021F8E7933C8ABC27B2FDF562EF608FBDF0D9C3 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
// Mono.RuntimeStructs/MonoClass* Mono.RuntimeClassHandle::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* RuntimeClassHandle_get_Value_m25D4B9C7BC4BB723CDD408E0F490D8DAB54B5EFB_inline (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, 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.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172 (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
// System.Boolean Mono.RuntimeClassHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeClassHandle_Equals_m7FE8F7C9EE7048C140FCC548CEE30372DE734E05 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
// System.Int32 System.IntPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m669B16AD7483C1C396E48F41D9CAC4B719E38F3D (intptr_t* __this, const RuntimeMethod* method) ;
// System.Int32 Mono.RuntimeClassHandle::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeClassHandle_GetHashCode_m2AD338C1E8108B685A6F95C07CC83FCDC2CBC514 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, const RuntimeMethod* method) ;
// System.IntPtr Mono.RuntimeClassHandle::GetTypeFromClass(Mono.RuntimeStructs/MonoClass*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeClassHandle_GetTypeFromClass_m58318E74AF6BD916BC0706E930958EB532A0B28D (MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___0_klass, const RuntimeMethod* method) ;
// System.Void System.RuntimeTypeHandle::.ctor(System.IntPtr)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeTypeHandle__ctor_m3B7A6EF106E5F7259DA89488C4D23622533C09A8_inline (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B* __this, intptr_t ___0_val, const RuntimeMethod* method) ;
// System.RuntimeTypeHandle Mono.RuntimeClassHandle::GetTypeHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B RuntimeClassHandle_GetTypeHandle_mC2B0186E8B2CAEBA30296C2CE29D96B9894957CD (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, const RuntimeMethod* method) ;
// Mono.RuntimeClassHandle Mono.RuntimeRemoteClassHandle::get_ProxyClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 RuntimeRemoteClassHandle_get_ProxyClass_mB696A6AF46F5ACB381B40DC37F92F9DA67625E9B (RuntimeRemoteClassHandle_t47A1D2639335E036FE04C79F1858CF28663F1FDF* __this, const RuntimeMethod* method) ;
// System.Void Mono.RuntimeGenericParamInfoHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGenericParamInfoHandle__ctor_m635F2C947EEDF45BE0E17E66F06C718AC2D10F4E (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
// System.Type[] Mono.RuntimeGenericParamInfoHandle::GetConstraints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* RuntimeGenericParamInfoHandle_GetConstraints_m1C3E51699D5D9F77FE215BEB00B8A76BC20AA54C (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method) ;
// System.Type[] Mono.RuntimeGenericParamInfoHandle::get_Constraints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* RuntimeGenericParamInfoHandle_get_Constraints_mE96BF6947E1F6990FB52B0A8219A901FF3A6B7A6 (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method) ;
// System.Reflection.GenericParameterAttributes Mono.RuntimeGenericParamInfoHandle::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeGenericParamInfoHandle_get_Attributes_m3CF6E048BFD00D5218DE1E343A3A194BF93E8729 (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method) ;
// System.Int32 Mono.RuntimeGenericParamInfoHandle::GetConstraintsCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeGenericParamInfoHandle_GetConstraintsCount_mC615FBDA56188D3DB17BC436025177B3214E2A51 (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, 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.Void Mono.RuntimeEventHandle::.ctor(System.IntPtr)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeEventHandle__ctor_m9712CDDC8FAB489928A3C5C37D91A79E5C344F78_inline (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, intptr_t ___0_v, const RuntimeMethod* method) ;
// System.IntPtr Mono.RuntimeEventHandle::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t RuntimeEventHandle_get_Value_mE84A702C797FF1933824906BE69AE5E3D3304B30_inline (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, 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) ;
// System.Boolean Mono.RuntimeEventHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeEventHandle_Equals_m1A48EE5D85A84BDF4BE92A04D5203E0C5B1444A2 (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
// System.Int32 Mono.RuntimeEventHandle::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeEventHandle_GetHashCode_m0F827612114C8976DB1D91AA6FEFAE10876F1CC6 (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, const RuntimeMethod* method) ;
// System.Void Mono.RuntimePropertyHandle::.ctor(System.IntPtr)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimePropertyHandle__ctor_m0D2C702D16F3F51A9E9AA1AC9E808C82F92E711E_inline (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, intptr_t ___0_v, const RuntimeMethod* method) ;
// System.IntPtr Mono.RuntimePropertyHandle::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t RuntimePropertyHandle_get_Value_mDF730CAE1334309B5B59074DCACBC34884C34406_inline (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.RuntimePropertyHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimePropertyHandle_Equals_m73642985E7C7804645C7DC5AD6528D8C467398A3 (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
// System.Int32 Mono.RuntimePropertyHandle::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimePropertyHandle_GetHashCode_m880542202D105E75C7EF76C31EA48A5761A15B30 (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, const RuntimeMethod* method) ;
// System.Void Mono.RuntimeGPtrArrayHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGPtrArrayHandle__ctor_m696952A5ABC50F0813EE450DCCE1E8117AB8AEED (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
// System.Int32 Mono.RuntimeGPtrArrayHandle::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeGPtrArrayHandle_get_Length_mDDE04771772F71BC95A38A7CC1FBB11642B8C502 (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, const RuntimeMethod* method) ;
// System.IntPtr Mono.RuntimeGPtrArrayHandle::Lookup(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309 (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, int32_t ___0_i, const RuntimeMethod* method) ;
// System.IntPtr Mono.RuntimeGPtrArrayHandle::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeGPtrArrayHandle_get_Item_m3B72E2CB5341796FD2EAD42592ED5FA28623F249 (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, int32_t ___0_i, const RuntimeMethod* method) ;
// System.Void System.IndexOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m270ED9671475CE680EEA8C62A7A43308AE4188EF (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* __this, const RuntimeMethod* method) ;
// System.Void Mono.RuntimeGPtrArrayHandle::GPtrArrayFree(Mono.RuntimeStructs/GPtrArray*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGPtrArrayHandle_GPtrArrayFree_mD9C8A86D185526D672E85D764FB3481FB0661855 (GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF* ___0_value, const RuntimeMethod* method) ;
// System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method) ;
// System.Void Mono.SafeStringMarshal::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal__ctor_m45953FD7665BA4526596D2D30A9BF2141B037AA8 (SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* __this, String_t* ___0_str, const RuntimeMethod* method) ;
// System.Int32 Mono.RuntimeMarshal::DecodeBlobSize(System.IntPtr,System.IntPtr&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeMarshal_DecodeBlobSize_m4987AAFF455BE126536B8EDE3C10E8F2A6D6EAA9 (intptr_t ___0_in_ptr, intptr_t* ___1_out_ptr, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.Marshal::Copy(System.IntPtr,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_mF7402FFDB520EA1B8D1C32B368DBEE4B13F1BE77 (intptr_t ___0_source, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_destination, int32_t ___2_startIndex, int32_t ___3_length, const RuntimeMethod* method) ;
// System.Void Mono.SafeGPtrArrayHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeGPtrArrayHandle__ctor_m8EF7E312EF9558E92061E6A1FEABE43F5AE80579 (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
// System.Void Mono.RuntimeGPtrArrayHandle::DestroyAndFree(Mono.RuntimeGPtrArrayHandle&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGPtrArrayHandle_DestroyAndFree_mABE1D4D9C803C171AECE76F3CA4293BD274F170B (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* ___0_h, const RuntimeMethod* method) ;
// System.Void Mono.SafeGPtrArrayHandle::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeGPtrArrayHandle_Dispose_mEC245DEB021C0DC3BA74E80B202049AC198096C8 (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, const RuntimeMethod* method) ;
// System.Int32 Mono.SafeGPtrArrayHandle::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SafeGPtrArrayHandle_get_Length_m5F09438379A2372A92EA78B5F1E719D6072BEC6E (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, const RuntimeMethod* method) ;
// System.IntPtr Mono.SafeGPtrArrayHandle::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeGPtrArrayHandle_get_Item_m0417A32AA69F65032DE50E6168189B231CF29BB5 (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, int32_t ___0_i, const RuntimeMethod* method) ;
// System.IntPtr Mono.SafeStringMarshal::StringToUtf8_icall(System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_StringToUtf8_icall_m16E73320703B8E340FD31C90C4E5161A33DC5BA6 (String_t** ___0_str, const RuntimeMethod* method) ;
// System.IntPtr Mono.SafeStringMarshal::StringToUtf8(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_StringToUtf8_m5F299E8BDAED80F19E8FFDAC76378B7435430A27 (String_t* ___0_str, const RuntimeMethod* method) ;
// System.IntPtr Mono.SafeStringMarshal::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_get_Value_m33E0497DD37A963B09B47083091BE63D90C06CBC (SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* __this, 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.Void Mono.SafeStringMarshal::GFree(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal_GFree_m4C0195D7BE2E671CFA77F40B3349D01D97940E3F (intptr_t ___0_ptr, const RuntimeMethod* method) ;
// System.Void Mono.SafeStringMarshal::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal_Dispose_m34D77253DF878A33052EEA9771C93252C2B02A0F (SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Stack::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_m4E3FE5A70C400B82DAB9E38E61A934E4E4DE01A7 (Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* __this, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl__ctor_mC0D30F283DD1CC3CF56E56ED29462F421FAF98FC (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParserException::.ctor(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParserException__ctor_mA574796034F0F01B0A66CCEB66097F0CA729A27B (SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7* __this, String_t* ___0_msg, int32_t ___1_line, int32_t ___2_column, const RuntimeMethod* method) ;
// System.String System.String::Join(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD (String_t* ___0_separator, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_value, 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.Exception Mono.Xml.SmallXmlParser::Error(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, String_t* ___0_msg, const RuntimeMethod* method) ;
// 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) ;
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_mDC28EBFD4733F067C178259ACB05862C60AA7C2F (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, bool ___0_expected, const RuntimeMethod* method) ;
// System.Int32 Mono.Xml.SmallXmlParser::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
// System.Int32 Mono.Xml.SmallXmlParser::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Xml.SmallXmlParser::IsWhitespace(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsWhitespace_m66E95B828FFBD98E1A8C7B53F334F1C746FA7221 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, int32_t ___0_c, const RuntimeMethod* method) ;
// System.Exception Mono.Xml.SmallXmlParser::UnexpectedEndError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* SmallXmlParser_UnexpectedEndError_m49611771ED1216C9DF756338DDDB97B227F81FB9 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __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.Void Mono.Xml.SmallXmlParser::ReadReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadReference_m33EEC080ACA6D08AD59AC077D37B8554DCD72E15 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __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.Boolean Mono.Xml.SmallXmlParser::IsNameChar(System.Char,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsNameChar_mF93D58506A1B3E4407F50B04793005D10899A0BE (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, Il2CppChar ___0_c, bool ___1_start, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900 (RuntimeArray* ___0_sourceArray, RuntimeArray* ___1_destinationArray, int32_t ___2_length, const RuntimeMethod* method) ;
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_val, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::ReadContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::HandleBufferedContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleBufferedContent_mA1EAFD112B1289A13B471498995E75F409AFE5EE (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::Cleanup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Cleanup_mB4BE7BFA8E2FAB80B40172E98FC750083EED982F (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Clear_m928937942612617F5E5EC6B1849942D831C34E41 (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, const RuntimeMethod* 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 Mono.Xml.SmallXmlParser::HandleWhitespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleWhitespaces_mD1E22581F64763EED215226E814A765473E97D7D (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.String Mono.Xml.SmallXmlParser::ReadName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, 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.Void Mono.Xml.SmallXmlParser::Expect(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, int32_t ___0_c, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::ReadCDATASection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCDATASection_m959663B4552B92B7040E13B23BB395905EC50BA1 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::ReadComment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadComment_m1D1D6B2E2C6C7C532717D1989E1B5A3CAA998684 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.String Mono.Xml.SmallXmlParser::ReadUntil(System.Char,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, Il2CppChar ___0_until, bool ___1_handleReferences, 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.Void Mono.Xml.SmallXmlParser::ReadAttribute(Mono.Xml.SmallXmlParser/AttrListImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadAttribute_m68F93A21DBAA757306E4A8469E563A86A5C37E09 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* ___0_a, const RuntimeMethod* method) ;
// System.Void Mono.Xml.SmallXmlParser::ReadCharacters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCharacters_m5C6573F4EBB4EE6123BF5A53E9E6989AF024D4A7 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method) ;
// System.Int32 Mono.Xml.SmallXmlParser::ReadCharacterReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_ReadCharacterReference_mBA7ADD269054BF1D6C751B0B7434A70AF5BAD9A7 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __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.Void Mono.Xml.SmallXmlParser/AttrListImpl::Add(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Add_m809157F38C92F7E9BB2463BE1F4A35703536B4FD (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.String>::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.Int32 System.Collections.Generic.List`1<System.String>::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<System.String>::ToArray()
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
{
return (( StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.String>::Clear()
inline void List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.String>::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.Void System.Collections.Generic.List`1<System.String>::.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.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.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.CodePointIndexer/TableRange::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TableRange__ctor_m2BA1ACE9CAB66F5A86AE0534524AF41C63618E1D (TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497* __this, int32_t ___0_start, int32_t ___1_end, int32_t ___2_indexStart, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.ContractionComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContractionComparer__ctor_mB4EA5A722C5583D0D50CD88937D0A90BA8603826 (ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::.ctor()
inline void List_1__ctor_mC8997D2202766FB8AD08F8355CCE9D9BF57B3757 (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::.ctor()
inline void List_1__ctor_mDED626FB9D28DA7191C6BC79601486000B0DAE3C (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Runtime.InteropServices.Marshal::Copy(System.IntPtr,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_m6C7CF44B55FB4392AE55DF0B2D6EC156D0028DF4 (intptr_t ___0_source, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_destination, int32_t ___2_startIndex, int32_t ___3_length, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.Contraction::.ctor(System.Int32,System.Char[],System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Contraction__ctor_m393EA5668662462C9EB8D30405E2BC0D007E954C (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* __this, int32_t ___0_index, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_source, String_t* ___2_replacement, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_sortkey, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::Add(T)
inline void List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_inline (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* __this, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* ___0_item, const RuntimeMethod* method)
{
(( void (*) (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258*, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
}
// System.Void Mono.Globalization.Unicode.Level2Map::.ctor(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Level2Map__ctor_m2171A26B3D0F4CE222E9B83CEA97ACF486DA7B0B (Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* __this, uint8_t ___0_source, uint8_t ___1_replace, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::Add(T)
inline void List_1_Add_mA712408EB20FE442926FB62ED8BD9A081438F91B_inline (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* __this, Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* ___0_item, const RuntimeMethod* method)
{
(( void (*) (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07*, Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
}
// System.String System.String::CreateString(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2 (String_t* __this, Il2CppChar* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
// System.Void System.NotImplementedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742 (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, String_t* ___0_message, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::Sort(System.Collections.Generic.IComparer`1<T>)
inline void List_1_Sort_m37936F298F44633B62E94F28FA811A9564FF4A89 (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
{
(( void (*) (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258*, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m4204C143D97E871DF2553329CFB0FBE3CD1A01F2_gshared)(__this, ___0_comparer, method);
}
// System.Void System.Comparison`1<Mono.Globalization.Unicode.Level2Map>::.ctor(System.Object,System.IntPtr)
inline void Comparison_1__ctor_m910FD568C9AF4E20495457AE45128A1C1CF42E1C (Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
{
(( void (*) (Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared)(__this, ___0_object, ___1_method, method);
}
// System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::Sort(System.Comparison`1<T>)
inline void List_1_Sort_mB410DEDC02C80B09BBBA1D5E4349DF97842CE78C (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* __this, Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* ___0_comparison, const RuntimeMethod* method)
{
(( void (*) (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07*, Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE*, const RuntimeMethod*))List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared)(__this, ___0_comparison, method);
}
// T[] System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::ToArray()
inline ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* List_1_ToArray_mDB9A5833D13B76B178E20283BB565A8336B614DA (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* __this, const RuntimeMethod* method)
{
return (( ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* (*) (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method);
}
// T[] System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::ToArray()
inline Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* List_1_ToArray_m98422ED392AD80F51FB67422E8037A59508EB065 (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* __this, const RuntimeMethod* method)
{
return (( Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* (*) (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method);
}
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::ToIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4 (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* __this, int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsIgnorable(System.Int32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsIgnorable_m2E451C7224CA6AB118D01FDF7158AC3D4C1C9B06 (int32_t ___0_cp, uint8_t ___1_flag, const RuntimeMethod* method) ;
// System.IntPtr System.Reflection.RuntimeAssembly::GetManifestResourceInternal(System.String,System.Int32&,System.Reflection.Module&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeAssembly_GetManifestResourceInternal_m42C3E9A9A678777B6B889144EFC663E6B0DBF362 (RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF* __this, String_t* ___0_name, int32_t* ___1_size, Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0** ___2_module, const RuntimeMethod* method) ;
// System.IntPtr Mono.Globalization.Unicode.MSCompatUnicodeTable::GetResource(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861 (String_t* ___0_name, const RuntimeMethod* method) ;
// System.UInt32 Mono.Globalization.Unicode.MSCompatUnicodeTable::UInt32FromBytePtr(System.Byte*,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A (uint8_t* ___0_raw, uint32_t ___1_idx, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.TailoringInfo::.ctor(System.Int32,System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TailoringInfo__ctor_m8FE45B7864406D005E092AD69597178C4F081F4E (TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* __this, int32_t ___0_lcid, int32_t ___1_tailoringIndex, int32_t ___2_tailoringCount, bool ___3_frenchSort, 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.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::FillCJKCore(System.String,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_FillCJKCore_mD7EE94BA2102F9795992F153AE630903BA74A05C (String_t* ___0_culture, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_cjkLv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::SetCJKReferences(System.String,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_SetCJKReferences_m3DA5CF30FE174CBAAB26D496FD7C5ED5A5C54070 (String_t* ___0_name, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_lv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::get_IsReady()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_m46FD80414521FFE51B8D16D74A40D275EA99E338_inline (const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m886B600753BE0193E56546B842AB8528FECB1ED8 (U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596* __this, 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.Void Mono.Globalization.Unicode.CodePointIndexer::.ctor(System.Int32[],System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62 (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_starts, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___1_ends, int32_t ___2_defaultIndex, int32_t ___3_defaultCP, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator::SetCJKTable(System.Globalization.CultureInfo,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_SetCJKTable_mCCCB23CC548A4BAF92C2AA5B17CA14459D0E9B8F (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_lv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method) ;
// Mono.Globalization.Unicode.TailoringInfo Mono.Globalization.Unicode.MSCompatUnicodeTable::GetTailoringInfo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* MSCompatUnicodeTable_GetTailoringInfo_mB25850226E6CEABF5AC34B2A168E33FF9BB5D930 (int32_t ___0_lcid, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::BuildTailoringTables(System.Globalization.CultureInfo,Mono.Globalization.Unicode.TailoringInfo,Mono.Globalization.Unicode.Contraction[]&,Mono.Globalization.Unicode.Level2Map[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_BuildTailoringTables_m799DB61E22220EB93396E091DE35ABB161061BBA (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* ___1_t, ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E** ___2_contractions, Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C** ___3_diacriticals, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo Mono.Globalization.Unicode.SimpleCollator::GetNeutralCulture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* SimpleCollator_GetNeutralCulture_mC1A6DE98ABAC1AE2E7FA2E55CD53628E2BD344D0 (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_info, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::FillCJK(System.String,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_FillCJK_mAD65881B382330F76AFB13D545E0D5D5C43BA018 (String_t* ___0_culture, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_lv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Category(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Category_m901E734DD977E1CE752480BBF162A60E069BEF33 (int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Level1(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Level1_m872E781969947F0D27078ABA702E6E6BAD123A27 (int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Level2(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Level2_m43E56E2872610B1D0D0F5425BEC16C9E41A47B29 (int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsHalfWidthKana(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsHalfWidthKana_m92E8F8CEFE6FD1106DD4195367727CA8F99D76AE (Il2CppChar ___0_c, const RuntimeMethod* method) ;
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetContraction(System.String,System.Int32,System.Int32,Mono.Globalization.Unicode.Contraction[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetContraction_m2445BD1740B0C42EFE1052BEF11FE44E337CD1D6 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ___3_clist, 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) ;
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetTailContraction(System.String,System.Int32,System.Int32,Mono.Globalization.Unicode.Contraction[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetTailContraction_m5B278B3F2B83D8C24ADFB172C071ABB40D3D9004 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ___3_clist, 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.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::ToWidthCompat(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MSCompatUnicodeTable_ToWidthCompat_mE7DA75A49B8982E9A6FCE01F876700FC86E85F3D (int32_t ___0_i, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::ToKanaTypeInsensitive(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MSCompatUnicodeTable_ToKanaTypeInsensitive_m3E4E4DC538A41C6D672A1EEF4C8F1DD4D19D6F1D (int32_t ___0_i, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::HasSpecialWeight(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsHalfKana(System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35 (int32_t ___0_cp, int32_t ___1_opt, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsHiragana(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.SimpleCollator::Level1(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Globalization.SortKey Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SimpleCollator_GetSortKey_m2C0748D8AC0E33CD46FF16C190261CA1173FB66E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_length, int32_t ___3_options, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer__ctor_m44124385B07E9C713EE6C0CEECA51C4A4200E6FE (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, int32_t ___0_lcid, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::Initialize(System.Globalization.CompareOptions,System.Int32,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_Initialize_m4F998BC86CA746C8C3DEAC8D47D17FD2B5537C39 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, int32_t ___0_options, int32_t ___1_lcid, String_t* ___2_s, bool ___3_frenchSort, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Int32,System.Int32,Mono.Globalization.Unicode.SortKeyBuffer,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_GetSortKey_m412F69F13CDC0508189A28A4EE43596FB5A47573 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* ___3_buf, int32_t ___4_opt, const RuntimeMethod* method) ;
// System.Globalization.SortKey Mono.Globalization.Unicode.SortKeyBuffer::GetResultAndReset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SortKeyBuffer_GetResultAndReset_m3F0C22EAE5F965F5B9E82649F754847BF5593AFD (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator::ClearBuffer(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, uint8_t* ___0_buffer, int32_t ___1_size, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator/Context::.ctor(System.Globalization.CompareOptions,System.Byte*,System.Byte*,System.Byte*,System.Byte*,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A (Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* __this, int32_t ___0_opt, uint8_t* ___1_alwaysMatchFlags, uint8_t* ___2_neverMatchFlags, uint8_t* ___3_buffer1, uint8_t* ___4_buffer2, uint8_t* ___5_prev1, const RuntimeMethod* method) ;
// Mono.Globalization.Unicode.SimpleCollator/ExtenderType Mono.Globalization.Unicode.SimpleCollator::GetExtenderType(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::FilterExtender(System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, int32_t ___1_ext, int32_t ___2_opt, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator::FillSortKeyRaw(System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,Mono.Globalization.Unicode.SortKeyBuffer,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_FillSortKeyRaw_mFDBF293D1A4255B0E59E8DCCB34EF6E2C76C4B5E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, int32_t ___1_ext, SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* ___2_buf, int32_t ___3_opt, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.SimpleCollator::Level2(System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_cp, int32_t ___1_ext, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Level3(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624 (int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendNormal(System.Byte,System.Byte,System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_category, uint8_t ___1_lv1, uint8_t ___2_lv2, uint8_t ___3_lv3, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsIgnorable(System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691 (int32_t ___0_i, int32_t ___1_opt, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::FilterOptions(System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, int32_t ___1_opt, const RuntimeMethod* method) ;
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetContraction(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsIgnorableNonSpacing(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4 (int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendCJKExtension(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendCJKExtension_m64F33BC8021B4D895B765F7BC34723B1341F0A15 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_lv1msb, uint8_t ___1_lv1lsb, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator::FillSurrogateSortKeyRaw(System.Int32,Mono.Globalization.Unicode.SortKeyBuffer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_FillSurrogateSortKeyRaw_m70AB1F51D1BED2F7CEFABB8CBD6B834DDF0569E7 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* ___1_buf, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.SimpleCollator::Category(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_cp, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsJapaneseSmallLetter(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A (Il2CppChar ___0_c, const RuntimeMethod* method) ;
// System.Byte Mono.Globalization.Unicode.SimpleCollator::ToDashTypeValue(Mono.Globalization.Unicode.SimpleCollator/ExtenderType,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC (int32_t ___0_ext, int32_t ___1_opt, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendKana(System.Byte,System.Byte,System.Byte,System.Byte,System.Boolean,System.Byte,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendKana_m18A005FE17B519E36265D20FD12EFFE99E5132F9 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_category, uint8_t ___1_lv1, uint8_t ___2_lv2, uint8_t ___3_lv3, bool ___4_isSmallKana, uint8_t ___5_markType, bool ___6_isKatakana, bool ___7_isHalfWidth, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_Compare_m3D60A3799386624D26100C40A1832400EB9D2746 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s1, int32_t ___1_idx1, int32_t ___2_len1, String_t* ___3_s2, int32_t ___4_idx2, int32_t ___5_len2, int32_t ___6_options, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::CompareInternal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Boolean&,System.Boolean&,System.Boolean,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_CompareInternal_m1922639329B7F77643CD82F2A491BD12E6FE4191 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s1, int32_t ___1_idx1, int32_t ___2_len1, String_t* ___3_s2, int32_t ___4_idx2, int32_t ___5_len2, bool* ___6_targetConsumed, bool* ___7_sourceConsumed, bool ___8_skipHeadingExtenders, bool ___9_immediateBreakup, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___10_ctx, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator/PreviousInfo::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PreviousInfo__ctor_m78ED776E41CA06EB8EBAB9C0997C04B8D22AB18E (PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103* __this, bool ___0_dummy, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSafe(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSafe_mD24BAD3CE9F9AE2A16A4C201AC71B212E336FFAE (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::CompareFlagPair(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_CompareFlagPair_m36C5153103A3912D35FA164B03521FA5C078838B (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, bool ___0_b1, bool ___1_b2, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_mD1DEA97AE880EBCA09C11F5D64C1A8BF2BBF5D8E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Int32,System.Int32,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_mA60DF9D84E40E774783313C812198E41460BA4CF (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, bool ___4_skipHeadingExtenders, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___5_ctx, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSuffix(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSuffix_m9E4F334A9BFF2B6DF2D776382573DF0463EF919C (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_mA10DF8A160173336E3159912701A4EA27D670EA4 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, 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.Int32 Mono.Globalization.Unicode.SimpleCollator::QuickIndexOf(System.String,System.String,System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_QuickIndexOf_m6815934F5AAB5546ED93F5DCDC09FABAC7680B18 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, bool* ___4_testWasUnable, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Byte*,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOf_m11B2D9FB7B98647C6B6DC4B647A174B0C54B591D (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, uint8_t* ___4_targetSortKey, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___5_ctx, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesForward(System.String,System.Int32&,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesForward_m8CA755E21AD13E1BF8DD83078F133730D33E4536 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_ti, uint8_t* ___4_sortkey, bool ___5_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___6_ctx, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOfOrdinal(System.String,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOfOrdinal_mAC77E8D165ABA6EC71A06BFCC1D7299E333811C7 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, Il2CppChar ___1_target, int32_t ___2_start, int32_t ___3_length, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOfOrdinal(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOfOrdinal_m7196DECD403B6631D6A3B9D04A34088BA91B43BC (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOfSortKey(System.String,System.Int32,System.Int32,System.Byte*,System.Char,System.Int32,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOfSortKey_m8F31818D0A985D2B5E8183E15D5A92D57293F3D6 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_length, uint8_t* ___3_sortkey, Il2CppChar ___4_target, int32_t ___5_ti, bool ___6_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___7_ctx, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Byte*,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_m488C8D25A2AB765863F915C6DB76AB6EE0F06720 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, uint8_t* ___4_targetSortKey, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___5_ctx, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesBackward(System.String,System.Int32&,System.Int32,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesBackward_m9AC1281E6D19130EBA20AC6886E266BDE4BF0C8D (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_orgStart, int32_t ___4_ti, uint8_t* ___5_sortkey, bool ___6_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___7_ctx, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOfOrdinal(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOfOrdinal_m322FE1FF86BFDE367B003E70455FD7B3C39B3196 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, const RuntimeMethod* method) ;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOfSortKey(System.String,System.Int32,System.Int32,System.Int32,System.Byte*,System.Int32,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOfSortKey_mF2FE6FAA26A35DA855DC31B896359E439794B759 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_orgStart, int32_t ___3_length, uint8_t* ___4_sortkey, int32_t ___5_ti, bool ___6_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___7_ctx, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesForwardCore(System.String,System.Int32&,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,Mono.Globalization.Unicode.Contraction&,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesForwardCore_mA6CDEC5DC46755C2A778408FE4DA8F28D929F4EC (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_ti, uint8_t* ___4_sortkey, bool ___5_noLv4, int32_t ___6_ext, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** ___7_ct, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___8_ctx, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesPrimitive(System.Globalization.CompareOptions,System.Byte*,System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesPrimitive_m561EAF65597A2D0896CAA2DCF33992A2531A490E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_opt, uint8_t* ___1_source, int32_t ___2_si, int32_t ___3_ext, uint8_t* ___4_target, int32_t ___5_ti, bool ___6_noLv4, const RuntimeMethod* method) ;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesBackwardCore(System.String,System.Int32&,System.Int32,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,Mono.Globalization.Unicode.Contraction&,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesBackwardCore_m060643AEAF22958885C7CE7E2D0436CC51A39188 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_orgStart, int32_t ___4_ti, uint8_t* ___5_sortkey, bool ___6_noLv4, int32_t ___7_ext, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** ___8_ct, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___9_ctx, const RuntimeMethod* method) ;
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetTailContraction(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetTailContraction_m9C3AD899404EEB2A61C0DA596E97CF81E62F4BC1 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SimpleCollator::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator__ctor_m457B2E914BEC0BB426FFE60448571037A0F3C499 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendBufferPrimitive(System.Byte,System.Byte[]&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_value, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___1_buf, int32_t* ___2_bidx, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendLevel5(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendLevel5_m43A602E98AD77ECF099203FFBD5EB25150A97263 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_category, uint8_t ___1_lv1, const RuntimeMethod* method) ;
// System.Globalization.SortKey Mono.Globalization.Unicode.SortKeyBuffer::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SortKeyBuffer_GetResult_m30B9014A75D75E2FEFA2957089E273851C493794 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, const RuntimeMethod* method) ;
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_Reset_mAE7016EB08B676BDA41F9B85ACB485E4CE9B7BF1 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, const RuntimeMethod* method) ;
// System.Void System.Globalization.SortKey::.ctor(System.Int32,System.String,System.Byte[],System.Globalization.CompareOptions,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKey__ctor_m17EC2276AE294AA8397E51FDCC4B89BF367EC7A5 (SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* __this, int32_t ___0_lcid, String_t* ___1_source, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_buffer, int32_t ___3_opt, int32_t ___4_lv1Length, int32_t ___5_lv2Length, int32_t ___6_lv3Length, int32_t ___7_kanaSmallLength, int32_t ___8_markTypeLength, int32_t ___9_katakanaLength, int32_t ___10_kanaWidthLength, int32_t ___11_identLength, const RuntimeMethod* method) ;
// System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32)
inline void Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
{
(( void (*) (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE_gshared)(___0_array, ___1_index, ___2_length, method);
}
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::GetOptimizedLength(System.Byte[],System.Int32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_len, uint8_t ___2_defaultValue, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41 (RuntimeArray* ___0_sourceArray, int32_t ___1_sourceIndex, RuntimeArray* ___2_destinationArray, int32_t ___3_destinationIndex, int32_t ___4_length, const RuntimeMethod* method) ;
// System.Byte[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverterLE_GetUIntBytes_m063CB14AF929A412B13A41B78A6F78476926227F (uint8_t* ___0_bytes, const RuntimeMethod* method) ;
// System.Byte[] Mono.Security.BitConverterLE::GetULongBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverterLE_GetULongBytes_mAC7F39560BA9C9C7D3041E2A527A7BBA09E0F418 (uint8_t* ___0_bytes, const RuntimeMethod* method) ;
// System.Void Mono.Security.BitConverterLE::UIntFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UIntFromBytes_m2CB2D9D380235CBEFF14FF76FCBF7ED0F316F92A (uint8_t* ___0_dst, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_src, int32_t ___2_startIndex, const RuntimeMethod* method) ;
// System.Void Mono.Security.BitConverterLE::ULongFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_ULongFromBytes_m34888A39C976DFD3CFC64C4BC034A7947DB3699F (uint8_t* ___0_dst, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_src, int32_t ___2_startIndex, const RuntimeMethod* method) ;
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
// System.Void Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89 (SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629* __this, bool ___0_ownsHandle, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.SafeHandle::SetHandle(System.IntPtr)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, intptr_t ___0_handle, const RuntimeMethod* method) ;
// System.Boolean System.IO.MonoIO::Close(System.IntPtr,System.IO.MonoIOError&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoIO_Close_m0EF5E4613FDD2FAC98D5C41CA660EB0B328CB5F0 (intptr_t ___0_handle, int32_t* ___1_error, const RuntimeMethod* method) ;
// System.Void System.Threading.NativeEventCalls::CloseEvent_internal(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeEventCalls_CloseEvent_internal_m57C81656144EBA5DEE8A55C09624CED5C338BDE9 (intptr_t ___0_handle, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.SafeHandle::.ctor(System.IntPtr,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle__ctor_m23E44C94503043292DCD4E87818082CFC09A7F4B (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, intptr_t ___0_invalidHandleValue, bool ___1_ownsHandle, const RuntimeMethod* method) ;
// System.Boolean System.IntPtr::IsNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_IsNull_m77D4FB137C442917D697E210C859523466B7B2CD (intptr_t* __this, const RuntimeMethod* method) ;
// System.Void System.IntPtr::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_m20A566609A091311C734617C699E61F545250AC7 (intptr_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Runtime.ExceptionServices.ExceptionDispatchInfo::Capture(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* ExceptionDispatchInfo_Capture_mC1C1C30D83DC04B2B7813DFCB67D07CCD4909803 (Exception_t* ___0_source, const RuntimeMethod* method) ;
// System.Void System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330 (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* __this, const RuntimeMethod* method) ;
// System.Void Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionExecutionDomainCallbacks__ctor_mD35D07DCAD928708AE062BB0751223E052A672AC (ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* __this, const RuntimeMethod* method) ;
// System.Void System.Reflection.MissingMetadataException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMetadataException__ctor_m400B8CFE17F45DF30DC27F70D329C132BF978F3B (MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m107278C895F976B9A23F48EE89D60D7C70C1AEA6 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, ParameterizedThreadStart_tAA8FDC4E868056A7CB7CB2C4AB4986039B1D91E9* ___0_start, int32_t ___1_maxStackSize, const RuntimeMethod* method) ;
// System.Void Internal.Runtime.Augments.RuntimeThread::.ctor(System.Threading.Thread)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeThread__ctor_m3E4B5BFB1292F2E43AE242D46AAD7E5BF3357B86 (RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D* __this, Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___0_t, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::set_IsBackground(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_IsBackground_m45F00BD4C46F9B8A7C46A20A170B22BABB8FBA30 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, bool ___0_value, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Start(System.Object)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_m64E3F27883C3CCCE7209F5D2BD268A33D4C71566 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, RuntimeObject* ___0_parameter, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Sleep(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m71DE163765BF465EC4A0163F2ED4D43143094549 (int32_t ___0_millisecondsTimeout, const RuntimeMethod* method) ;
// System.Boolean System.Threading.Thread::Yield()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_Yield_m6610C7321B94ED0193582455A7606D0EAA705E9E (const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::SpinWait(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_mC14652A66AA1BF72ADC7E0BF702E9F0B8D7B64D7 (int32_t ___0_iterations, 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.Boolean System.SpanHelpers::SequenceEqual(System.Byte&,System.Byte&,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E (uint8_t* ___0_first, uint8_t* ___1_second, uint64_t ___2_length, const RuntimeMethod* method) ;
// System.Int32 System.SpanHelpers::SequenceCompareTo(System.Char&,System.Int32,System.Char&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpanHelpers_SequenceCompareTo_mD219EEDAF772A34D5C68FFBC11A1EDB8C92662A0 (Il2CppChar* ___0_first, int32_t ___1_firstLength, Il2CppChar* ___2_second, int32_t ___3_secondLength, const RuntimeMethod* method) ;
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52 (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
// System.Int32 System.String::Compare(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009 (String_t* ___0_strA, String_t* ___1_strB, int32_t ___2_comparisonType, const RuntimeMethod* method) ;
// System.Void System.String::CheckStringComparison(System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41 (int32_t ___0_comparisonType, 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.Int32 System.String::CompareOrdinalHelper(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinalHelper_m4E24CDC88C4FA94C5038E133148E69951E16EEBB (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method) ;
// System.Int32 System.Globalization.CompareInfo::CompareOrdinalIgnoreCase(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4 (String_t* ___0_strA, int32_t ___1_indexA, int32_t ___2_lengthA, String_t* ___3_strB, int32_t ___4_indexB, int32_t ___5_lengthB, 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.Int32 System.String::CompareOrdinalHelper(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_CompareOrdinalHelper_mD7287520C026662FDDC0BEADFAA38A63A42D8456_inline (String_t* ___0_strA, int32_t ___1_indexA, int32_t ___2_countA, String_t* ___3_strB, int32_t ___4_indexB, int32_t ___5_countB, const RuntimeMethod* method) ;
// T& System.Runtime.InteropServices.MemoryMarshal::GetReference<System.Char>(System.ReadOnlySpan`1<T>)
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.ReadOnlySpan`1<System.Char>::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.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.Int32 System.String::CompareTo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareTo_m32A3DFBEA443A4091053D53825DBB76E6EAFECCF (String_t* __this, String_t* ___0_strB, const RuntimeMethod* method) ;
// System.Boolean System.String::EndsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, 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.Boolean System.String::EqualsHelper(System.String,System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method) ;
// System.Boolean System.String::Equals(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m3354EFE6393BED8DD6E18F69BEA131AAADCC622D (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
// System.Int32 System.String::GetLegacyNonRandomizedHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_GetLegacyNonRandomizedHashCode_m9A0C6441EF2B38DCED9C15D8715625FCF4C84F36 (String_t* __this, 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.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.Void System.String::wstrcpy(System.Char*,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B (Il2CppChar* ___0_dmem, Il2CppChar* ___1_smem, int32_t ___2_charCount, 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.String System.String::FastAllocateString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104 (int32_t ___0_length, const RuntimeMethod* method) ;
// System.Void System.String::FillStringChecked(System.String,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62 (String_t* ___0_dest, int32_t ___1_destPos, String_t* ___2_src, 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.Object System.Array::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042 (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
// System.Void System.ParamsArray::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_m7009FCBF72C245324618CA23BF51BC430A32F872 (ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C* __this, RuntimeObject* ___0_arg0, const RuntimeMethod* method) ;
// System.String System.String::FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192 (RuntimeObject* ___0_provider, String_t* ___1_format, ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C ___2_args, const RuntimeMethod* method) ;
// System.Void System.ParamsArray::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_mC2A3A6438294FA948BFA5FAB16B92B512CD77AEF (ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C* __this, RuntimeObject* ___0_arg0, RuntimeObject* ___1_arg1, const RuntimeMethod* method) ;
// System.Void System.ParamsArray::.ctor(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_mA5536845A414E853711015FD87765D46E0032444 (ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C* __this, RuntimeObject* ___0_arg0, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method) ;
// System.Void System.ParamsArray::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_m1237E599510FB74A8A1D237B0330676EDD161D5E (ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_args, const RuntimeMethod* method) ;
// System.Int32 System.ParamsArray::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParamsArray_get_Length_mB6EAB17F36570CC54B9505BFA2CB4FCAD326AE07 (ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C* __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::AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendFormatHelper_mB721541560403777C9190F76D162C918A9A840D1 (StringBuilder_t* __this, RuntimeObject* ___0_provider, String_t* ___1_format, ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C ___2_args, 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.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.String System.String::Join(System.String,System.String[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_mF400595F57ED22F733823C1007043EA1D546F3AC (String_t* ___0_separator, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, 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.String System.String::JoinCore(System.Char*,System.Int32,System.String[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49 (Il2CppChar* ___0_separator, int32_t ___1_separatorLength, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___2_value, int32_t ___3_startIndex, int32_t ___4_count, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Int32>::.ctor(System.Void*,System.Int32)
inline void Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
{
(( void (*) (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_gshared_inline)(__this, ___0_pointer, ___1_length, method);
}
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::.ctor(System.Span`1<T>)
inline void ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_initialSpan, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B*, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316, const RuntimeMethod*))ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_gshared)(__this, ___0_initialSpan, method);
}
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Append(T)
inline void ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, int32_t ___0_item, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B*, int32_t, const RuntimeMethod*))ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_gshared_inline)(__this, ___0_item, method);
}
// System.Int32 System.Collections.Generic.ValueListBuilder`1<System.Int32>::get_Length()
inline int32_t ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B*, const RuntimeMethod*))ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_gshared_inline)(__this, method);
}
// System.ReadOnlySpan`1<T> System.Collections.Generic.ValueListBuilder`1<System.Int32>::AsSpan()
inline ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method)
{
return (( ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 (*) (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B*, const RuntimeMethod*))ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_gshared)(__this, method);
}
// System.String System.String::ReplaceHelper(System.Int32,System.String,System.ReadOnlySpan`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ReplaceHelper_mBEF426D6843AA1AFFF1C10A1517F1CCC196DA8FE (String_t* __this, int32_t ___0_oldValueLength, String_t* ___1_newValue, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___2_indices, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Dispose()
inline void ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B*, const RuntimeMethod*))ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_gshared_inline)(__this, method);
}
// System.Int32 System.ReadOnlySpan`1<System.Int32>::get_Length()
inline int32_t ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_gshared_inline)(__this, method);
}
// System.Void System.Span`1<System.Char>::.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);
}
// System.ReadOnlySpan`1<System.Char> 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.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32)
inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, const RuntimeMethod* method)
{
return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, int32_t, const RuntimeMethod*))Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_gshared_inline)(__this, ___0_start, method);
}
// System.Void System.ReadOnlySpan`1<System.Char>::CopyTo(System.Span`1<T>)
inline void ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, const RuntimeMethod* method)
{
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_gshared)(__this, ___0_destination, method);
}
// System.ReadOnlySpan`1<System.Char> 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.ReadOnlySpan`1<System.Char> 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.Void System.ReadOnlySpan`1<System.Char>::.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.String[] System.String::SplitInternal(System.ReadOnlySpan`1<System.Char>,System.Int32,System.StringSplitOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separators, int32_t ___1_count, int32_t ___2_options, const RuntimeMethod* method) ;
// System.ReadOnlySpan`1<T> System.ReadOnlySpan`1<System.Char>::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);
}
// T[] System.Array::Empty<System.String>()
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_inline (const RuntimeMethod* method)
{
return (( StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline)(method);
}
// System.Void System.String::MakeSeparatorList(System.ReadOnlySpan`1<System.Char>,System.Collections.Generic.ValueListBuilder`1<System.Int32>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_MakeSeparatorList_mFD6DCAE8C79E61E57BA56E48C6580DC7A141D723 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separators, ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* ___1_sepListBuilder, const RuntimeMethod* method) ;
// System.String[] System.String::SplitKeepEmptyEntries(System.ReadOnlySpan`1<System.Int32>,System.ReadOnlySpan`1<System.Int32>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_SplitKeepEmptyEntries_mC09E09ED2DDB055BF1FD512E0AD3CAA0FBEAEAD5 (String_t* __this, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___0_sepList, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___1_lengthList, int32_t ___2_defaultLength, int32_t ___3_count, const RuntimeMethod* method) ;
// System.String[] System.String::SplitOmitEmptyEntries(System.ReadOnlySpan`1<System.Int32>,System.ReadOnlySpan`1<System.Int32>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_SplitOmitEmptyEntries_m6876A49664AE845F4CBC8591CBA2E765233058B4 (String_t* __this, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___0_sepList, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___1_lengthList, int32_t ___2_defaultLength, int32_t ___3_count, const RuntimeMethod* method) ;
// System.Boolean System.ReadOnlySpan`1<System.Int32>::get_IsEmpty()
inline bool ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282* __this, const RuntimeMethod* method)
{
return (( bool (*) (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282*, const RuntimeMethod*))ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_gshared)(__this, 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.Char::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
// System.Void System.String::InitializeProbabilisticMap(System.UInt32*,System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_InitializeProbabilisticMap_m4DCE6D6A5B38DF9D991C1B5EF46730A10467FA8B (uint32_t* ___0_charMap, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_anyOf, const RuntimeMethod* method) ;
// System.Boolean System.String::IsCharBitSet(System.UInt32*,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E (uint32_t* ___0_charMap, uint8_t ___1_value, const RuntimeMethod* method) ;
// System.Boolean System.MemoryExtensions::Contains(System.ReadOnlySpan`1<System.Char>,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemoryExtensions_Contains_m46A55A415E71C1C3D19C601188EB6A8EE386B911 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_source, Il2CppChar ___1_value, const RuntimeMethod* method) ;
// System.String System.String::InternalSubString(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_InternalSubString_m81B31C2405FA023026DD1F063F44EB3F5F1047C5 (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
// System.String System.String::TrimWhiteSpaceHelper(System.String/TrimType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575 (String_t* __this, int32_t ___0_trimType, const RuntimeMethod* method) ;
// System.String System.String::TrimHelper(System.Char*,System.Int32,System.String/TrimType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimHelper_m3DAC04D0C8870DC7CD961F9D9346CF967318E8AF (String_t* __this, Il2CppChar* ___0_trimChars, int32_t ___1_trimCharsLength, int32_t ___2_trimType, const RuntimeMethod* method) ;
// System.String System.String::CreateTrimmedString(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateTrimmedString_m4A6EAD80C2FB70EFB189DFFBD7B04BE20215393F (String_t* __this, int32_t ___0_start, int32_t ___1_end, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ;
// System.Int32 System.SpanHelpers::IndexOf(System.Char&,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpanHelpers_IndexOf_m1EBE4594F5288D2297A3A8E8E4F365BE4BD211DC (Il2CppChar* ___0_searchSpace, Il2CppChar ___1_value, int32_t ___2_length, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOfAny(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOfAny(System.Char,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mD7A82CC9C4E9485FB9C5448545BF53DAA0A2F0A6 (String_t* __this, Il2CppChar ___0_value1, Il2CppChar ___1_value2, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOfAny(System.Char,System.Char,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mC7BAE5F954A91328A6C2B97DD882C28911D20426 (String_t* __this, Il2CppChar ___0_value1, Il2CppChar ___1_value2, Il2CppChar ___2_value3, int32_t ___3_startIndex, int32_t ___4_count, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOfCharArray(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfCharArray_mE4F4023E9B1E4182D70CCD887C9B101C0FFD155B (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
// System.Boolean System.String::ArrayContains(System.Char,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_ArrayContains_m1F98E7E22F990E9203EFA6637F7879B60DCD932B (Il2CppChar ___0_searchChar, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_anyOf, const RuntimeMethod* method) ;
// System.Void System.String::SetCharBit(System.UInt32*,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_SetCharBit_mEF864CF24F3AFB9402F9E67019D505697EAC9207 (uint32_t* ___0_charMap, uint8_t ___1_value, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, int32_t ___3_comparisonType, const RuntimeMethod* method) ;
// System.Int32 System.Globalization.CompareInfo::IndexOfOrdinal(System.String,System.String,System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_IndexOfOrdinal_m87959AB92C780219806FC97DE8CD47B4F94D822D (CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* __this, String_t* ___0_source, String_t* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, bool ___4_ignoreCase, const RuntimeMethod* method) ;
// System.Int32 System.SpanHelpers::LastIndexOf(System.Char&,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpanHelpers_LastIndexOf_m2BAEB77B63275DFB7D3BAD5FDB9887AD3AD9D507 (Il2CppChar* ___0_searchSpace, Il2CppChar ___1_value, int32_t ___2_length, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOf(System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOfAny(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOfCharArray(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfCharArray_mFB8CA8868C14BED83D9197CA581CB75E7CB497A7 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1 (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, int32_t ___3_comparisonType, const RuntimeMethod* method) ;
// System.Int32 System.Globalization.CompareInfo::LastIndexOfOrdinal(System.String,System.String,System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_LastIndexOfOrdinal_mD8736746151EB1105985AF0D0A67FB1E0AA0BDFF (CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* __this, String_t* ___0_source, String_t* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, bool ___4_ignoreCase, const RuntimeMethod* method) ;
// System.String System.String::CreateStringForSByteConstructor(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateStringForSByteConstructor_mF8630776790DD41E355D21E6439F8556749E9C81 (uint8_t* ___0_pb, int32_t ___1_numBytes, const RuntimeMethod* method) ;
// System.String System.Text.Encoding::GetString(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Encoding_GetString_m42BFF0862341DCD5289A7D75B5D7A22CE9690EAD (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* __this, uint8_t* ___0_bytes, int32_t ___1_byteCount, const RuntimeMethod* method) ;
// System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB17F8269B950960F6CCCDB637AB02D71EE1AA769 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
// System.String System.Text.Encoding::GetString(System.ReadOnlySpan`1<System.Byte>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Encoding_GetString_m6FE2707C33758C7F10750B79FCA7767F4C2CA008 (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_bytes, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Char>()
inline CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline (const RuntimeMethod* method)
{
return (( CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* (*) (const RuntimeMethod*))Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_gshared_inline)(method);
}
// System.Void System.Buffer::Memmove(System.Byte*,System.Byte*,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memmove_mAA31A45BF1B1FA6490F0913B7FB59537767E5EF3 (uint8_t* ___0_dest, uint8_t* ___1_src, uint32_t ___2_len, const RuntimeMethod* method) ;
// 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) ;
// System.Int32 System.IntPtr::get_Size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1FAAA59DA73D7E32BB1AB55DD92A90AFE3251DBE (const RuntimeMethod* method) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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) ;
// 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.String System.Text.Normalization::Normalize(System.String,System.Text.NormalizationForm)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Normalize_m07801D57B053AA3859DF22EEECA3AE7E348FBD30 (String_t* ___0_source, int32_t ___1_normalizationForm, const RuntimeMethod* 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.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_mB203712DD2D0E5DF1CF52F752638F8B94E03E217 (uint8_t* ___0_dest, uint8_t* ___1_src, int32_t ___2_len, bool ___3_useICall, const RuntimeMethod* method) ;
// System.Void System.String::memset(System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memset_m58EAB0FE179659A49D4058197DAC3E1885C7C54F (uint8_t* ___0_dest, int32_t ___1_val, int32_t ___2_len, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.SByte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0 (int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C (Il2CppChar* ___0_ptr, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_m4FC33238E2954A8A959079BCA90B472E163F57EA (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mCCCF4E70864FD0C9518ACF86F7F62675B264B04E (Il2CppChar ___0_c, int32_t ___1_count, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806 (int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method) ;
// System.String System.String::Ctor(System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_m4378644906A85225C908E7CC37E86219CC2F0C86 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowIndexOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowIndexOutOfRangeException_m86F753A24E2765A35546BA6352A7E4F0BB8A66B5 (const RuntimeMethod* 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.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.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.Int32 System.ReadOnlySpan`1<System.Byte>::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.SpanHelpers::IndexOf(System.Byte&,System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpanHelpers_IndexOf_mB37566B16F2F4C7D14E1CD6EA781AC67110E8C4C (uint8_t* ___0_searchSpace, uint8_t ___1_value, int32_t ___2_length, const RuntimeMethod* method) ;
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
// System.Int32 System.Span`1<System.Int32>::get_Length()
inline int32_t Span_1_get_Length_m87AB3C694F2E4802F14D006F21C020816045285F_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*, const RuntimeMethod*))Span_1_get_Length_m87AB3C694F2E4802F14D006F21C020816045285F_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Grow()
inline void ValueListBuilder_1_Grow_m77CD139AE5695E19D15528EDCABC2DBC5232442A (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B*, const RuntimeMethod*))ValueListBuilder_1_Grow_m77CD139AE5695E19D15528EDCABC2DBC5232442A_gshared)(__this, method);
}
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_ConvertErrorPlatformToPal(int32_t);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C uint8_t* DEFAULT_CALL SystemNative_StrErrorR(int32_t, uint8_t*, int32_t);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C void DEFAULT_CALL SystemNative_GetNonCryptographicallySecureRandomBytes(uint8_t*, int32_t);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C intptr_t DEFAULT_CALL SystemNative_OpenDir(char*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_GetReadDirRBufferSize();
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_ReadDirR(intptr_t, uint8_t*, int32_t, DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_CloseDir(intptr_t);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_ReadLink(char*, uint8_t*, int32_t);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_Stat2(char*, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_LStat2(char*, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_CopyFile(void*, void*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C uint32_t DEFAULT_CALL SystemNative_GetEGid();
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C uint32_t DEFAULT_CALL SystemNative_GetEUid();
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_LChflagsCanSetHiddenFlag();
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_Link(char*, char*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_MkDir(char*, int32_t);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_Rename(char*, char*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_RmDir(char*);
#endif
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_Unlink(char*);
#endif
#if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_ConvertErrorPalToPlatform(int32_t);
#endif
#if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_System_INTERNAL
IL2CPP_EXTERN_C int32_t DEFAULT_CALL SystemNative_Symlink(char*, char*);
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Interop::ThrowExceptionForIoErrno(Interop/ErrorInfo,System.String,System.Boolean,System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Interop_ThrowExceptionForIoErrno_mD1F1F0FA4F261F7541137053F29DC244D32DA714 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_errorInfo, String_t* ___1_path, bool ___2_isDirectory, Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* ___3_errorRewriter, const RuntimeMethod* method)
{
{
Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* L_0 = ___3_errorRewriter;
if (!L_0)
{
goto IL_000c;
}
}
{
Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* L_1 = ___3_errorRewriter;
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_2 = ___0_errorInfo;
NullCheck(L_1);
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_3;
L_3 = Func_2_Invoke_m911CDB96474C146DFAFB9E9CDA9CDE8D68BB87AC_inline(L_1, L_2, NULL);
___0_errorInfo = L_3;
}
IL_000c:
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_4 = ___0_errorInfo;
String_t* L_5 = ___1_path;
bool L_6 = ___2_isDirectory;
Exception_t* L_7;
L_7 = Interop_GetExceptionForIoErrno_m701F71EF26E8E84C4DB2278B54D7F89BD522C7E7(L_4, L_5, L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Interop_ThrowExceptionForIoErrno_mD1F1F0FA4F261F7541137053F29DC244D32DA714_RuntimeMethod_var)));
}
}
// System.Int64 Interop::CheckIo(System.Int64,System.String,System.Boolean,System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Interop_CheckIo_mCEB71E59B76B8B3B533398E029C7CC55500FE958 (int64_t ___0_result, String_t* ___1_path, bool ___2_isDirectory, Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* ___3_errorRewriter, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___0_result;
if ((((int64_t)L_0) >= ((int64_t)((int64_t)0))))
{
goto IL_0012;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_1;
L_1 = Sys_GetLastErrorInfo_m1C1BB8341DD84927BD33E6240585E753D4B3572B(NULL);
String_t* L_2 = ___1_path;
bool L_3 = ___2_isDirectory;
Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* L_4 = ___3_errorRewriter;
Interop_ThrowExceptionForIoErrno_mD1F1F0FA4F261F7541137053F29DC244D32DA714(L_1, L_2, L_3, L_4, NULL);
}
IL_0012:
{
int64_t L_5 = ___0_result;
return L_5;
}
}
// System.Int32 Interop::CheckIo(System.Int32,System.String,System.Boolean,System.Func`2<Interop/ErrorInfo,Interop/ErrorInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interop_CheckIo_m728976E4859E2A05F20BC663805C0AD0D080B6B4 (int32_t ___0_result, String_t* ___1_path, bool ___2_isDirectory, Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* ___3_errorRewriter, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_result;
String_t* L_1 = ___1_path;
bool L_2 = ___2_isDirectory;
Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* L_3 = ___3_errorRewriter;
int64_t L_4;
L_4 = Interop_CheckIo_mCEB71E59B76B8B3B533398E029C7CC55500FE958(((int64_t)L_0), L_1, L_2, L_3, NULL);
int32_t L_5 = ___0_result;
return L_5;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C6CF51A587C627F6C6EE34036C6723F4B925EFF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral516E89FB5F1967293F4DB1BE32E381475420AB44);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51F30CFFB908674FE7BC9CBFAE4EFD647D2D3594);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A8643E91A3472B185B02A5F88F56AB678880D65);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9314E51D0364D320B5BB9F10EB1CB0704A3299F7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA8B4A4C4CB6611C6ED82449A0AA123F20839416);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC802F6A28E8FE91CFF56B63DFD0201D59F5E72F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3DA7A392EC73AFA8F12777ABB14CCBC99229BB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE058B51F6E4C46804212A5C9AC795A219B9EFAD7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1FB00E6628A397F7A0AAF615CAC25E7DF12710C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF298420007D4E42F3A228C88928B608D8F69AE57);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF6E5C3F4294DE895EA4E7238168E286295FFD9C4);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0;
L_0 = ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B_inline((&___0_errorInfo), NULL);
V_1 = L_0;
int32_t L_1 = V_1;
if ((((int32_t)L_1) > ((int32_t)((int32_t)65547))))
{
goto IL_004e;
}
}
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) > ((int32_t)((int32_t)65542))))
{
goto IL_0033;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)((int32_t)65538))))
{
goto IL_00dd;
}
}
{
int32_t L_4 = V_1;
if ((((int32_t)L_4) == ((int32_t)((int32_t)65542))))
{
goto IL_012e;
}
}
{
goto IL_0196;
}
IL_0033:
{
int32_t L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)65544))))
{
goto IL_00dd;
}
}
{
int32_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)65547))))
{
goto IL_0160;
}
}
{
goto IL_0196;
}
IL_004e:
{
int32_t L_7 = V_1;
if ((((int32_t)L_7) > ((int32_t)((int32_t)65558))))
{
goto IL_0071;
}
}
{
int32_t L_8 = V_1;
if ((((int32_t)L_8) == ((int32_t)((int32_t)65556))))
{
goto IL_0176;
}
}
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) == ((int32_t)((int32_t)65558))))
{
goto IL_0166;
}
}
{
goto IL_0196;
}
IL_0071:
{
int32_t L_10 = V_1;
if ((((int32_t)L_10) == ((int32_t)((int32_t)65573))))
{
goto IL_010a;
}
}
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) == ((int32_t)((int32_t)65581))))
{
goto IL_0091;
}
}
{
int32_t L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)((int32_t)65602))))
{
goto IL_00dd;
}
}
{
goto IL_0196;
}
IL_0091:
{
bool L_13 = ___2_isDirectory;
if (!L_13)
{
goto IL_00b8;
}
}
{
String_t* L_14 = ___1_path;
bool L_15;
L_15 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_14, NULL);
if (!L_15)
{
goto IL_00a7;
}
}
{
DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF* L_16 = (DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF*)il2cpp_codegen_object_new(DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF_il2cpp_TypeInfo_var);
NullCheck(L_16);
DirectoryNotFoundException__ctor_mA7F098E81D1D163C09BF5E64A34634290B76F235(L_16, _stringLiteral8A8643E91A3472B185B02A5F88F56AB678880D65, NULL);
return L_16;
}
IL_00a7:
{
String_t* L_17 = ___1_path;
String_t* L_18;
L_18 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteralF298420007D4E42F3A228C88928B608D8F69AE57, L_17, NULL);
DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF* L_19 = (DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF*)il2cpp_codegen_object_new(DirectoryNotFoundException_tBE92A20AAC24C3B22DE38973ABE6886FA97419BF_il2cpp_TypeInfo_var);
NullCheck(L_19);
DirectoryNotFoundException__ctor_mA7F098E81D1D163C09BF5E64A34634290B76F235(L_19, L_18, NULL);
return L_19;
}
IL_00b8:
{
String_t* L_20 = ___1_path;
bool L_21;
L_21 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_20, NULL);
if (!L_21)
{
goto IL_00cb;
}
}
{
FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A* L_22 = (FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A*)il2cpp_codegen_object_new(FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A_il2cpp_TypeInfo_var);
NullCheck(L_22);
FileNotFoundException__ctor_mA8C9C93DB8C5B96D6B5E59B2AE07154F265FB1A1(L_22, _stringLiteralAA8B4A4C4CB6611C6ED82449A0AA123F20839416, NULL);
return L_22;
}
IL_00cb:
{
String_t* L_23 = ___1_path;
String_t* L_24;
L_24 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteral3C6CF51A587C627F6C6EE34036C6723F4B925EFF, L_23, NULL);
String_t* L_25 = ___1_path;
FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A* L_26 = (FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A*)il2cpp_codegen_object_new(FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A_il2cpp_TypeInfo_var);
NullCheck(L_26);
FileNotFoundException__ctor_mC4247CABF75A7B484A21790CD7F8EFA8AC101677(L_26, L_24, L_25, NULL);
return L_26;
}
IL_00dd:
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_27 = ___0_errorInfo;
Exception_t* L_28;
L_28 = Interop_GetIOException_m4AEFBBA1E1D56F9C4D69CDD0626267AB8CFC9943(L_27, NULL);
V_0 = L_28;
String_t* L_29 = ___1_path;
bool L_30;
L_30 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_29, NULL);
if (!L_30)
{
goto IL_00f8;
}
}
{
Exception_t* L_31 = V_0;
UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791* L_32 = (UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791*)il2cpp_codegen_object_new(UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var);
NullCheck(L_32);
UnauthorizedAccessException__ctor_m37F82265DB9C7D153840E157E860BBF373E9459F(L_32, _stringLiteral9314E51D0364D320B5BB9F10EB1CB0704A3299F7, L_31, NULL);
return L_32;
}
IL_00f8:
{
String_t* L_33 = ___1_path;
String_t* L_34;
L_34 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteralE058B51F6E4C46804212A5C9AC795A219B9EFAD7, L_33, NULL);
Exception_t* L_35 = V_0;
UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791* L_36 = (UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791*)il2cpp_codegen_object_new(UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var);
NullCheck(L_36);
UnauthorizedAccessException__ctor_m37F82265DB9C7D153840E157E860BBF373E9459F(L_36, L_34, L_35, NULL);
return L_36;
}
IL_010a:
{
String_t* L_37 = ___1_path;
bool L_38;
L_38 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_37, NULL);
if (!L_38)
{
goto IL_011d;
}
}
{
PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5* L_39 = (PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5*)il2cpp_codegen_object_new(PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5_il2cpp_TypeInfo_var);
NullCheck(L_39);
PathTooLongException__ctor_m2E98EE527C0503C02F7305BC57045AB86BB202A7(L_39, _stringLiteralC802F6A28E8FE91CFF56B63DFD0201D59F5E72F8, NULL);
return L_39;
}
IL_011d:
{
String_t* L_40 = ___1_path;
String_t* L_41;
L_41 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteralE1FB00E6628A397F7A0AAF615CAC25E7DF12710C, L_40, NULL);
PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5* L_42 = (PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5*)il2cpp_codegen_object_new(PathTooLongException_tAF7644094546C2BD93B829405B0199BF3B3FC2E5_il2cpp_TypeInfo_var);
NullCheck(L_42);
PathTooLongException__ctor_m2E98EE527C0503C02F7305BC57045AB86BB202A7(L_42, L_41, NULL);
return L_42;
}
IL_012e:
{
String_t* L_43 = ___1_path;
bool L_44;
L_44 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_43, NULL);
if (!L_44)
{
goto IL_0148;
}
}
{
int32_t L_45;
L_45 = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027((&___0_errorInfo), NULL);
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_46 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
NullCheck(L_46);
IOException__ctor_m9748591C355AD9F4C53B456CD8125C26C61B754A(L_46, _stringLiteral51F30CFFB908674FE7BC9CBFAE4EFD647D2D3594, L_45, NULL);
return L_46;
}
IL_0148:
{
String_t* L_47 = ___1_path;
String_t* L_48;
L_48 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteral516E89FB5F1967293F4DB1BE32E381475420AB44, L_47, NULL);
int32_t L_49;
L_49 = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027((&___0_errorInfo), NULL);
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_50 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
NullCheck(L_50);
IOException__ctor_m9748591C355AD9F4C53B456CD8125C26C61B754A(L_50, L_48, L_49, NULL);
return L_50;
}
IL_0160:
{
OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662* L_51 = (OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662*)il2cpp_codegen_object_new(OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var);
NullCheck(L_51);
OperationCanceledException__ctor_m2F34C3B8AEE2AA6C7EB2BB77AE5E0289101293E4(L_51, NULL);
return L_51;
}
IL_0166:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_52 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var);
NullCheck(L_52);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_52, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, _stringLiteralD3DA7A392EC73AFA8F12777ABB14CCBC99229BB9, NULL);
return L_52;
}
IL_0176:
{
String_t* L_53 = ___1_path;
bool L_54;
L_54 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_53, NULL);
if (L_54)
{
goto IL_0196;
}
}
{
String_t* L_55 = ___1_path;
String_t* L_56;
L_56 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(_stringLiteralF6E5C3F4294DE895EA4E7238168E286295FFD9C4, L_55, NULL);
int32_t L_57;
L_57 = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027((&___0_errorInfo), NULL);
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_58 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
NullCheck(L_58);
IOException__ctor_m9748591C355AD9F4C53B456CD8125C26C61B754A(L_58, L_56, L_57, NULL);
return L_58;
}
IL_0196:
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_59 = ___0_errorInfo;
Exception_t* L_60;
L_60 = Interop_GetIOException_m4AEFBBA1E1D56F9C4D69CDD0626267AB8CFC9943(L_59, NULL);
return L_60;
}
}
// System.Exception Interop::GetIOException(Interop/ErrorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Interop_GetIOException_m4AEFBBA1E1D56F9C4D69CDD0626267AB8CFC9943 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_errorInfo, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = ErrorInfo_GetErrorMessage_m8126CB6DD05026B361004182D21965A7AAC89B68((&___0_errorInfo), NULL);
int32_t L_1;
L_1 = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027((&___0_errorInfo), NULL);
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_2 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
NullCheck(L_2);
IOException__ctor_m9748591C355AD9F4C53B456CD8125C26C61B754A(L_2, L_0, L_1, NULL);
return L_2;
}
}
// System.Void Interop::GetRandomBytes(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Interop_GetRandomBytes_mCA054362D47D8B1BB32A7501F26A646DD8CA6947 (uint8_t* ___0_buffer, int32_t ___1_length, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint8_t* L_0 = ___0_buffer;
int32_t L_1 = ___1_length;
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
Sys_GetNonCryptographicallySecureRandomBytes_m6E685E563363C27974F36F253C28B4F19D9FACF9(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 Interop/ErrorInfo::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorInfo__ctor_m69D7F33C0932334C68D390C3249427538AB6BDBA (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, int32_t ___0_errno, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___0_errno;
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = Sys_ConvertErrorPlatformToPal_m1526F9D253055CD6230AD7329163BB4EBA552AAE(L_0, NULL);
__this->____error_0 = L_1;
int32_t L_2 = ___0_errno;
__this->____rawErrno_1 = L_2;
return;
}
}
IL2CPP_EXTERN_C void ErrorInfo__ctor_m69D7F33C0932334C68D390C3249427538AB6BDBA_AdjustorThunk (RuntimeObject* __this, int32_t ___0_errno, const RuntimeMethod* method)
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8*>(__this + _offset);
ErrorInfo__ctor_m69D7F33C0932334C68D390C3249427538AB6BDBA(_thisAdjusted, ___0_errno, method);
}
// System.Void Interop/ErrorInfo::.ctor(Interop/Error)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorInfo__ctor_m5BAA16B076ADF4BC99001F2AB4973313BB53ECBF (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, int32_t ___0_error, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_error;
__this->____error_0 = L_0;
__this->____rawErrno_1 = (-1);
return;
}
}
IL2CPP_EXTERN_C void ErrorInfo__ctor_m5BAA16B076ADF4BC99001F2AB4973313BB53ECBF_AdjustorThunk (RuntimeObject* __this, int32_t ___0_error, const RuntimeMethod* method)
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8*>(__this + _offset);
ErrorInfo__ctor_m5BAA16B076ADF4BC99001F2AB4973313BB53ECBF(_thisAdjusted, ___0_error, method);
}
// Interop/Error Interop/ErrorInfo::get_Error()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____error_0;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8*>(__this + _offset);
int32_t _returnValue;
_returnValue = ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 Interop/ErrorInfo::get_RawErrno()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->____rawErrno_1;
if ((((int32_t)L_0) == ((int32_t)(-1))))
{
goto IL_0010;
}
}
{
int32_t L_1 = __this->____rawErrno_1;
return L_1;
}
IL_0010:
{
int32_t L_2 = __this->____error_0;
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = Sys_ConvertErrorPalToPlatform_m0060542D169E075F73B8224507CAEE5EA3F01626(L_2, NULL);
int32_t L_4 = L_3;
V_0 = L_4;
__this->____rawErrno_1 = L_4;
int32_t L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C int32_t ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8*>(__this + _offset);
int32_t _returnValue;
_returnValue = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027(_thisAdjusted, method);
return _returnValue;
}
// System.String Interop/ErrorInfo::GetErrorMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorInfo_GetErrorMessage_m8126CB6DD05026B361004182D21965A7AAC89B68 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0;
L_0 = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = Sys_StrError_m5773D4515862D09A21D378D4FFCE551E1F86F6BF(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C String_t* ErrorInfo_GetErrorMessage_m8126CB6DD05026B361004182D21965A7AAC89B68_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8*>(__this + _offset);
String_t* _returnValue;
_returnValue = ErrorInfo_GetErrorMessage_m8126CB6DD05026B361004182D21965A7AAC89B68(_thisAdjusted, method);
return _returnValue;
}
// System.String Interop/ErrorInfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorInfo_ToString_mCC02EC6DEB01119DE687B1B1488919C602065C17 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Error_tA96F6BC4A908C7D5F1E1C4A60CE2AC73DCA88D4A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08E7C6EEE80F9AC466CA0F2CDEE7A1AD9CA33809);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0;
L_0 = ErrorInfo_get_RawErrno_m1B6C0E156EF3B567945C1389B2B111C1A6FEB027(__this, NULL);
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
int32_t L_3;
L_3 = ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B_inline(__this, NULL);
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(Error_tA96F6BC4A908C7D5F1E1C4A60CE2AC73DCA88D4A_il2cpp_TypeInfo_var, &L_4);
String_t* L_6;
L_6 = ErrorInfo_GetErrorMessage_m8126CB6DD05026B361004182D21965A7AAC89B68(__this, NULL);
String_t* L_7;
L_7 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(_stringLiteral08E7C6EEE80F9AC466CA0F2CDEE7A1AD9CA33809, L_2, L_5, L_6, NULL);
return L_7;
}
}
IL2CPP_EXTERN_C String_t* ErrorInfo_ToString_mCC02EC6DEB01119DE687B1B1488919C602065C17_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8*>(__this + _offset);
String_t* _returnValue;
_returnValue = ErrorInfo_ToString_mCC02EC6DEB01119DE687B1B1488919C602065C17(_thisAdjusted, 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
// Interop/ErrorInfo Interop/Sys::GetLastErrorInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Sys_GetLastErrorInfo_m1C1BB8341DD84927BD33E6240585E753D4B3572B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
int32_t L_0;
L_0 = Marshal_GetLastWin32Error_mCD7EBA7503BF36F46DB58D98E96101FB67684379(NULL);
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_1;
memset((&L_1), 0, sizeof(L_1));
ErrorInfo__ctor_m69D7F33C0932334C68D390C3249427538AB6BDBA((&L_1), L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String Interop/Sys::StrError(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Sys_StrError_m5773D4515862D09A21D378D4FFCE551E1F86F6BF (int32_t ___0_platformErrno, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
uint8_t* V_2 = NULL;
{
V_0 = ((int32_t)1024);
int32_t L_0 = V_0;
uintptr_t L_1 = ((uintptr_t)L_0);
int8_t* L_2 = (int8_t*) (L_1 ? alloca(L_1) : NULL);
memset(L_2, 0, L_1);
V_1 = (uint8_t*)(L_2);
int32_t L_3 = ___0_platformErrno;
uint8_t* L_4 = V_1;
int32_t L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
uint8_t* L_6;
L_6 = Sys_StrErrorR_m75F4B015F3633733A51DDF15F716AE13BD72DC07(L_3, L_4, L_5, NULL);
V_2 = L_6;
uint8_t* L_7 = V_2;
if ((!(((uintptr_t)L_7) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_001b;
}
}
{
uint8_t* L_8 = V_1;
V_2 = L_8;
}
IL_001b:
{
uint8_t* L_9 = V_2;
intptr_t L_10;
L_10 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_9, NULL);
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
String_t* L_11;
L_11 = Marshal_PtrToStringAnsi_m8DF88D9F22FCF791C538A36C9233B3882F579B4A(L_10, NULL);
return L_11;
}
}
// Interop/Error Interop/Sys::ConvertErrorPlatformToPal(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ConvertErrorPlatformToPal_m1526F9D253055CD6230AD7329163BB4EBA552AAE (int32_t ___0_platformErrno, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (int32_t);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_ConvertErrorPlatformToPal)(___0_platformErrno);
return returnValue;
}
// System.Int32 Interop/Sys::ConvertErrorPalToPlatform(Interop/Error)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ConvertErrorPalToPlatform_m0060542D169E075F73B8224507CAEE5EA3F01626 (int32_t ___0_error, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (int32_t);
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
static PInvokeFunc il2cppPInvokeFunc;
if (il2cppPInvokeFunc == NULL)
{
int parameterSize = sizeof(int32_t);
il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("System.Native"), "SystemNative_ConvertErrorPalToPlatform", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false);
IL2CPP_ASSERT(il2cppPInvokeFunc != NULL);
}
#endif
// Native function invocation
#if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_System_INTERNAL
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_ConvertErrorPalToPlatform)(___0_error);
#else
int32_t returnValue = il2cppPInvokeFunc(___0_error);
#endif
return returnValue;
}
// System.Byte* Interop/Sys::StrErrorR(System.Int32,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* Sys_StrErrorR_m75F4B015F3633733A51DDF15F716AE13BD72DC07 (int32_t ___0_platformErrno, uint8_t* ___1_buffer, int32_t ___2_bufferSize, const RuntimeMethod* method)
{
typedef uint8_t* (DEFAULT_CALL *PInvokeFunc) (int32_t, uint8_t*, int32_t);
// Native function invocation
uint8_t* returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_StrErrorR)(___0_platformErrno, ___1_buffer, ___2_bufferSize);
return returnValue;
}
// System.Void Interop/Sys::GetNonCryptographicallySecureRandomBytes(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sys_GetNonCryptographicallySecureRandomBytes_m6E685E563363C27974F36F253C28B4F19D9FACF9 (uint8_t* ___0_buffer, int32_t ___1_length, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc) (uint8_t*, int32_t);
// Native function invocation
reinterpret_cast<PInvokeFunc>(SystemNative_GetNonCryptographicallySecureRandomBytes)(___0_buffer, ___1_length);
}
// 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)
{
typedef intptr_t (DEFAULT_CALL *PInvokeFunc) (char*);
// Marshaling of parameter '___0_path' to native representation
char* ____0_path_marshaled = NULL;
____0_path_marshaled = il2cpp_codegen_marshal_string(___0_path);
// Native function invocation
intptr_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_OpenDir)(____0_path_marshaled);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_path' native representation
il2cpp_codegen_marshal_free(____0_path_marshaled);
____0_path_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::GetReadDirRBufferSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_GetReadDirRBufferSize_m43BFD2BC9EB308361321A3EB229F557ED5320C4E (const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) ();
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_GetReadDirRBufferSize)();
return returnValue;
}
// 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)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (intptr_t, uint8_t*, int32_t, DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2*);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_ReadDirR)(___0_dir, ___1_buffer, ___2_bufferSize, ___3_outputEntry);
return returnValue;
}
// 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)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (intptr_t);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_CloseDir)(___0_dir);
il2cpp_codegen_marshal_store_last_error();
return returnValue;
}
// System.Int32 Interop/Sys::ReadLink(System.String,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ReadLink_mC85620C48F33C828AB0A025498E3388B553C8EAF (String_t* ___0_path, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_buffer, int32_t ___2_bufferSize, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, uint8_t*, int32_t);
// Marshaling of parameter '___0_path' to native representation
char* ____0_path_marshaled = NULL;
____0_path_marshaled = il2cpp_codegen_marshal_string(___0_path);
// Marshaling of parameter '___1_buffer' to native representation
uint8_t* ____1_buffer_marshaled = NULL;
if (___1_buffer != NULL)
{
____1_buffer_marshaled = reinterpret_cast<uint8_t*>((___1_buffer)->GetAddressAtUnchecked(0));
}
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_ReadLink)(____0_path_marshaled, ____1_buffer_marshaled, ___2_bufferSize);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_path' native representation
il2cpp_codegen_marshal_free(____0_path_marshaled);
____0_path_marshaled = NULL;
return returnValue;
}
// 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)
{
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*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
{
V_0 = ((int32_t)256);
}
IL_0006:
{
il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var);
ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_0;
L_0 = ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_inline(ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var);
int32_t L_1 = V_0;
NullCheck(L_0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t >::Invoke(4 /* T[] System.Buffers.ArrayPool`1<System.Byte>::Rent(System.Int32) */, L_0, L_1);
V_1 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003d:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var);
ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_3;
L_3 = ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_inline(ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_RuntimeMethod_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_1;
NullCheck(L_3);
VirtualActionInvoker2< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, bool >::Invoke(5 /* System.Void System.Buffers.ArrayPool`1<System.Byte>::Return(T[],System.Boolean) */, L_3, L_4, (bool)0);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
String_t* L_5 = ___0_path;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = V_1;
NullCheck(L_7);
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = Sys_ReadLink_mC85620C48F33C828AB0A025498E3388B553C8EAF(L_5, L_6, ((int32_t)(((RuntimeArray*)L_7)->max_length)), NULL);
V_2 = L_8;
int32_t L_9 = V_2;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0025_1;
}
}
{
V_3 = (String_t*)NULL;
goto IL_0050;
}
IL_0025_1:
{
int32_t L_10 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_1;
NullCheck(L_11);
if ((((int32_t)L_10) >= ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))
{
goto IL_003b_1;
}
}
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
L_12 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = V_1;
int32_t L_14 = V_2;
NullCheck(L_12);
String_t* L_15;
L_15 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_12, L_13, 0, L_14);
V_3 = L_15;
goto IL_0050;
}
IL_003b_1:
{
goto IL_004a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_004a:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_multiply(L_16, 2));
goto IL_0006;
}
IL_0050:
{
String_t* L_17 = V_3;
return L_17;
}
}
// 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)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2*);
// Marshaling of parameter '___0_path' to native representation
char* ____0_path_marshaled = NULL;
____0_path_marshaled = il2cpp_codegen_marshal_string(___0_path);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_Stat2)(____0_path_marshaled, ___1_output);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_path' native representation
il2cpp_codegen_marshal_free(____0_path_marshaled);
____0_path_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::LStat(System.String,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_LStat_m0CC3605549429D0A6C168B4C4A309970AF480333 (String_t* ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2*);
// Marshaling of parameter '___0_path' to native representation
char* ____0_path_marshaled = NULL;
____0_path_marshaled = il2cpp_codegen_marshal_string(___0_path);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_LStat2)(____0_path_marshaled, ___1_output);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_path' native representation
il2cpp_codegen_marshal_free(____0_path_marshaled);
____0_path_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::Symlink(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Symlink_mC157FE093FCA98F21ECE96782D5EBBC3ECD69A06 (String_t* ___0_target, String_t* ___1_linkPath, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, char*);
#if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_System_INTERNAL
static PInvokeFunc il2cppPInvokeFunc;
if (il2cppPInvokeFunc == NULL)
{
int parameterSize = sizeof(char*) + sizeof(char*);
il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("System.Native"), "SystemNative_Symlink", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false);
IL2CPP_ASSERT(il2cppPInvokeFunc != NULL);
}
#endif
// Marshaling of parameter '___0_target' to native representation
char* ____0_target_marshaled = NULL;
____0_target_marshaled = il2cpp_codegen_marshal_string(___0_target);
// Marshaling of parameter '___1_linkPath' to native representation
char* ____1_linkPath_marshaled = NULL;
____1_linkPath_marshaled = il2cpp_codegen_marshal_string(___1_linkPath);
// Native function invocation
#if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_System_INTERNAL
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_Symlink)(____0_target_marshaled, ____1_linkPath_marshaled);
#else
int32_t returnValue = il2cppPInvokeFunc(____0_target_marshaled, ____1_linkPath_marshaled);
#endif
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_target' native representation
il2cpp_codegen_marshal_free(____0_target_marshaled);
____0_target_marshaled = NULL;
// Marshaling cleanup of parameter '___1_linkPath' native representation
il2cpp_codegen_marshal_free(____1_linkPath_marshaled);
____1_linkPath_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::CopyFile(Microsoft.Win32.SafeHandles.SafeFileHandle,Microsoft.Win32.SafeHandles.SafeFileHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_CopyFile_m2BBE494E63EEE4C4CA6B9721F5B7EBE6E81AAAA5 (SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___0_source, SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___1_destination, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (void*, void*);
// Marshaling of parameter '___0_source' to native representation
void* ____0_source_marshaled = NULL;
if (___0_source == NULL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_null_exception("source"), NULL);
bool ___safeHandle_reference_incremented_for____0_source = false;
SafeHandle_DangerousAddRef_m9FA46208A92D8B33059B8E8712F49AE45BB5E922(___0_source, (&___safeHandle_reference_incremented_for____0_source), NULL);
____0_source_marshaled = reinterpret_cast<void*>((___0_source)->___handle_0);
// Marshaling of parameter '___1_destination' to native representation
void* ____1_destination_marshaled = NULL;
if (___1_destination == NULL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_null_exception("destination"), NULL);
bool ___safeHandle_reference_incremented_for____1_destination = false;
SafeHandle_DangerousAddRef_m9FA46208A92D8B33059B8E8712F49AE45BB5E922(___1_destination, (&___safeHandle_reference_incremented_for____1_destination), NULL);
____1_destination_marshaled = reinterpret_cast<void*>((___1_destination)->___handle_0);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_CopyFile)(____0_source_marshaled, ____1_destination_marshaled);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_source' native representation
if (___safeHandle_reference_incremented_for____0_source)
{
SafeHandle_DangerousRelease_m30A8B4E5BEA935C8925BC2115CD0AD13B937953E(___0_source, NULL);
}
// Marshaling cleanup of parameter '___1_destination' native representation
if (___safeHandle_reference_incremented_for____1_destination)
{
SafeHandle_DangerousRelease_m30A8B4E5BEA935C8925BC2115CD0AD13B937953E(___1_destination, NULL);
}
return returnValue;
}
// System.UInt32 Interop/Sys::GetEGid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sys_GetEGid_m3CC143731AC972DB0889EE1F4E7D0F8A1C11ED06 (const RuntimeMethod* method)
{
typedef uint32_t (DEFAULT_CALL *PInvokeFunc) ();
// Native function invocation
uint32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_GetEGid)();
return returnValue;
}
// System.UInt32 Interop/Sys::GetEUid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sys_GetEUid_mE5EDB029C9CD81EF3AB026AFBA509FDDBA02A9AA (const RuntimeMethod* method)
{
typedef uint32_t (DEFAULT_CALL *PInvokeFunc) ();
// Native function invocation
uint32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_GetEUid)();
return returnValue;
}
// System.Int32 Interop/Sys::LChflagsCanSetHiddenFlag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_LChflagsCanSetHiddenFlag_mF927D75AA5A0EBF295A07FC40BECF267041D6F6B (const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) ();
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_LChflagsCanSetHiddenFlag)();
return returnValue;
}
// System.Int32 Interop/Sys::Link(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Link_m1ABE7876057F533DA5837BB69F5864985911BE33 (String_t* ___0_source, String_t* ___1_link, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, char*);
// Marshaling of parameter '___0_source' to native representation
char* ____0_source_marshaled = NULL;
____0_source_marshaled = il2cpp_codegen_marshal_string(___0_source);
// Marshaling of parameter '___1_link' to native representation
char* ____1_link_marshaled = NULL;
____1_link_marshaled = il2cpp_codegen_marshal_string(___1_link);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_Link)(____0_source_marshaled, ____1_link_marshaled);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_source' native representation
il2cpp_codegen_marshal_free(____0_source_marshaled);
____0_source_marshaled = NULL;
// Marshaling cleanup of parameter '___1_link' native representation
il2cpp_codegen_marshal_free(____1_link_marshaled);
____1_link_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::MkDir(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_MkDir_m54A331C73E144CC723F5583CF6B1CCCEABEA8E30 (String_t* ___0_path, int32_t ___1_mode, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, int32_t);
// Marshaling of parameter '___0_path' to native representation
char* ____0_path_marshaled = NULL;
____0_path_marshaled = il2cpp_codegen_marshal_string(___0_path);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_MkDir)(____0_path_marshaled, ___1_mode);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_path' native representation
il2cpp_codegen_marshal_free(____0_path_marshaled);
____0_path_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::Rename(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Rename_mF38C4FBCF2C68EB495DF9E885139AFA7BF63CC96 (String_t* ___0_oldPath, String_t* ___1_newPath, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, char*);
// Marshaling of parameter '___0_oldPath' to native representation
char* ____0_oldPath_marshaled = NULL;
____0_oldPath_marshaled = il2cpp_codegen_marshal_string(___0_oldPath);
// Marshaling of parameter '___1_newPath' to native representation
char* ____1_newPath_marshaled = NULL;
____1_newPath_marshaled = il2cpp_codegen_marshal_string(___1_newPath);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_Rename)(____0_oldPath_marshaled, ____1_newPath_marshaled);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_oldPath' native representation
il2cpp_codegen_marshal_free(____0_oldPath_marshaled);
____0_oldPath_marshaled = NULL;
// Marshaling cleanup of parameter '___1_newPath' native representation
il2cpp_codegen_marshal_free(____1_newPath_marshaled);
____1_newPath_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::RmDir(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_RmDir_m5F7F7E79C110B8B12D7C8AFF4B2507F766340BF8 (String_t* ___0_path, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*);
// Marshaling of parameter '___0_path' to native representation
char* ____0_path_marshaled = NULL;
____0_path_marshaled = il2cpp_codegen_marshal_string(___0_path);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_RmDir)(____0_path_marshaled);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_path' native representation
il2cpp_codegen_marshal_free(____0_path_marshaled);
____0_path_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::Stat(System.Byte&,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Stat_m03EFE78D57885DC5AB93B289499251C76206C1EA (uint8_t* ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (uint8_t*, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2*);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_Stat2)(___0_path, ___1_output);
il2cpp_codegen_marshal_store_last_error();
return returnValue;
}
// System.Int32 Interop/Sys::Stat(System.ReadOnlySpan`1<System.Char>,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Stat_mDA9A1C47B521435B16BEC38BEE9486FA0DE6C1F6 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, 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__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266 V_1;
memset((&V_1), 0, sizeof(V_1));
{
uintptr_t L_0 = ((uintptr_t)((int32_t)256));
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
memset(L_1, 0, L_0);
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_3;
memset((&L_3), 0, sizeof(L_3));
Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_inline((&L_3), (void*)L_2, ((int32_t)256), /*hidden argument*/Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var);
ValueUtf8Converter__ctor_mC2AD8452442C044B152ABEEF3706892BB66C90D9((&V_1), L_3, NULL);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___0_path;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_5;
L_5 = ValueUtf8Converter_ConvertAndTerminateString_m7525C8D794AB245BB9AD2D64D238B68AC55111A4((&V_1), L_4, NULL);
uint8_t* L_6;
L_6 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_5, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var);
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* L_7 = ___1_output;
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = Sys_Stat_m03EFE78D57885DC5AB93B289499251C76206C1EA(L_6, L_7, NULL);
ValueUtf8Converter_Dispose_m601586EE197FB0A58CD6A0F67C91DC4530B2EAE2((&V_1), NULL);
return L_8;
}
}
// System.Int32 Interop/Sys::LStat(System.Byte&,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_LStat_mA12F131FFC1087EAE105C597E639CF72CFCED146 (uint8_t* ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (uint8_t*, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2*);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_LStat2)(___0_path, ___1_output);
il2cpp_codegen_marshal_store_last_error();
return returnValue;
}
// System.Int32 Interop/Sys::LStat(System.ReadOnlySpan`1<System.Char>,Interop/Sys/FileStatus&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_LStat_m7FE1A19E79A41E257E11C58C5EB17EEF29D2C6D9 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_path, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___1_output, 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__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ValueUtf8Converter_t46AD787999C475AFB40B2CCA5D2B1DA27E9E2266 V_1;
memset((&V_1), 0, sizeof(V_1));
{
uintptr_t L_0 = ((uintptr_t)((int32_t)256));
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
memset(L_1, 0, L_0);
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_3;
memset((&L_3), 0, sizeof(L_3));
Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_inline((&L_3), (void*)L_2, ((int32_t)256), /*hidden argument*/Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var);
ValueUtf8Converter__ctor_mC2AD8452442C044B152ABEEF3706892BB66C90D9((&V_1), L_3, NULL);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___0_path;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_5;
L_5 = ValueUtf8Converter_ConvertAndTerminateString_m7525C8D794AB245BB9AD2D64D238B68AC55111A4((&V_1), L_4, NULL);
uint8_t* L_6;
L_6 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_5, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var);
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* L_7 = ___1_output;
il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = Sys_LStat_mA12F131FFC1087EAE105C597E639CF72CFCED146(L_6, L_7, NULL);
ValueUtf8Converter_Dispose_m601586EE197FB0A58CD6A0F67C91DC4530B2EAE2((&V_1), NULL);
return L_8;
}
}
// System.Int32 Interop/Sys::Unlink(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Unlink_mB9536620C1AD4AD35C2D1EF48C92F0DDBD70E07B (String_t* ___0_pathname, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*);
// Marshaling of parameter '___0_pathname' to native representation
char* ____0_pathname_marshaled = NULL;
____0_pathname_marshaled = il2cpp_codegen_marshal_string(___0_pathname);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(SystemNative_Unlink)(____0_pathname_marshaled);
il2cpp_codegen_marshal_store_last_error();
// Marshaling cleanup of parameter '___0_pathname' native representation
il2cpp_codegen_marshal_free(____0_pathname_marshaled);
____0_pathname_marshaled = NULL;
return returnValue;
}
// System.Int32 Interop/Sys::DoubleToString(System.Double,System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_DoubleToString_m4B3FF628467FFFF41146D79621DD80B99EE1623A (double ___0_value, uint8_t* ___1_format, uint8_t* ___2_buffer, int32_t ___3_bufferLength, const RuntimeMethod* method)
{
typedef int32_t (*Sys_DoubleToString_m4B3FF628467FFFF41146D79621DD80B99EE1623A_ftn) (double, uint8_t*, uint8_t*, int32_t);
using namespace il2cpp::icalls;
return ((Sys_DoubleToString_m4B3FF628467FFFF41146D79621DD80B99EE1623A_ftn)mscorlib::Interop::Sys::DoubleToString) (___0_value, ___1_format, ___2_buffer, ___3_bufferLength);
}
// System.Void Interop/Sys::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sys__cctor_m26678645CBA291966E9FCF45BD287AE0CC70ACF2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0;
L_0 = Sys_LChflagsCanSetHiddenFlag_mF927D75AA5A0EBF295A07FC40BECF267041D6F6B(NULL);
((Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_StaticFields*)il2cpp_codegen_static_fields_for(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var))->___CanSetHiddenFlag_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ReadOnlySpan`1<System.Char> Interop/Sys/DirectoryEntry::GetName(System.Span`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996 (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_buffer, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
{
int32_t L_0 = __this->___NameLength_1;
if ((((int32_t)L_0) == ((int32_t)(-1))))
{
goto IL_001c;
}
}
{
uint8_t* L_1 = __this->___Name_0;
int32_t L_2 = __this->___NameLength_1;
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_3;
memset((&L_3), 0, sizeof(L_3));
ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_inline((&L_3), (void*)L_1, L_2, /*hidden argument*/ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var);
G_B3_0 = L_3;
goto IL_003d;
}
IL_001c:
{
uint8_t* L_4 = __this->___Name_0;
uint8_t* L_5 = __this->___Name_0;
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_6;
memset((&L_6), 0, sizeof(L_6));
ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_inline((&L_6), (void*)L_5, ((int32_t)256), /*hidden argument*/ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var);
int32_t L_7;
L_7 = MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_inline(L_6, (uint8_t)0, MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_RuntimeMethod_var);
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_8;
memset((&L_8), 0, sizeof(L_8));
ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_inline((&L_8), (void*)L_4, L_7, /*hidden argument*/ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var);
G_B3_0 = L_8;
}
IL_003d:
{
V_0 = G_B3_0;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_9;
L_9 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_10 = V_0;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_11 = ___0_buffer;
NullCheck(L_9);
int32_t L_12;
L_12 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D >::Invoke(27 /* System.Int32 System.Text.Encoding::GetChars(System.ReadOnlySpan`1<System.Byte>,System.Span`1<System.Char>) */, L_9, L_10, L_11);
V_1 = L_12;
int32_t L_13 = V_1;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_14;
L_14 = Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline((&___0_buffer), 0, L_13, Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15;
L_15 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_14, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
return L_15;
}
}
IL2CPP_EXTERN_C ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_buffer, const RuntimeMethod* method)
{
DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2*>(__this + _offset);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 _returnValue;
_returnValue = DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996(_thisAdjusted, ___0_buffer, 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
#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
// Interop/ErrorInfo InteropErrorExtensions::Info(Interop/Error)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 InteropErrorExtensions_Info_m99607D5428AE4102A1A18B302CEC21F6F18B31D8 (int32_t ___0_error, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_error;
ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_1;
memset((&L_1), 0, sizeof(L_1));
ErrorInfo__ctor_m5BAA16B076ADF4BC99001F2AB4973313BB53ECBF((&L_1), L_0, /*hidden argument*/NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600 (String_t* ___0_msg, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_msg;
return L_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.String SR::GetString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m56640423E54C5F10BFDEF27B7E692A33745EB696 (String_t* ___0_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, 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);
String_t* L_1 = ___0_name;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___1_args;
String_t* L_3;
L_3 = SR_GetString_mC3AF0F4C7566888FD25A74833B83F5A8C6F9D931(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mC3AF0F4C7566888FD25A74833B83F5A8C6F9D931 (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, String_t* ___1_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method)
{
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_culture;
String_t* L_1 = ___1_name;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___2_args;
String_t* L_3;
L_3 = String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.String SR::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m2F0EFCFA5FE3DB6DE89C5823284302D691355AA6 (String_t* ___0_name, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_name;
return L_0;
}
}
// 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)
{
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);
String_t* L_1 = ___0_resourceFormat;
RuntimeObject* L_2 = ___1_p1;
String_t* L_3;
L_3 = String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744(L_0, L_1, L_2, NULL);
return L_3;
}
}
// 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)
{
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);
String_t* L_1 = ___0_resourceFormat;
RuntimeObject* L_2 = ___1_p1;
RuntimeObject* L_3 = ___2_p2;
String_t* L_4;
L_4 = String_Format_m44BF8BF44DC9B67D6CF265A1A2703A6D743F5C56(L_0, L_1, L_2, L_3, NULL);
return L_4;
}
}
// System.String SR::GetResourceString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E (String_t* ___0_str, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_str;
return L_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 Mono.Runtime::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Runtime__cctor_m80565DB59817E9953C7704E0CB34E321C10571D2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_StaticFields*)il2cpp_codegen_static_fields_for(Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_il2cpp_TypeInfo_var))->___dump_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_StaticFields*)il2cpp_codegen_static_fields_for(Runtime_tCE6A44C19FEF6A8D28F17A01934A7989D46E6CAE_il2cpp_TypeInfo_var))->___dump_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 Mono.RuntimeClassHandle::.ctor(Mono.RuntimeStructs/MonoClass*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___0_value, const RuntimeMethod* method)
{
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_0 = ___0_value;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34_AdjustorThunk (RuntimeObject* __this, MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___0_value, const RuntimeMethod* method)
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*>(__this + _offset);
RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34_inline(_thisAdjusted, ___0_value, method);
}
// System.Void Mono.RuntimeClassHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeClassHandle__ctor_m7021F8E7933C8ABC27B2FDF562EF608FBDF0D9C3 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_ptr;
void* L_1;
L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
__this->___value_0 = (MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90*)L_1;
return;
}
}
IL2CPP_EXTERN_C void RuntimeClassHandle__ctor_m7021F8E7933C8ABC27B2FDF562EF608FBDF0D9C3_AdjustorThunk (RuntimeObject* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*>(__this + _offset);
RuntimeClassHandle__ctor_m7021F8E7933C8ABC27B2FDF562EF608FBDF0D9C3(_thisAdjusted, ___0_ptr, method);
}
// Mono.RuntimeStructs/MonoClass* Mono.RuntimeClassHandle::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* RuntimeClassHandle_get_Value_m25D4B9C7BC4BB723CDD408E0F490D8DAB54B5EFB (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, const RuntimeMethod* method)
{
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_EXTERN_C MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* RuntimeClassHandle_get_Value_m25D4B9C7BC4BB723CDD408E0F490D8DAB54B5EFB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*>(__this + _offset);
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* _returnValue;
_returnValue = RuntimeClassHandle_get_Value_m25D4B9C7BC4BB723CDD408E0F490D8DAB54B5EFB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean Mono.RuntimeClassHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeClassHandle_Equals_m7FE8F7C9EE7048C140FCC548CEE30372DE734E05 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___0_obj;
if (!L_0)
{
goto IL_0020;
}
}
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 L_1 = (*(RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*)__this);
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 L_2 = L_1;
RuntimeObject* L_3 = Box(RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72_il2cpp_TypeInfo_var, &L_2);
Type_t* L_4;
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
RuntimeObject* L_5 = ___0_obj;
NullCheck(L_5);
Type_t* L_6;
L_6 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_4, L_6, NULL);
if (!L_7)
{
goto IL_0022;
}
}
IL_0020:
{
return (bool)0;
}
IL_0022:
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_8 = __this->___value_0;
RuntimeObject* L_9 = ___0_obj;
V_0 = ((*(RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*)((RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*)(RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*)UnBox(L_9, RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72_il2cpp_TypeInfo_var))));
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_10;
L_10 = RuntimeClassHandle_get_Value_m25D4B9C7BC4BB723CDD408E0F490D8DAB54B5EFB_inline((&V_0), NULL);
return (bool)((((intptr_t)L_8) == ((intptr_t)L_10))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool RuntimeClassHandle_Equals_m7FE8F7C9EE7048C140FCC548CEE30372DE734E05_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*>(__this + _offset);
bool _returnValue;
_returnValue = RuntimeClassHandle_Equals_m7FE8F7C9EE7048C140FCC548CEE30372DE734E05(_thisAdjusted, ___0_obj, method);
return _returnValue;
}
// System.Int32 Mono.RuntimeClassHandle::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeClassHandle_GetHashCode_m2AD338C1E8108B685A6F95C07CC83FCDC2CBC514 (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_0 = __this->___value_0;
intptr_t L_1;
L_1 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_0, NULL);
V_0 = L_1;
int32_t L_2;
L_2 = IntPtr_GetHashCode_m669B16AD7483C1C396E48F41D9CAC4B719E38F3D((&V_0), NULL);
return L_2;
}
}
IL2CPP_EXTERN_C int32_t RuntimeClassHandle_GetHashCode_m2AD338C1E8108B685A6F95C07CC83FCDC2CBC514_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*>(__this + _offset);
int32_t _returnValue;
_returnValue = RuntimeClassHandle_GetHashCode_m2AD338C1E8108B685A6F95C07CC83FCDC2CBC514(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr Mono.RuntimeClassHandle::GetTypeFromClass(Mono.RuntimeStructs/MonoClass*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeClassHandle_GetTypeFromClass_m58318E74AF6BD916BC0706E930958EB532A0B28D (MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___0_klass, const RuntimeMethod* method)
{
typedef intptr_t (*RuntimeClassHandle_GetTypeFromClass_m58318E74AF6BD916BC0706E930958EB532A0B28D_ftn) (MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90*);
using namespace il2cpp::icalls;
return ((RuntimeClassHandle_GetTypeFromClass_m58318E74AF6BD916BC0706E930958EB532A0B28D_ftn)mscorlib::Mono::RuntimeClassHandle::GetTypeFromClass) (___0_klass);
}
// System.RuntimeTypeHandle Mono.RuntimeClassHandle::GetTypeHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B RuntimeClassHandle_GetTypeHandle_mC2B0186E8B2CAEBA30296C2CE29D96B9894957CD (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, const RuntimeMethod* method)
{
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_0 = __this->___value_0;
intptr_t L_1;
L_1 = RuntimeClassHandle_GetTypeFromClass_m58318E74AF6BD916BC0706E930958EB532A0B28D(L_0, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2;
memset((&L_2), 0, sizeof(L_2));
RuntimeTypeHandle__ctor_m3B7A6EF106E5F7259DA89488C4D23622533C09A8_inline((&L_2), L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B RuntimeClassHandle_GetTypeHandle_mC2B0186E8B2CAEBA30296C2CE29D96B9894957CD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72*>(__this + _offset);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B _returnValue;
_returnValue = RuntimeClassHandle_GetTypeHandle_mC2B0186E8B2CAEBA30296C2CE29D96B9894957CD(_thisAdjusted, 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
// Mono.RuntimeClassHandle Mono.RuntimeRemoteClassHandle::get_ProxyClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 RuntimeRemoteClassHandle_get_ProxyClass_mB696A6AF46F5ACB381B40DC37F92F9DA67625E9B (RuntimeRemoteClassHandle_t47A1D2639335E036FE04C79F1858CF28663F1FDF* __this, const RuntimeMethod* method)
{
{
RemoteClass_t8F343021C09FCE40A298F94523C6E988DD3E3DD0* L_0 = __this->___value_0;
NullCheck(L_0);
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_1 = L_0->___proxy_class_2;
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 L_2;
memset((&L_2), 0, sizeof(L_2));
RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34_inline((&L_2), L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 RuntimeRemoteClassHandle_get_ProxyClass_mB696A6AF46F5ACB381B40DC37F92F9DA67625E9B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeRemoteClassHandle_t47A1D2639335E036FE04C79F1858CF28663F1FDF* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeRemoteClassHandle_t47A1D2639335E036FE04C79F1858CF28663F1FDF*>(__this + _offset);
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 _returnValue;
_returnValue = RuntimeRemoteClassHandle_get_ProxyClass_mB696A6AF46F5ACB381B40DC37F92F9DA67625E9B(_thisAdjusted, 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 Mono.RuntimeGenericParamInfoHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGenericParamInfoHandle__ctor_m635F2C947EEDF45BE0E17E66F06C718AC2D10F4E (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_ptr;
void* L_1;
L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
__this->___value_0 = (GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726*)L_1;
return;
}
}
IL2CPP_EXTERN_C void RuntimeGenericParamInfoHandle__ctor_m635F2C947EEDF45BE0E17E66F06C718AC2D10F4E_AdjustorThunk (RuntimeObject* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B*>(__this + _offset);
RuntimeGenericParamInfoHandle__ctor_m635F2C947EEDF45BE0E17E66F06C718AC2D10F4E(_thisAdjusted, ___0_ptr, method);
}
// System.Type[] Mono.RuntimeGenericParamInfoHandle::get_Constraints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* RuntimeGenericParamInfoHandle_get_Constraints_mE96BF6947E1F6990FB52B0A8219A901FF3A6B7A6 (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method)
{
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0;
L_0 = RuntimeGenericParamInfoHandle_GetConstraints_m1C3E51699D5D9F77FE215BEB00B8A76BC20AA54C(__this, NULL);
return L_0;
}
}
IL2CPP_EXTERN_C TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* RuntimeGenericParamInfoHandle_get_Constraints_mE96BF6947E1F6990FB52B0A8219A901FF3A6B7A6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B*>(__this + _offset);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* _returnValue;
_returnValue = RuntimeGenericParamInfoHandle_get_Constraints_mE96BF6947E1F6990FB52B0A8219A901FF3A6B7A6(_thisAdjusted, method);
return _returnValue;
}
// System.Reflection.GenericParameterAttributes Mono.RuntimeGenericParamInfoHandle::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeGenericParamInfoHandle_get_Attributes_m3CF6E048BFD00D5218DE1E343A3A194BF93E8729 (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method)
{
{
GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726* L_0 = __this->___value_0;
NullCheck(L_0);
uint16_t L_1 = L_0->___flags_2;
return (int32_t)(L_1);
}
}
IL2CPP_EXTERN_C int32_t RuntimeGenericParamInfoHandle_get_Attributes_m3CF6E048BFD00D5218DE1E343A3A194BF93E8729_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B*>(__this + _offset);
int32_t _returnValue;
_returnValue = RuntimeGenericParamInfoHandle_get_Attributes_m3CF6E048BFD00D5218DE1E343A3A194BF93E8729(_thisAdjusted, method);
return _returnValue;
}
// System.Type[] Mono.RuntimeGenericParamInfoHandle::GetConstraints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* RuntimeGenericParamInfoHandle_GetConstraints_m1C3E51699D5D9F77FE215BEB00B8A76BC20AA54C (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
int32_t V_2 = 0;
RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72 V_3;
memset((&V_3), 0, sizeof(V_3));
{
int32_t L_0;
L_0 = RuntimeGenericParamInfoHandle_GetConstraintsCount_mC615FBDA56188D3DB17BC436025177B3214E2A51(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)L_1);
V_1 = L_2;
V_2 = 0;
goto IL_0042;
}
IL_0012:
{
GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726* L_3 = __this->___value_0;
NullCheck(L_3);
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** L_4 = L_3->___constraints_4;
int32_t L_5 = V_2;
uint32_t L_6 = sizeof(MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90*);
RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34_inline((&V_3), (MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90*)(*((intptr_t*)((MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90**)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), (int32_t)L_6)))))), NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = V_1;
int32_t L_8 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9;
L_9 = RuntimeClassHandle_GetTypeHandle_mC2B0186E8B2CAEBA30296C2CE29D96B9894957CD((&V_3), NULL);
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);
ArrayElementTypeCheck (L_7, L_10);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Type_t*)L_10);
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0042:
{
int32_t L_12 = V_2;
int32_t L_13 = V_0;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0012;
}
}
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* RuntimeGenericParamInfoHandle_GetConstraints_m1C3E51699D5D9F77FE215BEB00B8A76BC20AA54C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B*>(__this + _offset);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* _returnValue;
_returnValue = RuntimeGenericParamInfoHandle_GetConstraints_m1C3E51699D5D9F77FE215BEB00B8A76BC20AA54C(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 Mono.RuntimeGenericParamInfoHandle::GetConstraintsCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeGenericParamInfoHandle_GetConstraintsCount_mC615FBDA56188D3DB17BC436025177B3214E2A51 (RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** V_1 = NULL;
{
V_0 = 0;
GenericParamInfo_t21CBDE383378B1B960A986DC192D423946ADE726* L_0 = __this->___value_0;
NullCheck(L_0);
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** L_1 = L_0->___constraints_4;
V_1 = L_1;
goto IL_001d;
}
IL_0010:
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** L_2 = V_1;
uint32_t L_3 = sizeof(MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90*);
V_1 = ((MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90**)il2cpp_codegen_add((intptr_t)L_2, (int32_t)L_3));
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
}
IL_001d:
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** L_5 = V_1;
if ((((intptr_t)L_5) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0028;
}
}
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90** L_6 = V_1;
if ((!(((uintptr_t)(*((intptr_t*)L_6))) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0010;
}
}
IL_0028:
{
int32_t L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C int32_t RuntimeGenericParamInfoHandle_GetConstraintsCount_mC615FBDA56188D3DB17BC436025177B3214E2A51_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGenericParamInfoHandle_tB2D1F49FE251724E14058F948AB148F5782C536B*>(__this + _offset);
int32_t _returnValue;
_returnValue = RuntimeGenericParamInfoHandle_GetConstraintsCount_mC615FBDA56188D3DB17BC436025177B3214E2A51(_thisAdjusted, 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 Mono.RuntimeEventHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeEventHandle__ctor_m9712CDDC8FAB489928A3C5C37D91A79E5C344F78 (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, intptr_t ___0_v, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_v;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void RuntimeEventHandle__ctor_m9712CDDC8FAB489928A3C5C37D91A79E5C344F78_AdjustorThunk (RuntimeObject* __this, intptr_t ___0_v, const RuntimeMethod* method)
{
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*>(__this + _offset);
RuntimeEventHandle__ctor_m9712CDDC8FAB489928A3C5C37D91A79E5C344F78_inline(_thisAdjusted, ___0_v, method);
}
// System.IntPtr Mono.RuntimeEventHandle::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeEventHandle_get_Value_mE84A702C797FF1933824906BE69AE5E3D3304B30 (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_EXTERN_C intptr_t RuntimeEventHandle_get_Value_mE84A702C797FF1933824906BE69AE5E3D3304B30_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*>(__this + _offset);
intptr_t _returnValue;
_returnValue = RuntimeEventHandle_get_Value_mE84A702C797FF1933824906BE69AE5E3D3304B30_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean Mono.RuntimeEventHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeEventHandle_Equals_m1A48EE5D85A84BDF4BE92A04D5203E0C5B1444A2 (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___0_obj;
if (!L_0)
{
goto IL_0020;
}
}
{
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26 L_1 = (*(RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*)__this);
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26 L_2 = L_1;
RuntimeObject* L_3 = Box(RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26_il2cpp_TypeInfo_var, &L_2);
Type_t* L_4;
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
RuntimeObject* L_5 = ___0_obj;
NullCheck(L_5);
Type_t* L_6;
L_6 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_4, L_6, NULL);
if (!L_7)
{
goto IL_0022;
}
}
IL_0020:
{
return (bool)0;
}
IL_0022:
{
intptr_t L_8 = __this->___value_0;
RuntimeObject* L_9 = ___0_obj;
V_0 = ((*(RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*)((RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*)(RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*)UnBox(L_9, RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26_il2cpp_TypeInfo_var))));
intptr_t L_10;
L_10 = RuntimeEventHandle_get_Value_mE84A702C797FF1933824906BE69AE5E3D3304B30_inline((&V_0), NULL);
bool L_11;
L_11 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_8, L_10, NULL);
return L_11;
}
}
IL2CPP_EXTERN_C bool RuntimeEventHandle_Equals_m1A48EE5D85A84BDF4BE92A04D5203E0C5B1444A2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
{
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*>(__this + _offset);
bool _returnValue;
_returnValue = RuntimeEventHandle_Equals_m1A48EE5D85A84BDF4BE92A04D5203E0C5B1444A2(_thisAdjusted, ___0_obj, method);
return _returnValue;
}
// System.Int32 Mono.RuntimeEventHandle::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeEventHandle_GetHashCode_m0F827612114C8976DB1D91AA6FEFAE10876F1CC6 (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, const RuntimeMethod* method)
{
{
intptr_t* L_0 = (&__this->___value_0);
int32_t L_1;
L_1 = IntPtr_GetHashCode_m669B16AD7483C1C396E48F41D9CAC4B719E38F3D(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t RuntimeEventHandle_GetHashCode_m0F827612114C8976DB1D91AA6FEFAE10876F1CC6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26*>(__this + _offset);
int32_t _returnValue;
_returnValue = RuntimeEventHandle_GetHashCode_m0F827612114C8976DB1D91AA6FEFAE10876F1CC6(_thisAdjusted, 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 Mono.RuntimePropertyHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimePropertyHandle__ctor_m0D2C702D16F3F51A9E9AA1AC9E808C82F92E711E (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, intptr_t ___0_v, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_v;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void RuntimePropertyHandle__ctor_m0D2C702D16F3F51A9E9AA1AC9E808C82F92E711E_AdjustorThunk (RuntimeObject* __this, intptr_t ___0_v, const RuntimeMethod* method)
{
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*>(__this + _offset);
RuntimePropertyHandle__ctor_m0D2C702D16F3F51A9E9AA1AC9E808C82F92E711E_inline(_thisAdjusted, ___0_v, method);
}
// System.IntPtr Mono.RuntimePropertyHandle::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimePropertyHandle_get_Value_mDF730CAE1334309B5B59074DCACBC34884C34406 (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_EXTERN_C intptr_t RuntimePropertyHandle_get_Value_mDF730CAE1334309B5B59074DCACBC34884C34406_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*>(__this + _offset);
intptr_t _returnValue;
_returnValue = RuntimePropertyHandle_get_Value_mDF730CAE1334309B5B59074DCACBC34884C34406_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean Mono.RuntimePropertyHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimePropertyHandle_Equals_m73642985E7C7804645C7DC5AD6528D8C467398A3 (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___0_obj;
if (!L_0)
{
goto IL_0020;
}
}
{
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48 L_1 = (*(RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*)__this);
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48 L_2 = L_1;
RuntimeObject* L_3 = Box(RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48_il2cpp_TypeInfo_var, &L_2);
Type_t* L_4;
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
RuntimeObject* L_5 = ___0_obj;
NullCheck(L_5);
Type_t* L_6;
L_6 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_4, L_6, NULL);
if (!L_7)
{
goto IL_0022;
}
}
IL_0020:
{
return (bool)0;
}
IL_0022:
{
intptr_t L_8 = __this->___value_0;
RuntimeObject* L_9 = ___0_obj;
V_0 = ((*(RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*)((RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*)(RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*)UnBox(L_9, RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48_il2cpp_TypeInfo_var))));
intptr_t L_10;
L_10 = RuntimePropertyHandle_get_Value_mDF730CAE1334309B5B59074DCACBC34884C34406_inline((&V_0), NULL);
bool L_11;
L_11 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_8, L_10, NULL);
return L_11;
}
}
IL2CPP_EXTERN_C bool RuntimePropertyHandle_Equals_m73642985E7C7804645C7DC5AD6528D8C467398A3_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
{
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*>(__this + _offset);
bool _returnValue;
_returnValue = RuntimePropertyHandle_Equals_m73642985E7C7804645C7DC5AD6528D8C467398A3(_thisAdjusted, ___0_obj, method);
return _returnValue;
}
// System.Int32 Mono.RuntimePropertyHandle::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimePropertyHandle_GetHashCode_m880542202D105E75C7EF76C31EA48A5761A15B30 (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, const RuntimeMethod* method)
{
{
intptr_t* L_0 = (&__this->___value_0);
int32_t L_1;
L_1 = IntPtr_GetHashCode_m669B16AD7483C1C396E48F41D9CAC4B719E38F3D(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t RuntimePropertyHandle_GetHashCode_m880542202D105E75C7EF76C31EA48A5761A15B30_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48*>(__this + _offset);
int32_t _returnValue;
_returnValue = RuntimePropertyHandle_GetHashCode_m880542202D105E75C7EF76C31EA48A5761A15B30(_thisAdjusted, 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 Mono.RuntimeGPtrArrayHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGPtrArrayHandle__ctor_m696952A5ABC50F0813EE450DCCE1E8117AB8AEED (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_ptr;
void* L_1;
L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
__this->___value_0 = (GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF*)L_1;
return;
}
}
IL2CPP_EXTERN_C void RuntimeGPtrArrayHandle__ctor_m696952A5ABC50F0813EE450DCCE1E8117AB8AEED_AdjustorThunk (RuntimeObject* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328*>(__this + _offset);
RuntimeGPtrArrayHandle__ctor_m696952A5ABC50F0813EE450DCCE1E8117AB8AEED(_thisAdjusted, ___0_ptr, method);
}
// System.Int32 Mono.RuntimeGPtrArrayHandle::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeGPtrArrayHandle_get_Length_mDDE04771772F71BC95A38A7CC1FBB11642B8C502 (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, const RuntimeMethod* method)
{
{
GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF* L_0 = __this->___value_0;
NullCheck(L_0);
int32_t L_1 = L_0->___len_1;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t RuntimeGPtrArrayHandle_get_Length_mDDE04771772F71BC95A38A7CC1FBB11642B8C502_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328*>(__this + _offset);
int32_t _returnValue;
_returnValue = RuntimeGPtrArrayHandle_get_Length_mDDE04771772F71BC95A38A7CC1FBB11642B8C502(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr Mono.RuntimeGPtrArrayHandle::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeGPtrArrayHandle_get_Item_m3B72E2CB5341796FD2EAD42592ED5FA28623F249 (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, int32_t ___0_i, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_i;
intptr_t L_1;
L_1 = RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309(__this, L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C intptr_t RuntimeGPtrArrayHandle_get_Item_m3B72E2CB5341796FD2EAD42592ED5FA28623F249_AdjustorThunk (RuntimeObject* __this, int32_t ___0_i, const RuntimeMethod* method)
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328*>(__this + _offset);
intptr_t _returnValue;
_returnValue = RuntimeGPtrArrayHandle_get_Item_m3B72E2CB5341796FD2EAD42592ED5FA28623F249(_thisAdjusted, ___0_i, method);
return _returnValue;
}
// System.IntPtr Mono.RuntimeGPtrArrayHandle::Lookup(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309 (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* __this, int32_t ___0_i, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_i;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0024;
}
}
{
int32_t L_1 = ___0_i;
int32_t L_2;
L_2 = RuntimeGPtrArrayHandle_get_Length_mDDE04771772F71BC95A38A7CC1FBB11642B8C502(__this, NULL);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0024;
}
}
{
GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF* L_3 = __this->___value_0;
NullCheck(L_3);
intptr_t* L_4 = L_3->___data_0;
int32_t L_5 = ___0_i;
uint32_t L_6 = sizeof(intptr_t);
return ((*(((intptr_t*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), (int32_t)L_6)))))));
}
IL_0024:
{
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_7 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
NullCheck(L_7);
IndexOutOfRangeException__ctor_m270ED9671475CE680EEA8C62A7A43308AE4188EF(L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C intptr_t RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309_AdjustorThunk (RuntimeObject* __this, int32_t ___0_i, const RuntimeMethod* method)
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328*>(__this + _offset);
intptr_t _returnValue;
_returnValue = RuntimeGPtrArrayHandle_Lookup_mB4AD9A1C79DAACB220FEB7C8E51352B384293309(_thisAdjusted, ___0_i, method);
return _returnValue;
}
// System.Void Mono.RuntimeGPtrArrayHandle::GPtrArrayFree(Mono.RuntimeStructs/GPtrArray*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGPtrArrayHandle_GPtrArrayFree_mD9C8A86D185526D672E85D764FB3481FB0661855 (GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF* ___0_value, const RuntimeMethod* method)
{
typedef void (*RuntimeGPtrArrayHandle_GPtrArrayFree_mD9C8A86D185526D672E85D764FB3481FB0661855_ftn) (GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF*);
using namespace il2cpp::icalls;
((RuntimeGPtrArrayHandle_GPtrArrayFree_mD9C8A86D185526D672E85D764FB3481FB0661855_ftn)mscorlib::Mono::RuntimeGPtrArrayHandle::GPtrArrayFree) (___0_value);
}
// System.Void Mono.RuntimeGPtrArrayHandle::DestroyAndFree(Mono.RuntimeGPtrArrayHandle&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeGPtrArrayHandle_DestroyAndFree_mABE1D4D9C803C171AECE76F3CA4293BD274F170B (RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* ___0_h, const RuntimeMethod* method)
{
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* L_0 = ___0_h;
GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF* L_1 = L_0->___value_0;
RuntimeGPtrArrayHandle_GPtrArrayFree_mD9C8A86D185526D672E85D764FB3481FB0661855(L_1, NULL);
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* L_2 = ___0_h;
L_2->___value_0 = (GPtrArray_tDA7DBF233077B6EA96A6E6F670BEB9A77FF0CADF*)((uintptr_t)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.String Mono.RuntimeMarshal::PtrToUtf8String(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RuntimeMarshal_PtrToUtf8String_m276711BAF873D42C86A34FB4D74320EDE5F22841 (intptr_t ___0_ptr, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
int32_t V_1 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
intptr_t L_0 = ___0_ptr;
intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_2;
L_2 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0013;
}
}
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_3;
}
IL_0013:
{
intptr_t L_4 = ___0_ptr;
void* L_5;
L_5 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_4, NULL);
V_0 = (uint8_t*)L_5;
V_1 = 0;
}
try
{// begin try (depth: 1)
{
goto IL_0022_1;
}
IL_001e_1:
{
int32_t L_6 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
}
IL_0022_1:
{
uint8_t* L_7 = V_0;
uint8_t* L_8 = L_7;
V_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, 1));
int32_t L_9 = *((uint8_t*)L_8);
if (L_9)
{
goto IL_001e_1;
}
}
{
goto IL_003d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_002c;
}
throw e;
}
CATCH_002c:
{// begin catch(System.NullReferenceException)
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*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F30587D636DD02AA8802E2D71D364E879582D89)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeMarshal_PtrToUtf8String_m276711BAF873D42C86A34FB4D74320EDE5F22841_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_003d:
{
intptr_t L_11 = ___0_ptr;
void* L_12;
L_12 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_11, NULL);
int32_t L_13 = V_1;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14;
L_14 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
String_t* L_15;
L_15 = String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339(NULL, (int8_t*)L_12, 0, L_13, L_14, NULL);
return L_15;
}
}
// Mono.SafeStringMarshal Mono.RuntimeMarshal::MarshalString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E RuntimeMarshal_MarshalString_mEE271559E4EAA7CF9A86FFE918099C3B8DD0C4EC (String_t* ___0_str, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_str;
SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E L_1;
memset((&L_1), 0, sizeof(L_1));
SafeStringMarshal__ctor_m45953FD7665BA4526596D2D30A9BF2141B037AA8((&L_1), L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 Mono.RuntimeMarshal::DecodeBlobSize(System.IntPtr,System.IntPtr&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeMarshal_DecodeBlobSize_m4987AAFF455BE126536B8EDE3C10E8F2A6D6EAA9 (intptr_t ___0_in_ptr, intptr_t* ___1_out_ptr, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint8_t* V_1 = NULL;
{
intptr_t L_0 = ___0_in_ptr;
void* L_1;
L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
V_1 = (uint8_t*)L_1;
uint8_t* L_2 = V_1;
int32_t L_3 = *((uint8_t*)L_2);
if (((int32_t)(L_3&((int32_t)128))))
{
goto IL_001d;
}
}
{
uint8_t* L_4 = V_1;
int32_t L_5 = *((uint8_t*)L_4);
V_0 = ((int32_t)(L_5&((int32_t)127)));
uint8_t* L_6 = V_1;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 1));
goto IL_0058;
}
IL_001d:
{
uint8_t* L_7 = V_1;
int32_t L_8 = *((uint8_t*)L_7);
if (((int32_t)(L_8&((int32_t)64))))
{
goto IL_0037;
}
}
{
uint8_t* L_9 = V_1;
int32_t L_10 = *((uint8_t*)L_9);
uint8_t* L_11 = V_1;
int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 1)));
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)(((int32_t)(L_10&((int32_t)63)))<<8)), L_12));
uint8_t* L_13 = V_1;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, 2));
goto IL_0058;
}
IL_0037:
{
uint8_t* L_14 = V_1;
int32_t L_15 = *((uint8_t*)L_14);
uint8_t* L_16 = V_1;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 1)));
uint8_t* L_18 = V_1;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, 2)));
uint8_t* L_20 = V_1;
int32_t L_21 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, 3)));
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)(((int32_t)(L_15&((int32_t)31)))<<((int32_t)24))), ((int32_t)(L_17<<((int32_t)16))))), ((int32_t)(L_19<<8)))), L_21));
uint8_t* L_22 = V_1;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, 4));
}
IL_0058:
{
intptr_t* L_23 = ___1_out_ptr;
uint8_t* L_24 = V_1;
intptr_t L_25;
L_25 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_24, NULL);
*((intptr_t*)L_23) = (intptr_t)L_25;
uint32_t L_26 = V_0;
return L_26;
}
}
// System.Byte[] Mono.RuntimeMarshal::DecodeBlobArray(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* RuntimeMarshal_DecodeBlobArray_mB22C41AFCBA59574C219EB472AF48261B1C0D226 (intptr_t ___0_ptr, 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*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
{
intptr_t L_0 = ___0_ptr;
int32_t L_1;
L_1 = RuntimeMarshal_DecodeBlobSize_m4987AAFF455BE126536B8EDE3C10E8F2A6D6EAA9(L_0, (&V_0), NULL);
V_1 = L_1;
int32_t L_2 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_2);
V_2 = L_3;
intptr_t L_4 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_2;
int32_t L_6 = V_1;
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
Marshal_Copy_mF7402FFDB520EA1B8D1C32B368DBEE4B13F1BE77(L_4, L_5, 0, L_6, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = V_2;
return L_7;
}
}
// System.Int32 Mono.RuntimeMarshal::AsciHexDigitValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeMarshal_AsciHexDigitValue_m8AD69C94F474071D52A5CDFD3C49FE6DCD8EFA8C (int32_t ___0_c, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_c;
if ((((int32_t)L_0) < ((int32_t)((int32_t)48))))
{
goto IL_000f;
}
}
{
int32_t L_1 = ___0_c;
if ((((int32_t)L_1) > ((int32_t)((int32_t)57))))
{
goto IL_000f;
}
}
{
int32_t L_2 = ___0_c;
return ((int32_t)il2cpp_codegen_subtract(L_2, ((int32_t)48)));
}
IL_000f:
{
int32_t L_3 = ___0_c;
if ((((int32_t)L_3) < ((int32_t)((int32_t)97))))
{
goto IL_0021;
}
}
{
int32_t L_4 = ___0_c;
if ((((int32_t)L_4) > ((int32_t)((int32_t)102))))
{
goto IL_0021;
}
}
{
int32_t L_5 = ___0_c;
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_5, ((int32_t)97))), ((int32_t)10)));
}
IL_0021:
{
int32_t L_6 = ___0_c;
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_6, ((int32_t)65))), ((int32_t)10)));
}
}
// System.Void Mono.RuntimeMarshal::FreeAssemblyName(Mono.MonoAssemblyName&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeMarshal_FreeAssemblyName_m435AB1FFE271834A22F9EA36B45BD2534ACF04A0 (MonoAssemblyName_t86B4669C242DAF7EE82C100B54589B0390A8D4FF* ___0_name, bool ___1_freeStruct, const RuntimeMethod* method)
{
typedef void (*RuntimeMarshal_FreeAssemblyName_m435AB1FFE271834A22F9EA36B45BD2534ACF04A0_ftn) (MonoAssemblyName_t86B4669C242DAF7EE82C100B54589B0390A8D4FF*, bool);
using namespace il2cpp::icalls;
((RuntimeMarshal_FreeAssemblyName_m435AB1FFE271834A22F9EA36B45BD2534ACF04A0_ftn)mscorlib::Mono::RuntimeMarshal::FreeAssemblyName) (___0_name, ___1_freeStruct);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.SafeGPtrArrayHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeGPtrArrayHandle__ctor_m8EF7E312EF9558E92061E6A1FEABE43F5AE80579 (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_ptr;
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328 L_1;
memset((&L_1), 0, sizeof(L_1));
RuntimeGPtrArrayHandle__ctor_m696952A5ABC50F0813EE450DCCE1E8117AB8AEED((&L_1), L_0, /*hidden argument*/NULL);
__this->___handle_0 = L_1;
return;
}
}
IL2CPP_EXTERN_C void SafeGPtrArrayHandle__ctor_m8EF7E312EF9558E92061E6A1FEABE43F5AE80579_AdjustorThunk (RuntimeObject* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
{
SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F*>(__this + _offset);
SafeGPtrArrayHandle__ctor_m8EF7E312EF9558E92061E6A1FEABE43F5AE80579(_thisAdjusted, ___0_ptr, method);
}
// System.Void Mono.SafeGPtrArrayHandle::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeGPtrArrayHandle_Dispose_mEC245DEB021C0DC3BA74E80B202049AC198096C8 (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, const RuntimeMethod* method)
{
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* L_0 = (&__this->___handle_0);
RuntimeGPtrArrayHandle_DestroyAndFree_mABE1D4D9C803C171AECE76F3CA4293BD274F170B(L_0, NULL);
return;
}
}
IL2CPP_EXTERN_C void SafeGPtrArrayHandle_Dispose_mEC245DEB021C0DC3BA74E80B202049AC198096C8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F*>(__this + _offset);
SafeGPtrArrayHandle_Dispose_mEC245DEB021C0DC3BA74E80B202049AC198096C8(_thisAdjusted, method);
}
// System.Int32 Mono.SafeGPtrArrayHandle::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SafeGPtrArrayHandle_get_Length_m5F09438379A2372A92EA78B5F1E719D6072BEC6E (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, const RuntimeMethod* method)
{
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* L_0 = (&__this->___handle_0);
int32_t L_1;
L_1 = RuntimeGPtrArrayHandle_get_Length_mDDE04771772F71BC95A38A7CC1FBB11642B8C502(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t SafeGPtrArrayHandle_get_Length_m5F09438379A2372A92EA78B5F1E719D6072BEC6E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F*>(__this + _offset);
int32_t _returnValue;
_returnValue = SafeGPtrArrayHandle_get_Length_m5F09438379A2372A92EA78B5F1E719D6072BEC6E(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr Mono.SafeGPtrArrayHandle::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeGPtrArrayHandle_get_Item_m0417A32AA69F65032DE50E6168189B231CF29BB5 (SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* __this, int32_t ___0_i, const RuntimeMethod* method)
{
{
RuntimeGPtrArrayHandle_t9C6250F1365ABD88E9E40A6AE91C2BC389200328* L_0 = (&__this->___handle_0);
int32_t L_1 = ___0_i;
intptr_t L_2;
L_2 = RuntimeGPtrArrayHandle_get_Item_m3B72E2CB5341796FD2EAD42592ED5FA28623F249(L_0, L_1, NULL);
return L_2;
}
}
IL2CPP_EXTERN_C intptr_t SafeGPtrArrayHandle_get_Item_m0417A32AA69F65032DE50E6168189B231CF29BB5_AdjustorThunk (RuntimeObject* __this, int32_t ___0_i, const RuntimeMethod* method)
{
SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeGPtrArrayHandle_t31BDC8B49810E694FFB8B78F7B4CDC70F952A76F*>(__this + _offset);
intptr_t _returnValue;
_returnValue = SafeGPtrArrayHandle_get_Item_m0417A32AA69F65032DE50E6168189B231CF29BB5(_thisAdjusted, ___0_i, 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
// Conversion methods for marshalling of: Mono.SafeStringMarshal
IL2CPP_EXTERN_C void SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshal_pinvoke(const SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E& unmarshaled, SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_pinvoke& marshaled)
{
marshaled.___str_0 = il2cpp_codegen_marshal_string(unmarshaled.___str_0);
marshaled.___marshaled_string_1 = unmarshaled.___marshaled_string_1;
}
IL2CPP_EXTERN_C void SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshal_pinvoke_back(const SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_pinvoke& marshaled, SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E& unmarshaled)
{
unmarshaled.___str_0 = il2cpp_codegen_marshal_string_result(marshaled.___str_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___str_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___str_0));
intptr_t unmarshaledmarshaled_string_temp_1;
memset((&unmarshaledmarshaled_string_temp_1), 0, sizeof(unmarshaledmarshaled_string_temp_1));
unmarshaledmarshaled_string_temp_1 = marshaled.___marshaled_string_1;
unmarshaled.___marshaled_string_1 = unmarshaledmarshaled_string_temp_1;
}
// Conversion method for clean up from marshalling of: Mono.SafeStringMarshal
IL2CPP_EXTERN_C void SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshal_pinvoke_cleanup(SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___str_0);
marshaled.___str_0 = NULL;
}
// Conversion methods for marshalling of: Mono.SafeStringMarshal
IL2CPP_EXTERN_C void SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshal_com(const SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E& unmarshaled, SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_com& marshaled)
{
marshaled.___str_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___str_0);
marshaled.___marshaled_string_1 = unmarshaled.___marshaled_string_1;
}
IL2CPP_EXTERN_C void SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshal_com_back(const SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_com& marshaled, SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E& unmarshaled)
{
unmarshaled.___str_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___str_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___str_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___str_0));
intptr_t unmarshaledmarshaled_string_temp_1;
memset((&unmarshaledmarshaled_string_temp_1), 0, sizeof(unmarshaledmarshaled_string_temp_1));
unmarshaledmarshaled_string_temp_1 = marshaled.___marshaled_string_1;
unmarshaled.___marshaled_string_1 = unmarshaledmarshaled_string_temp_1;
}
// Conversion method for clean up from marshalling of: Mono.SafeStringMarshal
IL2CPP_EXTERN_C void SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshal_com_cleanup(SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___str_0);
marshaled.___str_0 = NULL;
}
// System.IntPtr Mono.SafeStringMarshal::StringToUtf8_icall(System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_StringToUtf8_icall_m16E73320703B8E340FD31C90C4E5161A33DC5BA6 (String_t** ___0_str, const RuntimeMethod* method)
{
typedef intptr_t (*SafeStringMarshal_StringToUtf8_icall_m16E73320703B8E340FD31C90C4E5161A33DC5BA6_ftn) (String_t**);
using namespace il2cpp::icalls;
return ((SafeStringMarshal_StringToUtf8_icall_m16E73320703B8E340FD31C90C4E5161A33DC5BA6_ftn)mscorlib::Mono::SafeStringMarshal::StringToUtf8_icall) (___0_str);
}
// System.IntPtr Mono.SafeStringMarshal::StringToUtf8(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_StringToUtf8_m5F299E8BDAED80F19E8FFDAC76378B7435430A27 (String_t* ___0_str, const RuntimeMethod* method)
{
{
intptr_t L_0;
L_0 = SafeStringMarshal_StringToUtf8_icall_m16E73320703B8E340FD31C90C4E5161A33DC5BA6((&___0_str), NULL);
return L_0;
}
}
// System.Void Mono.SafeStringMarshal::GFree(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal_GFree_m4C0195D7BE2E671CFA77F40B3349D01D97940E3F (intptr_t ___0_ptr, const RuntimeMethod* method)
{
typedef void (*SafeStringMarshal_GFree_m4C0195D7BE2E671CFA77F40B3349D01D97940E3F_ftn) (intptr_t);
using namespace il2cpp::icalls;
((SafeStringMarshal_GFree_m4C0195D7BE2E671CFA77F40B3349D01D97940E3F_ftn)mscorlib::Mono::SafeStringMarshal::GFree) (___0_ptr);
}
// System.Void Mono.SafeStringMarshal::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal__ctor_m45953FD7665BA4526596D2D30A9BF2141B037AA8 (SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* __this, String_t* ___0_str, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_str;
__this->___str_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___str_0), (void*)L_0);
intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
__this->___marshaled_string_1 = L_1;
return;
}
}
IL2CPP_EXTERN_C void SafeStringMarshal__ctor_m45953FD7665BA4526596D2D30A9BF2141B037AA8_AdjustorThunk (RuntimeObject* __this, String_t* ___0_str, const RuntimeMethod* method)
{
SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E*>(__this + _offset);
SafeStringMarshal__ctor_m45953FD7665BA4526596D2D30A9BF2141B037AA8(_thisAdjusted, ___0_str, method);
}
// System.IntPtr Mono.SafeStringMarshal::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_get_Value_m33E0497DD37A963B09B47083091BE63D90C06CBC (SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = __this->___marshaled_string_1;
intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_2;
L_2 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_0, L_1, NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
String_t* L_3 = __this->___str_0;
if (!L_3)
{
goto IL_002b;
}
}
{
String_t* L_4 = __this->___str_0;
intptr_t L_5;
L_5 = SafeStringMarshal_StringToUtf8_m5F299E8BDAED80F19E8FFDAC76378B7435430A27(L_4, NULL);
__this->___marshaled_string_1 = L_5;
}
IL_002b:
{
intptr_t L_6 = __this->___marshaled_string_1;
return L_6;
}
}
IL2CPP_EXTERN_C intptr_t SafeStringMarshal_get_Value_m33E0497DD37A963B09B47083091BE63D90C06CBC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E*>(__this + _offset);
intptr_t _returnValue;
_returnValue = SafeStringMarshal_get_Value_m33E0497DD37A963B09B47083091BE63D90C06CBC(_thisAdjusted, method);
return _returnValue;
}
// System.Void Mono.SafeStringMarshal::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal_Dispose_m34D77253DF878A33052EEA9771C93252C2B02A0F (SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = __this->___marshaled_string_1;
intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_2;
L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0028;
}
}
{
intptr_t L_3 = __this->___marshaled_string_1;
SafeStringMarshal_GFree_m4C0195D7BE2E671CFA77F40B3349D01D97940E3F(L_3, NULL);
intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
__this->___marshaled_string_1 = L_4;
}
IL_0028:
{
return;
}
}
IL2CPP_EXTERN_C void SafeStringMarshal_Dispose_m34D77253DF878A33052EEA9771C93252C2B02A0F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SafeStringMarshal_t37C5C4D85118BDD5A55E3A20736550CF11C76C2E*>(__this + _offset);
SafeStringMarshal_Dispose_m34D77253DF878A33052EEA9771C93252C2B02A0F(_thisAdjusted, 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 Mono.Xml.SmallXmlParser::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser__ctor_mD1AE9A75F441E331A19E111706DC130F64F7B83A (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_0 = (Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47*)il2cpp_codegen_object_new(Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47_il2cpp_TypeInfo_var);
NullCheck(L_0);
Stack__ctor_m4E3FE5A70C400B82DAB9E38E61A934E4E4DE01A7(L_0, NULL);
__this->___elementNames_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elementNames_2), (void*)L_0);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_1 = (Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47*)il2cpp_codegen_object_new(Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47_il2cpp_TypeInfo_var);
NullCheck(L_1);
Stack__ctor_m4E3FE5A70C400B82DAB9E38E61A934E4E4DE01A7(L_1, NULL);
__this->___xmlSpaces_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlSpaces_3), (void*)L_1);
StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_2);
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_2, ((int32_t)200), NULL);
__this->___buffer_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___buffer_5), (void*)L_2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30));
__this->___nameBuffer_6 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nameBuffer_6), (void*)L_3);
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* L_4 = (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827*)il2cpp_codegen_object_new(AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827_il2cpp_TypeInfo_var);
NullCheck(L_4);
AttrListImpl__ctor_mC0D30F283DD1CC3CF56E56ED29462F421FAF98FC(L_4, NULL);
__this->___attributes_8 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributes_8), (void*)L_4);
__this->___line_9 = 1;
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Exception Mono.Xml.SmallXmlParser::Error(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, String_t* ___0_msg, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_msg;
int32_t L_1 = __this->___line_9;
int32_t L_2 = __this->___column_10;
SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7* L_3 = (SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7*)il2cpp_codegen_object_new(SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7_il2cpp_TypeInfo_var);
NullCheck(L_3);
SmallXmlParserException__ctor_mA574796034F0F01B0A66CCEB66097F0CA729A27B(L_3, L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.Exception Mono.Xml.SmallXmlParser::UnexpectedEndError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* SmallXmlParser_UnexpectedEndError_m49611771ED1216C9DF756338DDDB97B227F81FB9 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA64E96030EBA05DC44D50FF6155C02A2BD6699EF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
{
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_0 = __this->___elementNames_2;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Stack::get_Count() */, L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_1);
V_0 = L_2;
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_3 = __this->___elementNames_2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = V_0;
NullCheck(L_3);
VirtualActionInvoker2< RuntimeArray*, int32_t >::Invoke(13 /* System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32) */, L_3, (RuntimeArray*)L_4, 0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = V_0;
String_t* L_6;
L_6 = String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD(_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB, L_5, NULL);
String_t* L_7;
L_7 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteralA64E96030EBA05DC44D50FF6155C02A2BD6699EF, L_6, NULL);
Exception_t* L_8;
L_8 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, L_7, NULL);
return L_8;
}
}
// System.Boolean Mono.Xml.SmallXmlParser::IsNameChar(System.Char,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsNameChar_mF93D58506A1B3E4407F50B04793005D10899A0BE (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, Il2CppChar ___0_c, bool ___1_start, 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 V_0 = 0;
{
Il2CppChar L_0 = ___0_c;
if ((!(((uint32_t)L_0) <= ((uint32_t)((int32_t)46)))))
{
goto IL_0011;
}
}
{
Il2CppChar L_1 = ___0_c;
if ((((int32_t)L_1) == ((int32_t)((int32_t)45))))
{
goto IL_001d;
}
}
{
Il2CppChar L_2 = ___0_c;
if ((((int32_t)L_2) == ((int32_t)((int32_t)46))))
{
goto IL_001d;
}
}
{
goto IL_0022;
}
IL_0011:
{
Il2CppChar L_3 = ___0_c;
if ((((int32_t)L_3) == ((int32_t)((int32_t)58))))
{
goto IL_001b;
}
}
{
Il2CppChar L_4 = ___0_c;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)95)))))
{
goto IL_0022;
}
}
IL_001b:
{
return (bool)1;
}
IL_001d:
{
bool L_5 = ___1_start;
return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
}
IL_0022:
{
Il2CppChar L_6 = ___0_c;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)256))))
{
goto IL_0056;
}
}
{
Il2CppChar L_7 = ___0_c;
if ((((int32_t)L_7) == ((int32_t)((int32_t)1369))))
{
goto IL_0042;
}
}
{
Il2CppChar L_8 = ___0_c;
if ((((int32_t)L_8) == ((int32_t)((int32_t)1765))))
{
goto IL_0042;
}
}
{
Il2CppChar L_9 = ___0_c;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)1766)))))
{
goto IL_0044;
}
}
IL_0042:
{
return (bool)1;
}
IL_0044:
{
Il2CppChar L_10 = ___0_c;
if ((((int32_t)((int32_t)699)) > ((int32_t)L_10)))
{
goto IL_0056;
}
}
{
Il2CppChar L_11 = ___0_c;
if ((((int32_t)L_11) > ((int32_t)((int32_t)705))))
{
goto IL_0056;
}
}
{
return (bool)1;
}
IL_0056:
{
Il2CppChar L_12 = ___0_c;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
int32_t L_13;
L_13 = Char_GetUnicodeCategory_m77918F2C9C8E103453F2146071739767CA65F6DC(L_12, NULL);
V_0 = L_13;
int32_t L_14 = V_0;
switch (L_14)
{
case 0:
{
goto IL_008d;
}
case 1:
{
goto IL_008d;
}
case 2:
{
goto IL_008d;
}
case 3:
{
goto IL_008f;
}
case 4:
{
goto IL_008d;
}
case 5:
{
goto IL_008f;
}
case 6:
{
goto IL_008f;
}
case 7:
{
goto IL_008f;
}
case 8:
{
goto IL_008f;
}
case 9:
{
goto IL_008d;
}
}
}
{
goto IL_0094;
}
IL_008d:
{
return (bool)1;
}
IL_008f:
{
bool L_15 = ___1_start;
return (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
}
IL_0094:
{
return (bool)0;
}
}
// System.Boolean Mono.Xml.SmallXmlParser::IsWhitespace(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SmallXmlParser_IsWhitespace_m66E95B828FFBD98E1A8C7B53F334F1C746FA7221 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, int32_t ___0_c, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_c;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_0, ((int32_t)9)))) > ((uint32_t)1))))
{
goto IL_0011;
}
}
{
int32_t L_1 = ___0_c;
if ((((int32_t)L_1) == ((int32_t)((int32_t)13))))
{
goto IL_0011;
}
}
{
int32_t L_2 = ___0_c;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)32)))))
{
goto IL_0013;
}
}
IL_0011:
{
return (bool)1;
}
IL_0013:
{
return (bool)0;
}
}
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
{
SmallXmlParser_SkipWhitespaces_mDC28EBFD4733F067C178259ACB05862C60AA7C2F(__this, (bool)0, NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::HandleWhitespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleWhitespaces_mD1E22581F64763EED215226E814A765473E97D7D (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
{
goto IL_0015;
}
IL_0002:
{
StringBuilder_t* L_0 = __this->___buffer_5;
int32_t L_1;
L_1 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
NullCheck(L_0);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_0, ((int32_t)(uint16_t)L_1), NULL);
}
IL_0015:
{
int32_t L_3;
L_3 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
bool L_4;
L_4 = SmallXmlParser_IsWhitespace_m66E95B828FFBD98E1A8C7B53F334F1C746FA7221(__this, L_3, NULL);
if (L_4)
{
goto IL_0002;
}
}
{
int32_t L_5;
L_5 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_5) == ((int32_t)((int32_t)60))))
{
goto IL_003d;
}
}
{
int32_t L_6;
L_6 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_003d;
}
}
{
__this->___isWhitespace_7 = (bool)0;
}
IL_003d:
{
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_SkipWhitespaces_mDC28EBFD4733F067C178259ACB05862C60AA7C2F (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, bool ___0_expected, const RuntimeMethod* method)
{
int32_t V_0 = 0;
IL_0000:
{
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_1, ((int32_t)9)))) > ((uint32_t)1))))
{
goto IL_0018;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)13))))
{
goto IL_0018;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)32)))))
{
goto IL_0027;
}
}
IL_0018:
{
int32_t L_4;
L_4 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
bool L_5 = ___0_expected;
if (!L_5)
{
goto IL_0000;
}
}
{
___0_expected = (bool)0;
goto IL_0000;
}
IL_0027:
{
bool L_6 = ___0_expected;
if (!L_6)
{
goto IL_0036;
}
}
{
Exception_t* L_7;
L_7 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9C597032B7C6DEBC66AD134CE8D12A054D0A25A0)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_SkipWhitespaces_mDC28EBFD4733F067C178259ACB05862C60AA7C2F_RuntimeMethod_var)));
}
IL_0036:
{
return;
}
}
// System.Int32 Mono.Xml.SmallXmlParser::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
{
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = __this->___reader_1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.IO.TextReader::Peek() */, L_0);
return L_1;
}
}
// System.Int32 Mono.Xml.SmallXmlParser::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
int32_t G_B2_0 = 0;
int32_t G_B1_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B3_0 = 0;
{
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = __this->___reader_1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_0);
int32_t L_2 = L_1;
G_B1_0 = L_2;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)10)))))
{
G_B2_0 = L_2;
goto IL_0017;
}
}
{
__this->___resetColumn_11 = (bool)1;
G_B2_0 = G_B1_0;
}
IL_0017:
{
bool L_3 = __this->___resetColumn_11;
G_B3_0 = G_B2_0;
if (!L_3)
{
G_B4_0 = G_B2_0;
goto IL_003c;
}
}
{
int32_t L_4 = __this->___line_9;
__this->___line_9 = ((int32_t)il2cpp_codegen_add(L_4, 1));
__this->___resetColumn_11 = (bool)0;
__this->___column_10 = 1;
return G_B3_0;
}
IL_003c:
{
int32_t L_5 = __this->___column_10;
__this->___column_10 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return G_B4_0;
}
}
// System.Void Mono.Xml.SmallXmlParser::Expect(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, int32_t ___0_c, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
Exception_t* L_2;
L_2 = SmallXmlParser_UnexpectedEndError_m49611771ED1216C9DF756338DDDB97B227F81FB9(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3_RuntimeMethod_var)));
}
IL_0012:
{
int32_t L_3 = V_0;
int32_t L_4 = ___0_c;
if ((((int32_t)L_3) == ((int32_t)L_4)))
{
goto IL_0035;
}
}
{
int32_t L_5 = ___0_c;
Il2CppChar L_6 = ((Il2CppChar)((int32_t)(uint16_t)L_5));
RuntimeObject* L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)), &L_6);
int32_t L_8 = V_0;
Il2CppChar L_9 = ((Il2CppChar)((int32_t)(uint16_t)L_8));
RuntimeObject* L_10 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)), &L_9);
String_t* L_11;
L_11 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral87788F8601C24A0EB26FE8614DF502D90FAE0419)), L_7, L_10, NULL);
Exception_t* L_12;
L_12 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, L_11, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3_RuntimeMethod_var)));
}
IL_0035:
{
return;
}
}
// System.String Mono.Xml.SmallXmlParser::ReadUntil(System.Char,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, Il2CppChar ___0_until, bool ___1_handleReferences, const RuntimeMethod* method)
{
Il2CppChar V_0 = 0x0;
IL_0000:
{
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0010;
}
}
{
Exception_t* L_1;
L_1 = SmallXmlParser_UnexpectedEndError_m49611771ED1216C9DF756338DDDB97B227F81FB9(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64_RuntimeMethod_var)));
}
IL_0010:
{
int32_t L_2;
L_2 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
V_0 = ((int32_t)(uint16_t)L_2);
Il2CppChar L_3 = V_0;
Il2CppChar L_4 = ___0_until;
if ((((int32_t)L_3) == ((int32_t)L_4)))
{
goto IL_003b;
}
}
{
bool L_5 = ___1_handleReferences;
if (!L_5)
{
goto IL_002c;
}
}
{
Il2CppChar L_6 = V_0;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)38)))))
{
goto IL_002c;
}
}
{
SmallXmlParser_ReadReference_m33EEC080ACA6D08AD59AC077D37B8554DCD72E15(__this, NULL);
goto IL_0000;
}
IL_002c:
{
StringBuilder_t* L_7 = __this->___buffer_5;
Il2CppChar L_8 = V_0;
NullCheck(L_7);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_7, L_8, NULL);
goto IL_0000;
}
IL_003b:
{
StringBuilder_t* L_10 = __this->___buffer_5;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10);
StringBuilder_t* L_12 = __this->___buffer_5;
NullCheck(L_12);
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_12, 0, NULL);
return L_11;
}
}
// System.String Mono.Xml.SmallXmlParser::ReadName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL;
{
V_0 = 0;
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_001b;
}
}
{
int32_t L_1;
L_1 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
bool L_2;
L_2 = SmallXmlParser_IsNameChar_mF93D58506A1B3E4407F50B04793005D10899A0BE(__this, ((int32_t)(uint16_t)L_1), (bool)1, NULL);
if (L_2)
{
goto IL_0027;
}
}
IL_001b:
{
Exception_t* L_3;
L_3 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B58855139A125726544ED5CAC3077D928C41B40)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6_RuntimeMethod_var)));
}
IL_0027:
{
int32_t L_4;
L_4 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_1 = L_4;
goto IL_0080;
}
IL_0030:
{
int32_t L_5 = V_1;
V_2 = ((int32_t)(uint16_t)L_5);
Il2CppChar L_6 = V_2;
bool L_7;
L_7 = SmallXmlParser_IsNameChar_mF93D58506A1B3E4407F50B04793005D10899A0BE(__this, L_6, (bool)0, NULL);
if (!L_7)
{
goto IL_0084;
}
}
{
int32_t L_8 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___nameBuffer_6;
NullCheck(L_9);
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))))))
{
goto IL_0065;
}
}
{
int32_t L_10 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_10, 2)));
V_3 = L_11;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = __this->___nameBuffer_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = V_3;
int32_t L_14 = V_0;
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_12, (RuntimeArray*)L_13, L_14, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = V_3;
__this->___nameBuffer_6 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nameBuffer_6), (void*)L_15);
}
IL_0065:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = __this->___nameBuffer_6;
int32_t L_17 = V_0;
int32_t L_18 = L_17;
V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1));
Il2CppChar L_19 = V_2;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (Il2CppChar)L_19);
int32_t L_20;
L_20 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_21;
L_21 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_1 = L_21;
}
IL_0080:
{
int32_t L_22 = V_1;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0030;
}
}
IL_0084:
{
int32_t L_23 = V_0;
if (L_23)
{
goto IL_0093;
}
}
{
Exception_t* L_24;
L_24 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral45156A8D2466CD5E8D665BB78DFE524EEFDD922A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6_RuntimeMethod_var)));
}
IL_0093:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = __this->___nameBuffer_6;
int32_t L_26 = V_0;
String_t* L_27;
L_27 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_25, 0, L_26, NULL);
return L_27;
}
}
// System.Void Mono.Xml.SmallXmlParser::Parse(System.IO.TextReader,Mono.Xml.SmallXmlParser/IContentHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Parse_mDBDCE208B61E525047652DEFB54D2B75695E0CBA (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_input, RuntimeObject* ___1_handler, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___0_input;
__this->___reader_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_0);
RuntimeObject* L_1 = ___1_handler;
__this->___handler_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___handler_0), (void*)L_1);
RuntimeObject* L_2 = ___1_handler;
NullCheck(L_2);
InterfaceActionInvoker1< SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* >::Invoke(0 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartParsing(Mono.Xml.SmallXmlParser) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_2, __this);
goto IL_001d;
}
IL_0017:
{
SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93(__this, NULL);
}
IL_001d:
{
int32_t L_3;
L_3 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0017;
}
}
{
SmallXmlParser_HandleBufferedContent_mA1EAFD112B1289A13B471498995E75F409AFE5EE(__this, NULL);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_4 = __this->___elementNames_2;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Stack::get_Count() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_0056;
}
}
{
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_6 = __this->___elementNames_2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Object System.Collections.Stack::Peek() */, L_6);
String_t* L_8;
L_8 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral03B46450C9E1B2EDEB8A6AAE5F044BF93B41FA5D)), L_7, NULL);
Exception_t* L_9;
L_9 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_Parse_mDBDCE208B61E525047652DEFB54D2B75695E0CBA_RuntimeMethod_var)));
}
IL_0056:
{
RuntimeObject* L_10 = ___1_handler;
NullCheck(L_10);
InterfaceActionInvoker1< SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* >::Invoke(1 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndParsing(Mono.Xml.SmallXmlParser) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_10, __this);
SmallXmlParser_Cleanup_mB4BE7BFA8E2FAB80B40172E98FC750083EED982F(__this, NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::Cleanup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Cleanup_mB4BE7BFA8E2FAB80B40172E98FC750083EED982F (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
{
__this->___line_9 = 1;
__this->___column_10 = 0;
__this->___handler_0 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___handler_0), (void*)(RuntimeObject*)NULL);
__this->___reader_1 = (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)(TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)NULL);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_0 = __this->___elementNames_2;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Collections.Stack::Clear() */, L_0);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_1 = __this->___xmlSpaces_3;
NullCheck(L_1);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Collections.Stack::Clear() */, L_1);
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* L_2 = __this->___attributes_8;
NullCheck(L_2);
AttrListImpl_Clear_m928937942612617F5E5EC6B1849942D831C34E41(L_2, NULL);
StringBuilder_t* L_3 = __this->___buffer_5;
NullCheck(L_3);
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_3, 0, NULL);
__this->___xmlSpace_4 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlSpace_4), (void*)(String_t*)NULL);
__this->___isWhitespace_7 = (bool)0;
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral738F291E53E97C08DAE378C71EF70A60E31AE900);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
bool L_1;
L_1 = SmallXmlParser_IsWhitespace_m66E95B828FFBD98E1A8C7B53F334F1C746FA7221(__this, L_0, NULL);
if (!L_1)
{
goto IL_0028;
}
}
{
StringBuilder_t* L_2 = __this->___buffer_5;
NullCheck(L_2);
int32_t L_3;
L_3 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_2, NULL);
if (L_3)
{
goto IL_0022;
}
}
{
__this->___isWhitespace_7 = (bool)1;
}
IL_0022:
{
SmallXmlParser_HandleWhitespaces_mD1E22581F64763EED215226E814A765473E97D7D(__this, NULL);
}
IL_0028:
{
int32_t L_4;
L_4 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)60)))))
{
goto IL_0285;
}
}
{
int32_t L_5;
L_5 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_6;
L_6 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_3 = L_6;
int32_t L_7 = V_3;
if ((((int32_t)L_7) == ((int32_t)((int32_t)33))))
{
goto IL_005d;
}
}
{
int32_t L_8 = V_3;
if ((((int32_t)L_8) == ((int32_t)((int32_t)47))))
{
goto IL_0145;
}
}
{
int32_t L_9 = V_3;
if ((((int32_t)L_9) == ((int32_t)((int32_t)63))))
{
goto IL_00dd;
}
}
{
goto IL_01ee;
}
IL_005d:
{
int32_t L_10;
L_10 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_11;
L_11 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)91)))))
{
goto IL_00a2;
}
}
{
int32_t L_12;
L_12 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
String_t* L_13;
L_13 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
bool L_14;
L_14 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_13, _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C, NULL);
if (!L_14)
{
goto IL_0093;
}
}
{
Exception_t* L_15;
L_15 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29F4EA55DD5B588CCE1FE1BBB9B911C4B9AFF232)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93_RuntimeMethod_var)));
}
IL_0093:
{
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)91), NULL);
SmallXmlParser_ReadCDATASection_m959663B4552B92B7040E13B23BB395905EC50BA1(__this, NULL);
return;
}
IL_00a2:
{
int32_t L_16;
L_16 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)45)))))
{
goto IL_00b3;
}
}
{
SmallXmlParser_ReadComment_m1D1D6B2E2C6C7C532717D1989E1B5A3CAA998684(__this, NULL);
return;
}
IL_00b3:
{
String_t* L_17;
L_17 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
bool L_18;
L_18 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C)), NULL);
if (!L_18)
{
goto IL_00d1;
}
}
{
Exception_t* L_19;
L_19 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E750D5E6CC6A882337F102C93B3A378286EF1B4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93_RuntimeMethod_var)));
}
IL_00d1:
{
Exception_t* L_20;
L_20 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral383355447EEB1AF0BE901CEADDE1BA8E0858F766)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93_RuntimeMethod_var)));
}
IL_00dd:
{
SmallXmlParser_HandleBufferedContent_mA1EAFD112B1289A13B471498995E75F409AFE5EE(__this, NULL);
int32_t L_21;
L_21 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
String_t* L_22;
L_22 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
V_0 = L_22;
SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311(__this, NULL);
String_t* L_23 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_1 = L_23;
int32_t L_24;
L_24 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_24) == ((int32_t)((int32_t)63))))
{
goto IL_012f;
}
}
IL_0107:
{
String_t* L_25 = V_1;
String_t* L_26;
L_26 = SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64(__this, ((int32_t)63), (bool)0, NULL);
String_t* L_27;
L_27 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_25, L_26, NULL);
V_1 = L_27;
int32_t L_28;
L_28 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_28) == ((int32_t)((int32_t)62))))
{
goto IL_012f;
}
}
{
String_t* L_29 = V_1;
String_t* L_30;
L_30 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_29, _stringLiteral738F291E53E97C08DAE378C71EF70A60E31AE900, NULL);
V_1 = L_30;
goto IL_0107;
}
IL_012f:
{
RuntimeObject* L_31 = __this->___handler_0;
String_t* L_32 = V_0;
String_t* L_33 = V_1;
NullCheck(L_31);
InterfaceActionInvoker2< String_t*, String_t* >::Invoke(4 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnProcessingInstruction(System.String,System.String) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_31, L_32, L_33);
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)62), NULL);
return;
}
IL_0145:
{
SmallXmlParser_HandleBufferedContent_mA1EAFD112B1289A13B471498995E75F409AFE5EE(__this, NULL);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_34 = __this->___elementNames_2;
NullCheck(L_34);
int32_t L_35;
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Stack::get_Count() */, L_34);
if (L_35)
{
goto IL_015f;
}
}
{
Exception_t* L_36;
L_36 = SmallXmlParser_UnexpectedEndError_m49611771ED1216C9DF756338DDDB97B227F81FB9(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93_RuntimeMethod_var)));
}
IL_015f:
{
int32_t L_37;
L_37 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
String_t* L_38;
L_38 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
V_0 = L_38;
SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311(__this, NULL);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_39 = __this->___elementNames_2;
NullCheck(L_39);
RuntimeObject* L_40;
L_40 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(16 /* System.Object System.Collections.Stack::Pop() */, L_39);
V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_40, String_t_il2cpp_TypeInfo_var));
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_41 = __this->___xmlSpaces_3;
NullCheck(L_41);
RuntimeObject* L_42;
L_42 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(16 /* System.Object System.Collections.Stack::Pop() */, L_41);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_43 = __this->___xmlSpaces_3;
NullCheck(L_43);
int32_t L_44;
L_44 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Stack::get_Count() */, L_43);
if ((((int32_t)L_44) <= ((int32_t)0)))
{
goto IL_01b6;
}
}
{
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_45 = __this->___xmlSpaces_3;
NullCheck(L_45);
RuntimeObject* L_46;
L_46 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Object System.Collections.Stack::Peek() */, L_45);
__this->___xmlSpace_4 = ((String_t*)CastclassSealed((RuntimeObject*)L_46, String_t_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlSpace_4), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_46, String_t_il2cpp_TypeInfo_var)));
goto IL_01bd;
}
IL_01b6:
{
__this->___xmlSpace_4 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlSpace_4), (void*)(String_t*)NULL);
}
IL_01bd:
{
String_t* L_47 = V_0;
String_t* L_48 = V_2;
bool L_49;
L_49 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_47, L_48, NULL);
if (!L_49)
{
goto IL_01d9;
}
}
{
String_t* L_50 = V_2;
String_t* L_51 = V_0;
String_t* L_52;
L_52 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral022B0E9B09F68A8CB6BCCB96E171E2D48495A4E9)), L_50, L_51, NULL);
Exception_t* L_53;
L_53 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, L_52, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_53, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadContent_m2EAB63A9A7EA70F4A524AF223B2B699CEE50DD93_RuntimeMethod_var)));
}
IL_01d9:
{
RuntimeObject* L_54 = __this->___handler_0;
String_t* L_55 = V_0;
NullCheck(L_54);
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_54, L_55);
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)62), NULL);
return;
}
IL_01ee:
{
SmallXmlParser_HandleBufferedContent_mA1EAFD112B1289A13B471498995E75F409AFE5EE(__this, NULL);
String_t* L_56;
L_56 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
V_0 = L_56;
goto IL_0209;
}
IL_01fd:
{
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* L_57 = __this->___attributes_8;
SmallXmlParser_ReadAttribute_m68F93A21DBAA757306E4A8469E563A86A5C37E09(__this, L_57, NULL);
}
IL_0209:
{
int32_t L_58;
L_58 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_58) == ((int32_t)((int32_t)62))))
{
goto IL_021d;
}
}
{
int32_t L_59;
L_59 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)47)))))
{
goto IL_01fd;
}
}
IL_021d:
{
RuntimeObject* L_60 = __this->___handler_0;
String_t* L_61 = V_0;
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* L_62 = __this->___attributes_8;
NullCheck(L_60);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(2 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartElement(System.String,Mono.Xml.SmallXmlParser/IAttrList) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_60, L_61, L_62);
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* L_63 = __this->___attributes_8;
NullCheck(L_63);
AttrListImpl_Clear_m928937942612617F5E5EC6B1849942D831C34E41(L_63, NULL);
SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311(__this, NULL);
int32_t L_64;
L_64 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_64) == ((uint32_t)((int32_t)47)))))
{
goto IL_025f;
}
}
{
int32_t L_65;
L_65 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
RuntimeObject* L_66 = __this->___handler_0;
String_t* L_67 = V_0;
NullCheck(L_66);
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_66, L_67);
goto IL_027c;
}
IL_025f:
{
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_68 = __this->___elementNames_2;
String_t* L_69 = V_0;
NullCheck(L_68);
VirtualActionInvoker1< RuntimeObject* >::Invoke(17 /* System.Void System.Collections.Stack::Push(System.Object) */, L_68, L_69);
Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* L_70 = __this->___xmlSpaces_3;
String_t* L_71 = __this->___xmlSpace_4;
NullCheck(L_70);
VirtualActionInvoker1< RuntimeObject* >::Invoke(17 /* System.Void System.Collections.Stack::Push(System.Object) */, L_70, L_71);
}
IL_027c:
{
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)62), NULL);
return;
}
IL_0285:
{
SmallXmlParser_ReadCharacters_m5C6573F4EBB4EE6123BF5A53E9E6989AF024D4A7(__this, NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::HandleBufferedContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_HandleBufferedContent_mA1EAFD112B1289A13B471498995E75F409AFE5EE (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t* L_0 = __this->___buffer_5;
NullCheck(L_0);
int32_t L_1;
L_1 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_0, NULL);
if (L_1)
{
goto IL_000e;
}
}
{
return;
}
IL_000e:
{
bool L_2 = __this->___isWhitespace_7;
if (!L_2)
{
goto IL_002e;
}
}
{
RuntimeObject* L_3 = __this->___handler_0;
StringBuilder_t* L_4 = __this->___buffer_5;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_4);
NullCheck(L_3);
InterfaceActionInvoker1< String_t* >::Invoke(6 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnIgnorableWhitespace(System.String) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_3, L_5);
goto IL_0044;
}
IL_002e:
{
RuntimeObject* L_6 = __this->___handler_0;
StringBuilder_t* L_7 = __this->___buffer_5;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7);
NullCheck(L_6);
InterfaceActionInvoker1< String_t* >::Invoke(5 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnChars(System.String) */, IContentHandler_t42B6158911AAA5AA2E051C8FF7807073422E6C25_il2cpp_TypeInfo_var, L_6, L_8);
}
IL_0044:
{
StringBuilder_t* L_9 = __this->___buffer_5;
NullCheck(L_9);
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_9, 0, NULL);
__this->___isWhitespace_7 = (bool)0;
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadCharacters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCharacters_m5C6573F4EBB4EE6123BF5A53E9E6989AF024D4A7 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
__this->___isWhitespace_7 = (bool)0;
}
IL_0007:
{
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)(-1))))
{
goto IL_001e;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)38))))
{
goto IL_0020;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)60))))
{
goto IL_001f;
}
}
{
goto IL_002f;
}
IL_001e:
{
return;
}
IL_001f:
{
return;
}
IL_0020:
{
int32_t L_4;
L_4 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
SmallXmlParser_ReadReference_m33EEC080ACA6D08AD59AC077D37B8554DCD72E15(__this, NULL);
goto IL_0007;
}
IL_002f:
{
StringBuilder_t* L_5 = __this->___buffer_5;
int32_t L_6;
L_6 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
NullCheck(L_5);
StringBuilder_t* L_7;
L_7 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_5, ((int32_t)(uint16_t)L_6), NULL);
goto IL_0007;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadReference_m33EEC080ACA6D08AD59AC077D37B8554DCD72E15 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)35)))))
{
goto IL_0019;
}
}
{
int32_t L_1;
L_1 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_2;
L_2 = SmallXmlParser_ReadCharacterReference_mBA7ADD269054BF1D6C751B0B7434A70AF5BAD9A7(__this, NULL);
return;
}
IL_0019:
{
String_t* L_3;
L_3 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
V_0 = L_3;
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)59), NULL);
String_t* L_4 = V_0;
bool L_5;
L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62, NULL);
if (L_5)
{
goto IL_006b;
}
}
{
String_t* L_6 = V_0;
bool L_7;
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406, NULL);
if (L_7)
{
goto IL_007a;
}
}
{
String_t* L_8 = V_0;
bool L_9;
L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12, NULL);
if (L_9)
{
goto IL_0089;
}
}
{
String_t* L_10 = V_0;
bool L_11;
L_11 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9, NULL);
if (L_11)
{
goto IL_0098;
}
}
{
String_t* L_12 = V_0;
bool L_13;
L_13 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B, NULL);
if (L_13)
{
goto IL_00a7;
}
}
{
goto IL_00b6;
}
IL_006b:
{
StringBuilder_t* L_14 = __this->___buffer_5;
NullCheck(L_14);
StringBuilder_t* L_15;
L_15 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)38), NULL);
return;
}
IL_007a:
{
StringBuilder_t* L_16 = __this->___buffer_5;
NullCheck(L_16);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_16, ((int32_t)34), NULL);
return;
}
IL_0089:
{
StringBuilder_t* L_18 = __this->___buffer_5;
NullCheck(L_18);
StringBuilder_t* L_19;
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_18, ((int32_t)39), NULL);
return;
}
IL_0098:
{
StringBuilder_t* L_20 = __this->___buffer_5;
NullCheck(L_20);
StringBuilder_t* L_21;
L_21 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_20, ((int32_t)60), NULL);
return;
}
IL_00a7:
{
StringBuilder_t* L_22 = __this->___buffer_5;
NullCheck(L_22);
StringBuilder_t* L_23;
L_23 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_22, ((int32_t)62), NULL);
return;
}
IL_00b6:
{
Exception_t* L_24;
L_24 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral486127276D66E3B1DB7A039EE3BF49F54F065D65)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadReference_m33EEC080ACA6D08AD59AC077D37B8554DCD72E15_RuntimeMethod_var)));
}
}
// System.Int32 Mono.Xml.SmallXmlParser::ReadCharacterReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlParser_ReadCharacterReference_mBA7ADD269054BF1D6C751B0B7434A70AF5BAD9A7 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = 0;
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)120)))))
{
goto IL_007c;
}
}
{
int32_t L_1;
L_1 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_2;
L_2 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_1 = L_2;
goto IL_0076;
}
IL_001c:
{
int32_t L_3 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_3)))
{
goto IL_0034;
}
}
{
int32_t L_4 = V_1;
if ((((int32_t)L_4) > ((int32_t)((int32_t)57))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_0;
int32_t L_6 = V_1;
V_0 = ((int32_t)(L_5<<((int32_t)(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(4, L_6)), ((int32_t)48)))&((int32_t)31)))));
goto IL_0068;
}
IL_0034:
{
int32_t L_7 = V_1;
if ((((int32_t)((int32_t)65)) > ((int32_t)L_7)))
{
goto IL_004f;
}
}
{
int32_t L_8 = V_1;
if ((((int32_t)L_8) > ((int32_t)((int32_t)70))))
{
goto IL_004f;
}
}
{
int32_t L_9 = V_0;
int32_t L_10 = V_1;
V_0 = ((int32_t)(L_9<<((int32_t)(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(4, L_10)), ((int32_t)65))), ((int32_t)10)))&((int32_t)31)))));
goto IL_0068;
}
IL_004f:
{
int32_t L_11 = V_1;
if ((((int32_t)((int32_t)97)) > ((int32_t)L_11)))
{
goto IL_00ad;
}
}
{
int32_t L_12 = V_1;
if ((((int32_t)L_12) > ((int32_t)((int32_t)102))))
{
goto IL_00ad;
}
}
{
int32_t L_13 = V_0;
int32_t L_14 = V_1;
V_0 = ((int32_t)(L_13<<((int32_t)(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(4, L_14)), ((int32_t)97))), ((int32_t)10)))&((int32_t)31)))));
}
IL_0068:
{
int32_t L_15;
L_15 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_16;
L_16 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_1 = L_16;
}
IL_0076:
{
int32_t L_17 = V_1;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_001c;
}
}
{
goto IL_00ad;
}
IL_007c:
{
int32_t L_18;
L_18 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_2 = L_18;
goto IL_00a9;
}
IL_0085:
{
int32_t L_19 = V_2;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_19)))
{
goto IL_00ad;
}
}
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)((int32_t)57))))
{
goto IL_00ad;
}
}
{
int32_t L_21 = V_0;
int32_t L_22 = V_2;
V_0 = ((int32_t)(L_21<<((int32_t)(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(4, L_22)), ((int32_t)48)))&((int32_t)31)))));
int32_t L_23;
L_23 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
int32_t L_24;
L_24 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
V_2 = L_24;
}
IL_00a9:
{
int32_t L_25 = V_2;
if ((((int32_t)L_25) >= ((int32_t)0)))
{
goto IL_0085;
}
}
IL_00ad:
{
int32_t L_26 = V_0;
return L_26;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadAttribute(Mono.Xml.SmallXmlParser/AttrListImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadAttribute_m68F93A21DBAA757306E4A8469E563A86A5C37E09 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* ___0_a, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
{
SmallXmlParser_SkipWhitespaces_mDC28EBFD4733F067C178259ACB05862C60AA7C2F(__this, (bool)1, NULL);
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_0) == ((int32_t)((int32_t)47))))
{
goto IL_001b;
}
}
{
int32_t L_1;
L_1 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)62)))))
{
goto IL_001c;
}
}
IL_001b:
{
return;
}
IL_001c:
{
String_t* L_2;
L_2 = SmallXmlParser_ReadName_mD407A500AC7F1519047ABE64F978064CA4CA87B6(__this, NULL);
V_0 = L_2;
SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311(__this, NULL);
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)61), NULL);
SmallXmlParser_SkipWhitespaces_m47DD8BD20F773B8E7854DBEB1BFF705B61BEF311(__this, NULL);
int32_t L_3;
L_3 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
V_2 = L_3;
int32_t L_4 = V_2;
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
{
goto IL_0054;
}
}
{
int32_t L_5 = V_2;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)39)))))
{
goto IL_0060;
}
}
{
String_t* L_6;
L_6 = SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64(__this, ((int32_t)39), (bool)1, NULL);
V_1 = L_6;
goto IL_006c;
}
IL_0054:
{
String_t* L_7;
L_7 = SmallXmlParser_ReadUntil_mDC60A5A463115D6539E27E81420AD54105242D64(__this, ((int32_t)34), (bool)1, NULL);
V_1 = L_7;
goto IL_006c;
}
IL_0060:
{
Exception_t* L_8;
L_8 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral812C96C792369F4F61D694362CDDAE257125AB04)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadAttribute_m68F93A21DBAA757306E4A8469E563A86A5C37E09_RuntimeMethod_var)));
}
IL_006c:
{
String_t* L_9 = V_0;
bool L_10;
L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, _stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901, NULL);
if (!L_10)
{
goto IL_0080;
}
}
{
String_t* L_11 = V_1;
__this->___xmlSpace_4 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlSpace_4), (void*)L_11);
}
IL_0080:
{
AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* L_12 = ___0_a;
String_t* L_13 = V_0;
String_t* L_14 = V_1;
NullCheck(L_12);
AttrListImpl_Add_m809157F38C92F7E9BB2463BE1F4A35703536B4FD(L_12, L_13, L_14, NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadCDATASection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadCDATASection_m959663B4552B92B7040E13B23BB395905EC50BA1 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = 0;
}
IL_0002:
{
int32_t L_0;
L_0 = SmallXmlParser_Peek_mD173A8049A313FE6B94687AB8AEA3A3E98B5E7DD(__this, NULL);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
Exception_t* L_1;
L_1 = SmallXmlParser_UnexpectedEndError_m49611771ED1216C9DF756338DDDB97B227F81FB9(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadCDATASection_m959663B4552B92B7040E13B23BB395905EC50BA1_RuntimeMethod_var)));
}
IL_0012:
{
int32_t L_2;
L_2 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
V_1 = ((int32_t)(uint16_t)L_2);
Il2CppChar L_3 = V_1;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)93)))))
{
goto IL_0025;
}
}
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
goto IL_0002;
}
IL_0025:
{
Il2CppChar L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)62)))))
{
goto IL_0049;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) <= ((int32_t)1)))
{
goto IL_0049;
}
}
{
int32_t L_7 = V_0;
V_2 = L_7;
goto IL_0044;
}
IL_0032:
{
StringBuilder_t* L_8 = __this->___buffer_5;
NullCheck(L_8);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_8, ((int32_t)93), NULL);
int32_t L_10 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
}
IL_0044:
{
int32_t L_11 = V_2;
if ((((int32_t)L_11) > ((int32_t)2)))
{
goto IL_0032;
}
}
{
return;
}
IL_0049:
{
V_3 = 0;
goto IL_005f;
}
IL_004d:
{
StringBuilder_t* L_12 = __this->___buffer_5;
NullCheck(L_12);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_12, ((int32_t)93), NULL);
int32_t L_14 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_005f:
{
int32_t L_15 = V_3;
int32_t L_16 = V_0;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_004d;
}
}
{
V_0 = 0;
StringBuilder_t* L_17 = __this->___buffer_5;
Il2CppChar L_18 = V_1;
NullCheck(L_17);
StringBuilder_t* L_19;
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_17, L_18, NULL);
goto IL_0002;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadComment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_ReadComment_m1D1D6B2E2C6C7C532717D1989E1B5A3CAA998684 (SmallXmlParser_tA3B98D88B89ED52CBE3AD0637C8912934A4C9DBB* __this, const RuntimeMethod* method)
{
{
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)45), NULL);
SmallXmlParser_Expect_m21286B905098308BBA7DD06FE553C65C059031F3(__this, ((int32_t)45), NULL);
}
IL_0010:
{
int32_t L_0;
L_0 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)45)))))
{
goto IL_0010;
}
}
{
int32_t L_1;
L_1 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)45)))))
{
goto IL_0010;
}
}
{
int32_t L_2;
L_2 = SmallXmlParser_Read_m6FD131F7AC40E5B591FF5473083C69E4CBBA9F0C(__this, NULL);
if ((((int32_t)L_2) == ((int32_t)((int32_t)62))))
{
goto IL_003a;
}
}
{
Exception_t* L_3;
L_3 = SmallXmlParser_Error_m3F640CECF90C00645752DDF52A1DA3536BEC6568(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3FDD093FD971BAD6BFF1C29ED951F8C924AB9E05)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlParser_ReadComment_m1D1D6B2E2C6C7C532717D1989E1B5A3CAA998684_RuntimeMethod_var)));
}
IL_003a:
{
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.String Mono.Xml.SmallXmlParser/AttrListImpl::GetValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttrListImpl_GetValue_m0BBA966FD39D11E25F2DFAD943172AF9D9DDFDED (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, int32_t ___0_i, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___attrValues_1;
int32_t L_1 = ___0_i;
NullCheck(L_0);
String_t* L_2;
L_2 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_0, L_1, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
return L_2;
}
}
// System.String Mono.Xml.SmallXmlParser/AttrListImpl::GetValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttrListImpl_GetValue_m55BCF5C0D3EF063230E5A06869667BF398B30EEF (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, String_t* ___0_name, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
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);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0029;
}
IL_0004:
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___attrNames_0;
int32_t L_1 = V_0;
NullCheck(L_0);
String_t* L_2;
L_2 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_0, L_1, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
String_t* L_3 = ___0_name;
bool L_4;
L_4 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, L_3, NULL);
if (!L_4)
{
goto IL_0025;
}
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = __this->___attrValues_1;
int32_t L_6 = V_0;
NullCheck(L_5);
String_t* L_7;
L_7 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_5, L_6, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
return L_7;
}
IL_0025:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0029:
{
int32_t L_9 = V_0;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_10 = __this->___attrNames_0;
NullCheck(L_10);
int32_t L_11;
L_11 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_10, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0004;
}
}
{
return (String_t*)NULL;
}
}
// System.String[] Mono.Xml.SmallXmlParser/AttrListImpl::get_Names()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* AttrListImpl_get_Names_mDBC3BA14CD60EC2FD45471AB4FE62EC443C4B469 (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___attrNames_0;
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1;
L_1 = List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A(L_0, List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
return L_1;
}
}
// System.String[] Mono.Xml.SmallXmlParser/AttrListImpl::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* AttrListImpl_get_Values_mFC1DA9F412537B574BF86F1592BB0CC253324BC1 (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___attrValues_1;
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1;
L_1 = List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A(L_0, List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
return L_1;
}
}
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Clear_m928937942612617F5E5EC6B1849942D831C34E41 (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___attrNames_0;
NullCheck(L_0);
List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_inline(L_0, List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var);
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = __this->___attrValues_1;
NullCheck(L_1);
List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_inline(L_1, List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Add(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl_Add_m809157F38C92F7E9BB2463BE1F4A35703536B4FD (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___attrNames_0;
String_t* L_1 = ___0_name;
NullCheck(L_0);
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_0, L_1, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = __this->___attrValues_1;
String_t* L_3 = ___1_value;
NullCheck(L_2);
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_2, L_3, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrListImpl__ctor_mC0D30F283DD1CC3CF56E56ED29462F421FAF98FC (AttrListImpl_tA1915AF130F946A711F08B9795F5EF814492D827* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_0, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
__this->___attrNames_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrNames_0), (void*)L_0);
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
NullCheck(L_1);
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_1, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
__this->___attrValues_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrValues_1), (void*)L_1);
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 Mono.Xml.SmallXmlParserException::.ctor(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParserException__ctor_mA574796034F0F01B0A66CCEB66097F0CA729A27B (SmallXmlParserException_t49EDAE5290024E0707864CCCFE1266C5AE5475C7* __this, String_t* ___0_msg, int32_t ___1_line, int32_t ___2_column, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46FD4E76FB7B00BBA6C5853EE81B91AE4514F80E);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_msg;
int32_t L_1 = ___1_line;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
int32_t L_4 = ___2_column;
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_5);
String_t* L_7;
L_7 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(_stringLiteral46FD4E76FB7B00BBA6C5853EE81B91AE4514F80E, L_0, L_3, L_6, NULL);
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_7, NULL);
int32_t L_8 = ___1_line;
__this->___line_18 = L_8;
int32_t L_9 = ___2_column;
__this->___column_19 = L_9;
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 Mono.Interop.MonoPInvokeCallbackAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoPInvokeCallbackAttribute__ctor_m074347E9E2DF3ADF5EFF0F1BAC92E1D5D2C3B521 (MonoPInvokeCallbackAttribute_tCB0F576FE9D9F83EAC879DEAB365905A52052C7F* __this, Type_t* ___0_t, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__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 Mono.Globalization.Unicode.CodePointIndexer::.ctor(System.Int32[],System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62 (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_starts, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___1_ends, int32_t ___2_defaultIndex, int32_t ___3_defaultCP, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
int32_t G_B3_2 = 0;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* G_B3_3 = NULL;
int32_t G_B2_0 = 0;
int32_t G_B2_1 = 0;
int32_t G_B2_2 = 0;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* G_B2_3 = NULL;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
int32_t G_B4_2 = 0;
int32_t G_B4_3 = 0;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* G_B4_4 = NULL;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___2_defaultIndex;
__this->___defaultIndex_2 = L_0;
int32_t L_1 = ___3_defaultCP;
__this->___defaultCP_3 = L_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ___0_starts;
NullCheck(L_2);
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_3 = (TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21*)(TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21*)SZArrayNew(TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)));
__this->___ranges_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ranges_0), (void*)L_3);
V_0 = 0;
goto IL_006f;
}
IL_0027:
{
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_4 = __this->___ranges_0;
int32_t L_5 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ___0_starts;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
int32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = ___1_ends;
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = L_11;
int32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
int32_t L_14 = V_0;
G_B2_0 = L_13;
G_B2_1 = L_9;
G_B2_2 = L_5;
G_B2_3 = L_4;
if (!L_14)
{
G_B3_0 = L_13;
G_B3_1 = L_9;
G_B3_2 = L_5;
G_B3_3 = L_4;
goto IL_0060;
}
}
{
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_15 = __this->___ranges_0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = ((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_16, 1)))))->___IndexStart_3;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_18 = __this->___ranges_0;
int32_t L_19 = V_0;
NullCheck(L_18);
int32_t L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_19, 1)))))->___Count_2;
G_B4_0 = ((int32_t)il2cpp_codegen_add(L_17, L_20));
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
G_B4_3 = G_B2_2;
G_B4_4 = G_B2_3;
goto IL_0061;
}
IL_0060:
{
G_B4_0 = 0;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
G_B4_3 = G_B3_2;
G_B4_4 = G_B3_3;
}
IL_0061:
{
TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497 L_21;
memset((&L_21), 0, sizeof(L_21));
TableRange__ctor_m2BA1ACE9CAB66F5A86AE0534524AF41C63618E1D((&L_21), G_B4_2, G_B4_1, G_B4_0, /*hidden argument*/NULL);
NullCheck(G_B4_4);
(G_B4_4)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_3), (TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497)L_21);
int32_t L_22 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_006f:
{
int32_t L_23 = V_0;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_24 = __this->___ranges_0;
NullCheck(L_24);
if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))
{
goto IL_0027;
}
}
{
V_1 = 0;
goto IL_00a0;
}
IL_007e:
{
int32_t L_25 = __this->___TotalCount_1;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_26 = __this->___ranges_0;
int32_t L_27 = V_1;
NullCheck(L_26);
int32_t L_28 = ((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->___Count_2;
__this->___TotalCount_1 = ((int32_t)il2cpp_codegen_add(L_25, L_28));
int32_t L_29 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
}
IL_00a0:
{
int32_t L_30 = V_1;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_31 = __this->___ranges_0;
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_007e;
}
}
{
return;
}
}
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::ToIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4 (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* __this, int32_t ___0_cp, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_005d;
}
IL_0004:
{
int32_t L_0 = ___0_cp;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_1 = __this->___ranges_0;
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___Start_0;
if ((((int32_t)L_0) >= ((int32_t)L_3)))
{
goto IL_001f;
}
}
{
int32_t L_4 = __this->___defaultIndex_2;
return L_4;
}
IL_001f:
{
int32_t L_5 = ___0_cp;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_6 = __this->___ranges_0;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___End_1;
if ((((int32_t)L_5) >= ((int32_t)L_8)))
{
goto IL_0059;
}
}
{
int32_t L_9 = ___0_cp;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_10 = __this->___ranges_0;
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___Start_0;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_13 = __this->___ranges_0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->___IndexStart_3;
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_9, L_12)), L_15));
}
IL_0059:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_005d:
{
int32_t L_17 = V_0;
TableRangeU5BU5D_t48FDC71BE004C7C65E25D6794D545C3A17133F21* L_18 = __this->___ranges_0;
NullCheck(L_18);
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))
{
goto IL_0004;
}
}
{
int32_t L_19 = __this->___defaultIndex_2;
return L_19;
}
}
#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 Mono.Globalization.Unicode.CodePointIndexer/TableRange::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TableRange__ctor_m2BA1ACE9CAB66F5A86AE0534524AF41C63618E1D (TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497* __this, int32_t ___0_start, int32_t ___1_end, int32_t ___2_indexStart, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_start;
__this->___Start_0 = L_0;
int32_t L_1 = ___1_end;
__this->___End_1 = L_1;
int32_t L_2 = __this->___End_1;
int32_t L_3 = __this->___Start_0;
__this->___Count_2 = ((int32_t)il2cpp_codegen_subtract(L_2, L_3));
int32_t L_4 = ___2_indexStart;
__this->___IndexStart_3 = L_4;
int32_t L_5 = __this->___IndexStart_3;
int32_t L_6 = __this->___Count_2;
__this->___IndexEnd_4 = ((int32_t)il2cpp_codegen_add(L_5, L_6));
return;
}
}
IL2CPP_EXTERN_C void TableRange__ctor_m2BA1ACE9CAB66F5A86AE0534524AF41C63618E1D_AdjustorThunk (RuntimeObject* __this, int32_t ___0_start, int32_t ___1_end, int32_t ___2_indexStart, const RuntimeMethod* method)
{
TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TableRange_tD242F3D62C818E84B6903C18A6CE33399672B497*>(__this + _offset);
TableRange__ctor_m2BA1ACE9CAB66F5A86AE0534524AF41C63618E1D(_thisAdjusted, ___0_start, ___1_end, ___2_indexStart, 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 Mono.Globalization.Unicode.TailoringInfo::.ctor(System.Int32,System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TailoringInfo__ctor_m8FE45B7864406D005E092AD69597178C4F081F4E (TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* __this, int32_t ___0_lcid, int32_t ___1_tailoringIndex, int32_t ___2_tailoringCount, bool ___3_frenchSort, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___0_lcid;
__this->___LCID_0 = L_0;
int32_t L_1 = ___1_tailoringIndex;
__this->___TailoringIndex_1 = L_1;
int32_t L_2 = ___2_tailoringCount;
__this->___TailoringCount_2 = L_2;
bool L_3 = ___3_frenchSort;
__this->___FrenchSort_3 = L_3;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Globalization.Unicode.Contraction::.ctor(System.Int32,System.Char[],System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Contraction__ctor_m393EA5668662462C9EB8D30405E2BC0D007E954C (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* __this, int32_t ___0_index, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_source, String_t* ___2_replacement, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_sortkey, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___0_index;
__this->___Index_0 = L_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___1_source;
__this->___Source_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Source_1), (void*)L_1);
String_t* L_2 = ___2_replacement;
__this->___Replacement_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Replacement_2), (void*)L_2);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___3_sortkey;
__this->___SortKey_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___SortKey_3), (void*)L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 Mono.Globalization.Unicode.ContractionComparer::Compare(Mono.Globalization.Unicode.Contraction,Mono.Globalization.Unicode.Contraction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ContractionComparer_Compare_m76E1EEA597F015701BFDAAF18A2678C0E1CC676E (ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B* __this, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* ___0_c1, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* ___1_c2, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B3_0 = 0;
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_0 = ___0_c1;
NullCheck(L_0);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___Source_1;
V_0 = L_1;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_2 = ___1_c2;
NullCheck(L_2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2->___Source_1;
V_1 = L_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_0;
NullCheck(L_4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = V_1;
NullCheck(L_5);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))) > ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))
{
goto IL_001b;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = V_0;
NullCheck(L_6);
G_B3_0 = ((int32_t)(((RuntimeArray*)L_6)->max_length));
goto IL_001e;
}
IL_001b:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_1;
NullCheck(L_7);
G_B3_0 = ((int32_t)(((RuntimeArray*)L_7)->max_length));
}
IL_001e:
{
V_2 = G_B3_0;
V_3 = 0;
goto IL_0037;
}
IL_0023:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck(L_8);
int32_t L_10 = L_9;
uint16_t L_11 = (uint16_t)(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_1;
int32_t L_13 = V_3;
NullCheck(L_12);
int32_t L_14 = L_13;
uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
if ((((int32_t)L_11) == ((int32_t)L_15)))
{
goto IL_0033;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = V_0;
int32_t L_17 = V_3;
NullCheck(L_16);
int32_t L_18 = L_17;
uint16_t L_19 = (uint16_t)(L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_1;
int32_t L_21 = V_3;
NullCheck(L_20);
int32_t L_22 = L_21;
uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_23));
}
IL_0033:
{
int32_t L_24 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0037:
{
int32_t L_25 = V_3;
int32_t L_26 = V_2;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0023;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = V_0;
NullCheck(L_27);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = V_1;
NullCheck(L_28);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
{
goto IL_004b;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = V_0;
NullCheck(L_29);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = V_1;
NullCheck(L_30);
return ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_29)->max_length)), ((int32_t)(((RuntimeArray*)L_30)->max_length))));
}
IL_004b:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_31 = ___0_c1;
NullCheck(L_31);
int32_t L_32 = L_31->___Index_0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_33 = ___1_c2;
NullCheck(L_33);
int32_t L_34 = L_33->___Index_0;
return ((int32_t)il2cpp_codegen_subtract(L_32, L_34));
}
}
// System.Void Mono.Globalization.Unicode.ContractionComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContractionComparer__ctor_mB4EA5A722C5583D0D50CD88937D0A90BA8603826 (ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Mono.Globalization.Unicode.ContractionComparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContractionComparer__cctor_mBC1A74B4B50023A57D183D737F0C07CDFECBCF0E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B* L_0 = (ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B*)il2cpp_codegen_object_new(ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var);
NullCheck(L_0);
ContractionComparer__ctor_mB4EA5A722C5583D0D50CD88937D0A90BA8603826(L_0, NULL);
((ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_StaticFields*)il2cpp_codegen_static_fields_for(ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var))->___Instance_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_StaticFields*)il2cpp_codegen_static_fields_for(ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var))->___Instance_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Globalization.Unicode.Level2Map::.ctor(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Level2Map__ctor_m2171A26B3D0F4CE222E9B83CEA97ACF486DA7B0B (Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* __this, uint8_t ___0_source, uint8_t ___1_replace, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
uint8_t L_0 = ___0_source;
__this->___Source_0 = L_0;
uint8_t L_1 = ___1_replace;
__this->___Replace_1 = L_1;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Globalization.Unicode.TailoringInfo Mono.Globalization.Unicode.MSCompatUnicodeTable::GetTailoringInfo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* MSCompatUnicodeTable_GetTailoringInfo_mB25850226E6CEABF5AC34B2A168E33FF9BB5D930 (int32_t ___0_lcid, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_001f;
}
IL_0004:
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE* L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringInfos_16;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
NullCheck(L_3);
int32_t L_4 = L_3->___LCID_0;
int32_t L_5 = ___0_lcid;
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
{
goto IL_001b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE* L_6 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringInfos_16;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
return L_9;
}
IL_001b:
{
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_001f:
{
int32_t L_11 = V_0;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE* L_12 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringInfos_16;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
{
goto IL_0004;
}
}
{
return (TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A*)NULL;
}
}
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::BuildTailoringTables(System.Globalization.CultureInfo,Mono.Globalization.Unicode.TailoringInfo,Mono.Globalization.Unicode.Contraction[]&,Mono.Globalization.Unicode.Level2Map[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_BuildTailoringTables_m799DB61E22220EB93396E091DE35ABB161061BBA (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* ___1_t, ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E** ___2_contractions, Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C** ___3_diacriticals, 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*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mA712408EB20FE442926FB62ED8BD9A081438F91B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m37936F298F44633B62E94F28FA811A9564FF4A89_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_mB410DEDC02C80B09BBBA1D5E4349DF97842CE78C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m98422ED392AD80F51FB67422E8037A59508EB065_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mDB9A5833D13B76B178E20283BB565A8336B614DA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC8997D2202766FB8AD08F8355CCE9D9BF57B3757_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mDED626FB9D28DA7191C6BC79601486000B0DAE3C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CBuildTailoringTablesU3Eb__17_0_m602688B6CEE9BDA27C40F4750616F62FDCA2A3F2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* V_0 = NULL;
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* V_1 = NULL;
int32_t V_2 = 0;
Il2CppChar* V_3 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_8 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_9 = NULL;
int32_t V_10 = 0;
String_t* V_11 = NULL;
Il2CppChar V_12 = 0x0;
int32_t V_13 = 0;
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* G_B26_0 = NULL;
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* G_B26_1 = NULL;
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* G_B25_0 = NULL;
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* G_B25_1 = NULL;
{
List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* L_0 = (List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258*)il2cpp_codegen_object_new(List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_mC8997D2202766FB8AD08F8355CCE9D9BF57B3757(L_0, List_1__ctor_mC8997D2202766FB8AD08F8355CCE9D9BF57B3757_RuntimeMethod_var);
V_0 = L_0;
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* L_1 = (List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07*)il2cpp_codegen_object_new(List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07_il2cpp_TypeInfo_var);
NullCheck(L_1);
List_1__ctor_mDED626FB9D28DA7191C6BC79601486000B0DAE3C(L_1, List_1__ctor_mDED626FB9D28DA7191C6BC79601486000B0DAE3C_RuntimeMethod_var);
V_1 = L_1;
V_2 = 0;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringArr_15;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2;
V_4 = L_3;
if (!L_3)
{
goto IL_001e;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_4;
NullCheck(L_4);
if (((int32_t)(((RuntimeArray*)L_4)->max_length)))
{
goto IL_0023;
}
}
IL_001e:
{
V_3 = (Il2CppChar*)((uintptr_t)0);
goto IL_002d;
}
IL_0023:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = V_4;
NullCheck(L_5);
V_3 = (Il2CppChar*)((uintptr_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_002d:
{
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_6 = ___1_t;
NullCheck(L_6);
int32_t L_7 = L_6->___TailoringIndex_1;
V_5 = L_7;
int32_t L_8 = V_5;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_9 = ___1_t;
NullCheck(L_9);
int32_t L_10 = L_9->___TailoringCount_2;
V_6 = ((int32_t)il2cpp_codegen_add(L_8, L_10));
goto IL_01d3;
}
IL_0045:
{
int32_t L_11 = V_5;
V_7 = ((int32_t)il2cpp_codegen_add(L_11, 1));
V_8 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
Il2CppChar* L_12 = V_3;
int32_t L_13 = V_5;
int32_t L_14 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_13), 2)))));
V_12 = L_14;
Il2CppChar L_15 = V_12;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_15, 1)))
{
case 0:
{
goto IL_0072;
}
case 1:
{
goto IL_00fa;
}
case 2:
{
goto IL_0126;
}
}
}
{
goto IL_01ab;
}
IL_0072:
{
int32_t L_16 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_16, 1));
goto IL_0080;
}
IL_007a:
{
int32_t L_17 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0080:
{
Il2CppChar* L_18 = V_3;
int32_t L_19 = V_7;
int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_19), 2)))));
if (L_20)
{
goto IL_007a;
}
}
{
int32_t L_21 = V_7;
int32_t L_22 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(L_21, L_22)));
V_8 = L_23;
Il2CppChar* L_24 = V_3;
int32_t L_25 = V_5;
intptr_t L_26;
L_26 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_25), 2)))), NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = V_8;
int32_t L_28 = V_7;
int32_t L_29 = V_5;
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
Marshal_Copy_m6C7CF44B55FB4392AE55DF0B2D6EC156D0028DF4(L_26, L_27, 0, ((int32_t)il2cpp_codegen_subtract(L_28, L_29)), NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4);
V_9 = L_30;
V_13 = 0;
goto IL_00d5;
}
IL_00bc:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_31 = V_9;
int32_t L_32 = V_13;
Il2CppChar* L_33 = V_3;
int32_t L_34 = V_7;
int32_t L_35 = V_13;
int32_t L_36 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_34, 1)), L_35))), 2)))));
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (uint8_t)((int32_t)(uint8_t)L_36));
int32_t L_37 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add(L_37, 1));
}
IL_00d5:
{
int32_t L_38 = V_13;
if ((((int32_t)L_38) < ((int32_t)4)))
{
goto IL_00bc;
}
}
{
List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* L_39 = V_0;
int32_t L_40 = V_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = V_8;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_42 = V_9;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_43 = (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)il2cpp_codegen_object_new(Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540_il2cpp_TypeInfo_var);
NullCheck(L_43);
Contraction__ctor_m393EA5668662462C9EB8D30405E2BC0D007E954C(L_43, L_40, L_41, (String_t*)NULL, L_42, NULL);
NullCheck(L_39);
List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_inline(L_39, L_43, List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_RuntimeMethod_var);
int32_t L_44 = V_7;
V_5 = ((int32_t)il2cpp_codegen_add(L_44, 6));
int32_t L_45 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_45, 1));
goto IL_01d3;
}
IL_00fa:
{
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* L_46 = V_1;
Il2CppChar* L_47 = V_3;
int32_t L_48 = V_5;
int32_t L_49 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_48, 1))), 2)))));
Il2CppChar* L_50 = V_3;
int32_t L_51 = V_5;
int32_t L_52 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_50, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_51, 2))), 2)))));
Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* L_53 = (Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1*)il2cpp_codegen_object_new(Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1_il2cpp_TypeInfo_var);
NullCheck(L_53);
Level2Map__ctor_m2171A26B3D0F4CE222E9B83CEA97ACF486DA7B0B(L_53, (uint8_t)((int32_t)(uint8_t)L_49), (uint8_t)((int32_t)(uint8_t)L_52), NULL);
NullCheck(L_46);
List_1_Add_mA712408EB20FE442926FB62ED8BD9A081438F91B_inline(L_46, L_53, List_1_Add_mA712408EB20FE442926FB62ED8BD9A081438F91B_RuntimeMethod_var);
int32_t L_54 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_54, 3));
goto IL_01d3;
}
IL_0126:
{
int32_t L_55 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_55, 1));
goto IL_0134;
}
IL_012e:
{
int32_t L_56 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_56, 1));
}
IL_0134:
{
Il2CppChar* L_57 = V_3;
int32_t L_58 = V_7;
int32_t L_59 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_57, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_58), 2)))));
if (L_59)
{
goto IL_012e;
}
}
{
int32_t L_60 = V_7;
int32_t L_61 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_62 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(L_60, L_61)));
V_8 = L_62;
Il2CppChar* L_63 = V_3;
int32_t L_64 = V_5;
intptr_t L_65;
L_65 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_63, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_64), 2)))), NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_66 = V_8;
int32_t L_67 = V_7;
int32_t L_68 = V_5;
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
Marshal_Copy_m6C7CF44B55FB4392AE55DF0B2D6EC156D0028DF4(L_65, L_66, 0, ((int32_t)il2cpp_codegen_subtract(L_67, L_68)), NULL);
int32_t L_69 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_69, 1));
int32_t L_70 = V_7;
V_10 = L_70;
goto IL_0175;
}
IL_016f:
{
int32_t L_71 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add(L_71, 1));
}
IL_0175:
{
Il2CppChar* L_72 = V_3;
int32_t L_73 = V_10;
int32_t L_74 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_73), 2)))));
if (L_74)
{
goto IL_016f;
}
}
{
Il2CppChar* L_75 = V_3;
int32_t L_76 = V_7;
int32_t L_77 = V_10;
int32_t L_78 = V_7;
String_t* L_79;
L_79 = String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2(NULL, L_75, L_76, ((int32_t)il2cpp_codegen_subtract(L_77, L_78)), NULL);
V_11 = L_79;
List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* L_80 = V_0;
int32_t L_81 = V_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_82 = V_8;
String_t* L_83 = V_11;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_84 = (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)il2cpp_codegen_object_new(Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540_il2cpp_TypeInfo_var);
NullCheck(L_84);
Contraction__ctor_m393EA5668662462C9EB8D30405E2BC0D007E954C(L_84, L_81, L_82, L_83, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, NULL);
NullCheck(L_80);
List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_inline(L_80, L_84, List_1_Add_m55D04C26E04FE90F518E851CE3487279121F5219_RuntimeMethod_var);
int32_t L_85 = V_10;
V_5 = ((int32_t)il2cpp_codegen_add(L_85, 1));
int32_t L_86 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_86, 1));
goto IL_01d3;
}
IL_01ab:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_87 = ___0_culture;
NullCheck(L_87);
int32_t L_88;
L_88 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_87);
int32_t L_89 = L_88;
RuntimeObject* L_90 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_89);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_91 = ___0_culture;
NullCheck(L_91);
String_t* L_92;
L_92 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_91);
int32_t L_93 = V_5;
int32_t L_94 = L_93;
RuntimeObject* L_95 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_94);
String_t* L_96;
L_96 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9ABD0C34749B0AA1E5D52F198A80EB2AA3298525)), L_90, L_92, L_95, NULL);
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_97 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
NullCheck(L_97);
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_97, L_96, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_97, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MSCompatUnicodeTable_BuildTailoringTables_m799DB61E22220EB93396E091DE35ABB161061BBA_RuntimeMethod_var)));
}
IL_01d3:
{
int32_t L_98 = V_5;
int32_t L_99 = V_6;
if ((((int32_t)L_98) < ((int32_t)L_99)))
{
goto IL_0045;
}
}
{
V_4 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* L_100 = V_0;
il2cpp_codegen_runtime_class_init_inline(ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var);
ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B* L_101 = ((ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_StaticFields*)il2cpp_codegen_static_fields_for(ContractionComparer_t1CE1C4539C6840E11BB0D3F7E5C5BE815A40144B_il2cpp_TypeInfo_var))->___Instance_0;
NullCheck(L_100);
List_1_Sort_m37936F298F44633B62E94F28FA811A9564FF4A89(L_100, L_101, List_1_Sort_m37936F298F44633B62E94F28FA811A9564FF4A89_RuntimeMethod_var);
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* L_102 = V_1;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var);
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* L_103 = ((U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var))->___U3CU3E9__17_0_1;
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* L_104 = L_103;
G_B25_0 = L_104;
G_B25_1 = L_102;
if (L_104)
{
G_B26_0 = L_104;
G_B26_1 = L_102;
goto IL_020a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var);
U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596* L_105 = ((U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* L_106 = (Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE*)il2cpp_codegen_object_new(Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE_il2cpp_TypeInfo_var);
NullCheck(L_106);
Comparison_1__ctor_m910FD568C9AF4E20495457AE45128A1C1CF42E1C(L_106, L_105, (intptr_t)((void*)U3CU3Ec_U3CBuildTailoringTablesU3Eb__17_0_m602688B6CEE9BDA27C40F4750616F62FDCA2A3F2_RuntimeMethod_var), NULL);
Comparison_1_t9348BD07A42E0B64874D56D54EB3C5984E623BCE* L_107 = L_106;
((U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var))->___U3CU3E9__17_0_1 = L_107;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var))->___U3CU3E9__17_0_1), (void*)L_107);
G_B26_0 = L_107;
G_B26_1 = G_B25_1;
}
IL_020a:
{
NullCheck(G_B26_1);
List_1_Sort_mB410DEDC02C80B09BBBA1D5E4349DF97842CE78C(G_B26_1, G_B26_0, List_1_Sort_mB410DEDC02C80B09BBBA1D5E4349DF97842CE78C_RuntimeMethod_var);
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E** L_108 = ___2_contractions;
List_1_t4B07534C6EDA44BFBF4CD81E023B10C2692A5258* L_109 = V_0;
NullCheck(L_109);
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_110;
L_110 = List_1_ToArray_mDB9A5833D13B76B178E20283BB565A8336B614DA(L_109, List_1_ToArray_mDB9A5833D13B76B178E20283BB565A8336B614DA_RuntimeMethod_var);
*((RuntimeObject**)L_108) = (RuntimeObject*)L_110;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_108, (void*)(RuntimeObject*)L_110);
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C** L_111 = ___3_diacriticals;
List_1_t5CAE2B09460C18583E8D73B71F73B8D58CE5DC07* L_112 = V_1;
NullCheck(L_112);
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* L_113;
L_113 = List_1_ToArray_m98422ED392AD80F51FB67422E8037A59508EB065(L_112, List_1_ToArray_m98422ED392AD80F51FB67422E8037A59508EB065_RuntimeMethod_var);
*((RuntimeObject**)L_111) = (RuntimeObject*)L_113;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_111, (void*)(RuntimeObject*)L_113);
return;
}
}
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::SetCJKReferences(System.String,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_SetCJKReferences_m3DA5CF30FE174CBAAB26D496FD7C5ED5A5C54070 (String_t* ___0_name, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_lv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C45DB50527FCFAD456E74EB416B617329505309);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B0E509E3481549FC8F096287EFB425FAAFC38A4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_name;
bool L_1;
L_1 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, _stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9, NULL);
if (L_1)
{
goto IL_0035;
}
}
{
String_t* L_2 = ___0_name;
bool L_3;
L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF, NULL);
if (L_3)
{
goto IL_004b;
}
}
{
String_t* L_4 = ___0_name;
bool L_5;
L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteral0C45DB50527FCFAD456E74EB416B617329505309, NULL);
if (L_5)
{
goto IL_0061;
}
}
{
String_t* L_6 = ___0_name;
bool L_7;
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteral4B0E509E3481549FC8F096287EFB425FAAFC38A4, NULL);
if (L_7)
{
goto IL_0077;
}
}
{
return;
}
IL_0035:
{
uint8_t** L_8 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_9 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHScategory_6;
*((intptr_t*)L_8) = (intptr_t)L_9;
uint8_t** L_10 = ___3_lv1Table;
uint8_t* L_11 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHSlv1_10;
*((intptr_t*)L_10) = (intptr_t)L_11;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_12 = ___1_cjkIndexer;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_13 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___CjkCHS_5;
*((RuntimeObject**)L_12) = (RuntimeObject*)L_13;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_12, (void*)(RuntimeObject*)L_13);
return;
}
IL_004b:
{
uint8_t** L_14 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_15 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHTcategory_7;
*((intptr_t*)L_14) = (intptr_t)L_15;
uint8_t** L_16 = ___3_lv1Table;
uint8_t* L_17 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHTlv1_11;
*((intptr_t*)L_16) = (intptr_t)L_17;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_18 = ___1_cjkIndexer;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_19 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Cjk_6;
*((RuntimeObject**)L_18) = (RuntimeObject*)L_19;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_18, (void*)(RuntimeObject*)L_19);
return;
}
IL_0061:
{
uint8_t** L_20 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_21 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkJAcategory_8;
*((intptr_t*)L_20) = (intptr_t)L_21;
uint8_t** L_22 = ___3_lv1Table;
uint8_t* L_23 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkJAlv1_12;
*((intptr_t*)L_22) = (intptr_t)L_23;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_24 = ___1_cjkIndexer;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_25 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Cjk_6;
*((RuntimeObject**)L_24) = (RuntimeObject*)L_25;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_24, (void*)(RuntimeObject*)L_25);
return;
}
IL_0077:
{
uint8_t** L_26 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_27 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOcategory_9;
*((intptr_t*)L_26) = (intptr_t)L_27;
uint8_t** L_28 = ___3_lv1Table;
uint8_t* L_29 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOlv1_13;
*((intptr_t*)L_28) = (intptr_t)L_29;
uint8_t** L_30 = ___5_lv2Table;
uint8_t* L_31 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOlv2_14;
*((intptr_t*)L_30) = (intptr_t)L_31;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_32 = ___1_cjkIndexer;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_33 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Cjk_6;
*((RuntimeObject**)L_32) = (RuntimeObject*)L_33;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_32, (void*)(RuntimeObject*)L_33);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_34 = ___4_lv2Indexer;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_35 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Cjk_6;
*((RuntimeObject**)L_34) = (RuntimeObject*)L_35;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_34, (void*)(RuntimeObject*)L_35);
return;
}
}
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Category(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Category_m901E734DD977E1CE752480BBF162A60E069BEF33 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___categories_2;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_1 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Category_1;
int32_t L_2 = ___0_cp;
NullCheck(L_1);
int32_t L_3;
L_3 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_1, L_2, NULL);
int32_t L_4 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_3)));
return (uint8_t)L_4;
}
}
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Level1(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Level1_m872E781969947F0D27078ABA702E6E6BAD123A27 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___level1_3;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_1 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level1_2;
int32_t L_2 = ___0_cp;
NullCheck(L_1);
int32_t L_3;
L_3 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_1, L_2, NULL);
int32_t L_4 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_3)));
return (uint8_t)L_4;
}
}
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Level2(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Level2_m43E56E2872610B1D0D0F5425BEC16C9E41A47B29 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___level2_4;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_1 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level2_3;
int32_t L_2 = ___0_cp;
NullCheck(L_1);
int32_t L_3;
L_3 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_1, L_2, NULL);
int32_t L_4 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_3)));
return (uint8_t)L_4;
}
}
// System.Byte Mono.Globalization.Unicode.MSCompatUnicodeTable::Level3(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___level3_5;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_1 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level3_4;
int32_t L_2 = ___0_cp;
NullCheck(L_1);
int32_t L_3;
L_3 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_1, L_2, NULL);
int32_t L_4 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_3)));
return (uint8_t)L_4;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsIgnorable(System.Int32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsIgnorable_m2E451C7224CA6AB118D01FDF7158AC3D4C1C9B06 (int32_t ___0_cp, uint8_t ___1_flag, 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*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___0_cp;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)1;
}
IL_0005:
{
uint8_t L_1 = ___1_flag;
if (!((int32_t)((int32_t)L_1&1)))
{
goto IL_0029;
}
}
{
int32_t L_2 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = Char_GetUnicodeCategory_m77918F2C9C8E103453F2146071739767CA65F6DC(((int32_t)(uint16_t)L_2), NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)29)))))
{
goto IL_0017;
}
}
{
return (bool)1;
}
IL_0017:
{
int32_t L_4 = ___0_cp;
if ((((int32_t)((int32_t)55424)) > ((int32_t)L_4)))
{
goto IL_0029;
}
}
{
int32_t L_5 = ___0_cp;
if ((((int32_t)L_5) >= ((int32_t)((int32_t)56192))))
{
goto IL_0029;
}
}
{
return (bool)1;
}
IL_0029:
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_6 = ((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Ignorable_0;
int32_t L_7 = ___0_cp;
NullCheck(L_6);
int32_t L_8;
L_8 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_6, L_7, NULL);
V_0 = L_8;
int32_t L_9 = V_0;
if ((((int32_t)L_9) < ((int32_t)0)))
{
goto IL_0047;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_10 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___ignorableFlags_1;
int32_t L_11 = V_0;
int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11)));
uint8_t L_13 = ___1_flag;
return (bool)((!(((uint32_t)((int32_t)(L_12&(int32_t)L_13))) <= ((uint32_t)0)))? 1 : 0);
}
IL_0047:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsIgnorableNonSpacing(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_1;
L_1 = MSCompatUnicodeTable_IsIgnorable_m2E451C7224CA6AB118D01FDF7158AC3D4C1C9B06(L_0, (uint8_t)4, NULL);
return L_1;
}
}
// System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::ToKanaTypeInsensitive(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MSCompatUnicodeTable_ToKanaTypeInsensitive_m3E4E4DC538A41C6D672A1EEF4C8F1DD4D19D6F1D (int32_t ___0_i, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_i;
if ((((int32_t)((int32_t)12353)) > ((int32_t)L_0)))
{
goto IL_0010;
}
}
{
int32_t L_1 = ___0_i;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)12436))))
{
goto IL_0012;
}
}
IL_0010:
{
int32_t L_2 = ___0_i;
return L_2;
}
IL_0012:
{
int32_t L_3 = ___0_i;
return ((int32_t)il2cpp_codegen_add(L_3, ((int32_t)96)));
}
}
// System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::ToWidthCompat(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MSCompatUnicodeTable_ToWidthCompat_mE7DA75A49B8982E9A6FCE01F876700FC86E85F3D (int32_t ___0_i, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_i;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)8592))))
{
goto IL_000a;
}
}
{
int32_t L_1 = ___0_i;
return L_1;
}
IL_000a:
{
int32_t L_2 = ___0_i;
if ((((int32_t)L_2) <= ((int32_t)((int32_t)65280))))
{
goto IL_0079;
}
}
{
int32_t L_3 = ___0_i;
if ((((int32_t)L_3) > ((int32_t)((int32_t)65374))))
{
goto IL_0025;
}
}
{
int32_t L_4 = ___0_i;
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_4, ((int32_t)65280))), ((int32_t)32)));
}
IL_0025:
{
int32_t L_5 = ___0_i;
switch (((int32_t)il2cpp_codegen_subtract(L_5, ((int32_t)65504))))
{
case 0:
{
goto IL_004f;
}
case 1:
{
goto IL_0055;
}
case 2:
{
goto IL_005b;
}
case 3:
{
goto IL_0061;
}
case 4:
{
goto IL_0067;
}
case 5:
{
goto IL_006d;
}
case 6:
{
goto IL_0073;
}
}
}
{
goto IL_0079;
}
IL_004f:
{
return ((int32_t)162);
}
IL_0055:
{
return ((int32_t)163);
}
IL_005b:
{
return ((int32_t)172);
}
IL_0061:
{
return ((int32_t)175);
}
IL_0067:
{
return ((int32_t)166);
}
IL_006d:
{
return ((int32_t)165);
}
IL_0073:
{
return ((int32_t)8361);
}
IL_0079:
{
int32_t L_6 = ___0_i;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)13054))))
{
goto IL_0083;
}
}
{
int32_t L_7 = ___0_i;
return L_7;
}
IL_0083:
{
int32_t L_8 = ___0_i;
if ((((int32_t)L_8) > ((int32_t)((int32_t)8595))))
{
goto IL_0093;
}
}
{
int32_t L_9 = ___0_i;
return ((int32_t)il2cpp_codegen_add(((int32_t)56921), L_9));
}
IL_0093:
{
int32_t L_10 = ___0_i;
if ((((int32_t)L_10) >= ((int32_t)((int32_t)9474))))
{
goto IL_009d;
}
}
{
int32_t L_11 = ___0_i;
return L_11;
}
IL_009d:
{
int32_t L_12 = ___0_i;
if ((((int32_t)L_12) > ((int32_t)((int32_t)9675))))
{
goto IL_00d3;
}
}
{
int32_t L_13 = ___0_i;
if ((((int32_t)L_13) == ((int32_t)((int32_t)9474))))
{
goto IL_00bf;
}
}
{
int32_t L_14 = ___0_i;
if ((((int32_t)L_14) == ((int32_t)((int32_t)9632))))
{
goto IL_00c5;
}
}
{
int32_t L_15 = ___0_i;
if ((((int32_t)L_15) == ((int32_t)((int32_t)9675))))
{
goto IL_00cb;
}
}
{
goto IL_00d1;
}
IL_00bf:
{
return ((int32_t)65512);
}
IL_00c5:
{
return ((int32_t)65517);
}
IL_00cb:
{
return ((int32_t)65518);
}
IL_00d1:
{
int32_t L_16 = ___0_i;
return L_16;
}
IL_00d3:
{
int32_t L_17 = ___0_i;
if ((((int32_t)L_17) >= ((int32_t)((int32_t)12288))))
{
goto IL_00dd;
}
}
{
int32_t L_18 = ___0_i;
return L_18;
}
IL_00dd:
{
int32_t L_19 = ___0_i;
if ((((int32_t)L_19) >= ((int32_t)((int32_t)12593))))
{
goto IL_0144;
}
}
{
int32_t L_20 = ___0_i;
if ((((int32_t)L_20) > ((int32_t)((int32_t)12300))))
{
goto IL_010f;
}
}
{
int32_t L_21 = ___0_i;
switch (((int32_t)il2cpp_codegen_subtract(L_21, ((int32_t)12288))))
{
case 0:
{
goto IL_0121;
}
case 1:
{
goto IL_0124;
}
case 2:
{
goto IL_012a;
}
}
}
{
int32_t L_22 = ___0_i;
if ((((int32_t)L_22) == ((int32_t)((int32_t)12300))))
{
goto IL_0130;
}
}
{
goto IL_0142;
}
IL_010f:
{
int32_t L_23 = ___0_i;
if ((((int32_t)L_23) == ((int32_t)((int32_t)12301))))
{
goto IL_0136;
}
}
{
int32_t L_24 = ___0_i;
if ((((int32_t)L_24) == ((int32_t)((int32_t)12539))))
{
goto IL_013c;
}
}
{
goto IL_0142;
}
IL_0121:
{
return ((int32_t)32);
}
IL_0124:
{
return ((int32_t)65380);
}
IL_012a:
{
return ((int32_t)65377);
}
IL_0130:
{
return ((int32_t)65378);
}
IL_0136:
{
return ((int32_t)65379);
}
IL_013c:
{
return ((int32_t)65381);
}
IL_0142:
{
int32_t L_25 = ___0_i;
return L_25;
}
IL_0144:
{
int32_t L_26 = ___0_i;
if ((((int32_t)L_26) >= ((int32_t)((int32_t)12644))))
{
goto IL_015a;
}
}
{
int32_t L_27 = ___0_i;
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_27, ((int32_t)12592))), ((int32_t)65440)));
}
IL_015a:
{
int32_t L_28 = ___0_i;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)12644)))))
{
goto IL_0168;
}
}
{
return ((int32_t)65440);
}
IL_0168:
{
int32_t L_29 = ___0_i;
return L_29;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::HasSpecialWeight(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5 (Il2CppChar ___0_c, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___0_c;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)12353))))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
Il2CppChar L_1 = ___0_c;
if ((((int32_t)((int32_t)65382)) > ((int32_t)L_1)))
{
goto IL_001c;
}
}
{
Il2CppChar L_2 = ___0_c;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)65438))))
{
goto IL_001c;
}
}
{
return (bool)1;
}
IL_001c:
{
Il2CppChar L_3 = ___0_c;
if ((((int32_t)((int32_t)13056)) > ((int32_t)L_3)))
{
goto IL_0026;
}
}
{
return (bool)0;
}
IL_0026:
{
Il2CppChar L_4 = ___0_c;
if ((((int32_t)L_4) >= ((int32_t)((int32_t)12445))))
{
goto IL_0037;
}
}
{
Il2CppChar L_5 = ___0_c;
return (bool)((((int32_t)L_5) < ((int32_t)((int32_t)12441)))? 1 : 0);
}
IL_0037:
{
Il2CppChar L_6 = ___0_c;
if ((((int32_t)L_6) >= ((int32_t)((int32_t)12544))))
{
goto IL_004b;
}
}
{
Il2CppChar L_7 = ___0_c;
return (bool)((((int32_t)((((int32_t)L_7) == ((int32_t)((int32_t)12539)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_004b:
{
Il2CppChar L_8 = ___0_c;
if ((((int32_t)L_8) >= ((int32_t)((int32_t)13008))))
{
goto IL_0055;
}
}
{
return (bool)0;
}
IL_0055:
{
Il2CppChar L_9 = ___0_c;
if ((((int32_t)L_9) >= ((int32_t)((int32_t)13055))))
{
goto IL_005f;
}
}
{
return (bool)1;
}
IL_005f:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsHalfWidthKana(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsHalfWidthKana_m92E8F8CEFE6FD1106DD4195367727CA8F99D76AE (Il2CppChar ___0_c, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___0_c;
if ((((int32_t)((int32_t)65382)) > ((int32_t)L_0)))
{
goto IL_0014;
}
}
{
Il2CppChar L_1 = ___0_c;
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)65437)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsHiragana(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7 (Il2CppChar ___0_c, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___0_c;
if ((((int32_t)((int32_t)12353)) > ((int32_t)L_0)))
{
goto IL_0014;
}
}
{
Il2CppChar L_1 = ___0_c;
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)12436)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::IsJapaneseSmallLetter(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A (Il2CppChar ___0_c, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___0_c;
if ((((int32_t)((int32_t)65383)) > ((int32_t)L_0)))
{
goto IL_0012;
}
}
{
Il2CppChar L_1 = ___0_c;
if ((((int32_t)L_1) > ((int32_t)((int32_t)65391))))
{
goto IL_0012;
}
}
{
return (bool)1;
}
IL_0012:
{
Il2CppChar L_2 = ___0_c;
if ((((int32_t)((int32_t)12352)) >= ((int32_t)L_2)))
{
goto IL_0121;
}
}
{
Il2CppChar L_3 = ___0_c;
if ((((int32_t)L_3) >= ((int32_t)((int32_t)12538))))
{
goto IL_0121;
}
}
{
Il2CppChar L_4 = ___0_c;
if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)12457)))))
{
goto IL_00d5;
}
}
{
Il2CppChar L_5 = ___0_c;
if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)12387)))))
{
goto IL_007b;
}
}
{
Il2CppChar L_6 = ___0_c;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)12353))))
{
case 0:
{
goto IL_011f;
}
case 1:
{
goto IL_0121;
}
case 2:
{
goto IL_011f;
}
case 3:
{
goto IL_0121;
}
case 4:
{
goto IL_011f;
}
case 5:
{
goto IL_0121;
}
case 6:
{
goto IL_011f;
}
case 7:
{
goto IL_0121;
}
case 8:
{
goto IL_011f;
}
}
}
{
Il2CppChar L_7 = ___0_c;
if ((((int32_t)L_7) == ((int32_t)((int32_t)12387))))
{
goto IL_011f;
}
}
{
goto IL_0121;
}
IL_007b:
{
Il2CppChar L_8 = ___0_c;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)12419))))
{
case 0:
{
goto IL_011f;
}
case 1:
{
goto IL_0121;
}
case 2:
{
goto IL_011f;
}
case 3:
{
goto IL_0121;
}
case 4:
{
goto IL_011f;
}
}
}
{
Il2CppChar L_9 = ___0_c;
if ((((int32_t)L_9) == ((int32_t)((int32_t)12430))))
{
goto IL_011f;
}
}
{
Il2CppChar L_10 = ___0_c;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, ((int32_t)12449))))
{
case 0:
{
goto IL_011f;
}
case 1:
{
goto IL_0121;
}
case 2:
{
goto IL_011f;
}
case 3:
{
goto IL_0121;
}
case 4:
{
goto IL_011f;
}
case 5:
{
goto IL_0121;
}
case 6:
{
goto IL_011f;
}
case 7:
{
goto IL_0121;
}
case 8:
{
goto IL_011f;
}
}
}
{
goto IL_0121;
}
IL_00d5:
{
Il2CppChar L_11 = ___0_c;
if ((!(((uint32_t)L_11) <= ((uint32_t)((int32_t)12519)))))
{
goto IL_0107;
}
}
{
Il2CppChar L_12 = ___0_c;
if ((((int32_t)L_12) == ((int32_t)((int32_t)12483))))
{
goto IL_011f;
}
}
{
Il2CppChar L_13 = ___0_c;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_13, ((int32_t)12515))))
{
case 0:
{
goto IL_011f;
}
case 1:
{
goto IL_0121;
}
case 2:
{
goto IL_011f;
}
case 3:
{
goto IL_0121;
}
case 4:
{
goto IL_011f;
}
}
}
{
goto IL_0121;
}
IL_0107:
{
Il2CppChar L_14 = ___0_c;
if ((((int32_t)L_14) == ((int32_t)((int32_t)12526))))
{
goto IL_011f;
}
}
{
Il2CppChar L_15 = ___0_c;
if ((((int32_t)L_15) == ((int32_t)((int32_t)12533))))
{
goto IL_011f;
}
}
{
Il2CppChar L_16 = ___0_c;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)12534)))))
{
goto IL_0121;
}
}
IL_011f:
{
return (bool)1;
}
IL_0121:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::get_IsReady()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_m46FD80414521FFE51B8D16D74A40D275EA99E338 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___isReady_18;
return L_0;
}
}
// System.IntPtr Mono.Globalization.Unicode.MSCompatUnicodeTable::GetResource(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861 (String_t* ___0_name, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* V_1 = NULL;
{
Assembly_t* L_0;
L_0 = il2cpp_codegen_get_executing_assembly(MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861_RuntimeMethod_var);
String_t* L_1 = ___0_name;
NullCheck(((RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF*)CastclassClass((RuntimeObject*)L_0, RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF_il2cpp_TypeInfo_var)));
intptr_t L_2;
L_2 = RuntimeAssembly_GetManifestResourceInternal_m42C3E9A9A678777B6B889144EFC663E6B0DBF362(((RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF*)CastclassClass((RuntimeObject*)L_0, RuntimeAssembly_tA26A4DE82E77826DFC3D58AD976BCFC6BCA918AF_il2cpp_TypeInfo_var)), L_1, (&V_0), (&V_1), NULL);
return L_2;
}
}
// System.UInt32 Mono.Globalization.Unicode.MSCompatUnicodeTable::UInt32FromBytePtr(System.Byte*,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A (uint8_t* ___0_raw, uint32_t ___1_idx, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_raw;
uint32_t L_1 = ___1_idx;
int32_t L_2 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((uintptr_t)L_1))));
uint8_t* L_3 = ___0_raw;
uint32_t L_4 = ___1_idx;
int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((uintptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, 1))))));
uint8_t* L_6 = ___0_raw;
uint32_t L_7 = ___1_idx;
int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((uintptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, 2))))));
uint8_t* L_9 = ___0_raw;
uint32_t L_10 = ___1_idx;
int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((uintptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, 3))))));
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_2, ((int32_t)(L_5<<8)))), ((int32_t)(L_8<<((int32_t)16))))), ((int32_t)(L_11<<((int32_t)24)))));
}
}
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::.cctor()
#if IL2CPP_TARGET_XBOXONE
IL2CPP_DISABLE_OPTIMIZATIONS
#endif
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable__cctor_mFD9FAA720B32C1217D6A5C3C7CFF3350A4046F07 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B387A0B65C6A93464FB0B268584E15E02AE9BEC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51E32388186E3C054444183AA4F66F30E4D384D2);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
intptr_t V_4;
memset((&V_4), 0, sizeof(V_4));
uint32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* V_9 = NULL;
int32_t V_10 = 0;
{
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___MaxExpansionLength_0 = 3;
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___forLock_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___forLock_17), (void*)L_0);
V_3 = 0;
intptr_t L_1;
L_1 = MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861(_stringLiteral0B387A0B65C6A93464FB0B268584E15E02AE9BEC, NULL);
V_4 = L_1;
intptr_t L_2 = V_4;
intptr_t L_3 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_4;
L_4 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_2, L_3, NULL);
if (!L_4)
{
goto IL_002d;
}
}
{
return;
}
IL_002d:
{
intptr_t L_5 = V_4;
void* L_6;
L_6 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_5, NULL);
V_0 = (uint8_t*)L_6;
intptr_t L_7;
L_7 = MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861(_stringLiteral51E32388186E3C054444183AA4F66F30E4D384D2, NULL);
V_4 = L_7;
intptr_t L_8 = V_4;
intptr_t L_9 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_10;
L_10 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_8, L_9, NULL);
if (!L_10)
{
goto IL_0050;
}
}
{
return;
}
IL_0050:
{
intptr_t L_11 = V_4;
void* L_12;
L_12 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_11, NULL);
V_1 = (uint8_t*)L_12;
uint8_t* L_13 = V_0;
if ((((intptr_t)L_13) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0062;
}
}
{
uint8_t* L_14 = V_1;
if ((!(((uintptr_t)L_14) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0063;
}
}
IL_0062:
{
return;
}
IL_0063:
{
uint8_t* L_15 = V_0;
int32_t L_16 = *((uint8_t*)L_15);
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_006d;
}
}
{
uint8_t* L_17 = V_1;
int32_t L_18 = *((uint8_t*)L_17);
if ((((int32_t)L_18) == ((int32_t)3)))
{
goto IL_006e;
}
}
IL_006d:
{
return;
}
IL_006e:
{
V_3 = 1;
uint8_t* L_19 = V_0;
uint32_t L_20 = V_3;
uint32_t L_21;
L_21 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_19, L_20, NULL);
V_2 = L_21;
uint32_t L_22 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, 4));
uint8_t* L_23 = V_0;
uint32_t L_24 = V_3;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___ignorableFlags_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((uintptr_t)L_24)));
uint32_t L_25 = V_3;
uint32_t L_26 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26));
uint8_t* L_27 = V_0;
uint32_t L_28 = V_3;
uint32_t L_29;
L_29 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_27, L_28, NULL);
V_2 = L_29;
uint32_t L_30 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, 4));
uint8_t* L_31 = V_0;
uint32_t L_32 = V_3;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___categories_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)((uintptr_t)L_32)));
uint32_t L_33 = V_3;
uint32_t L_34 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34));
uint8_t* L_35 = V_0;
uint32_t L_36 = V_3;
uint32_t L_37;
L_37 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_35, L_36, NULL);
V_2 = L_37;
uint32_t L_38 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, 4));
uint8_t* L_39 = V_0;
uint32_t L_40 = V_3;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___level1_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)((uintptr_t)L_40)));
uint32_t L_41 = V_3;
uint32_t L_42 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42));
uint8_t* L_43 = V_0;
uint32_t L_44 = V_3;
uint32_t L_45;
L_45 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_43, L_44, NULL);
V_2 = L_45;
uint32_t L_46 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, 4));
uint8_t* L_47 = V_0;
uint32_t L_48 = V_3;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___level2_4 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_47, (intptr_t)((uintptr_t)L_48)));
uint32_t L_49 = V_3;
uint32_t L_50 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)L_50));
uint8_t* L_51 = V_0;
uint32_t L_52 = V_3;
uint32_t L_53;
L_53 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_51, L_52, NULL);
V_2 = L_53;
uint32_t L_54 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, 4));
uint8_t* L_55 = V_0;
uint32_t L_56 = V_3;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___level3_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((uintptr_t)L_56)));
uint32_t L_57 = V_3;
uint32_t L_58 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)L_58));
V_3 = 1;
uint8_t* L_59 = V_1;
uint32_t L_60 = V_3;
uint32_t L_61;
L_61 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_59, L_60, NULL);
V_5 = L_61;
uint32_t L_62 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, 4));
uint32_t L_63 = V_5;
TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE* L_64 = (TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE*)(TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE*)SZArrayNew(TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE_il2cpp_TypeInfo_var, (uint32_t)L_63);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringInfos_16 = L_64;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringInfos_16), (void*)L_64);
V_6 = 0;
goto IL_0159;
}
IL_010d:
{
uint8_t* L_65 = V_1;
uint32_t L_66 = V_3;
uint32_t L_67;
L_67 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_65, L_66, NULL);
uint32_t L_68 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, 4));
uint8_t* L_69 = V_1;
uint32_t L_70 = V_3;
uint32_t L_71;
L_71 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_69, L_70, NULL);
V_7 = L_71;
uint32_t L_72 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_72, 4));
uint8_t* L_73 = V_1;
uint32_t L_74 = V_3;
uint32_t L_75;
L_75 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_73, L_74, NULL);
V_8 = L_75;
uint32_t L_76 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, 4));
int32_t L_77 = V_7;
int32_t L_78 = V_8;
uint8_t* L_79 = V_1;
uint32_t L_80 = V_3;
uint32_t L_81 = L_80;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, 1));
int32_t L_82 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_79, (intptr_t)((uintptr_t)L_81))));
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_83 = (TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A*)il2cpp_codegen_object_new(TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A_il2cpp_TypeInfo_var);
NullCheck(L_83);
TailoringInfo__ctor_m8FE45B7864406D005E092AD69597178C4F081F4E(L_83, L_67, L_77, L_78, (bool)((!(((uint32_t)L_82) <= ((uint32_t)0)))? 1 : 0), NULL);
V_9 = L_83;
TailoringInfoU5BU5D_t91193FADA23E3EB0EF7B06A3320C11A012717AEE* L_84 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringInfos_16;
int32_t L_85 = V_6;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_86 = V_9;
NullCheck(L_84);
ArrayElementTypeCheck (L_84, L_86);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(L_85), (TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A*)L_86);
int32_t L_87 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_87, 1));
}
IL_0159:
{
int32_t L_88 = V_6;
uint32_t L_89 = V_5;
if ((((int64_t)((int64_t)L_88)) < ((int64_t)((int64_t)(uint64_t)L_89))))
{
goto IL_010d;
}
}
{
uint32_t L_90 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_90, 2));
uint8_t* L_91 = V_1;
uint32_t L_92 = V_3;
uint32_t L_93;
L_93 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_91, L_92, NULL);
V_5 = L_93;
uint32_t L_94 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, 4));
uint32_t L_95 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_96 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)L_95);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringArr_15 = L_96;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringArr_15), (void*)L_96);
V_10 = 0;
goto IL_01a5;
}
IL_0183:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_97 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___tailoringArr_15;
int32_t L_98 = V_10;
uint8_t* L_99 = V_1;
uint32_t L_100 = V_3;
int32_t L_101 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_99, (intptr_t)((uintptr_t)L_100))));
uint8_t* L_102 = V_1;
uint32_t L_103 = V_3;
int32_t L_104 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_102, (intptr_t)((uintptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_103, 1))))));
NullCheck(L_97);
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (Il2CppChar)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(L_101, ((int32_t)(L_104<<8))))));
int32_t L_105 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add(L_105, 1));
uint32_t L_106 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, 2));
}
IL_01a5:
{
int32_t L_107 = V_10;
uint32_t L_108 = V_5;
if ((((int64_t)((int64_t)L_107)) < ((int64_t)((int64_t)(uint64_t)L_108))))
{
goto IL_0183;
}
}
{
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___isReady_18 = (bool)1;
return;
}
}
#if IL2CPP_TARGET_XBOXONE
IL2CPP_ENABLE_OPTIMIZATIONS
#endif
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::FillCJK(System.String,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_FillCJK_mAD65881B382330F76AFB13D545E0D5D5C43BA018 (String_t* ___0_culture, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_lv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___forLock_17;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002c:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0035;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
}
IL_0035:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
RuntimeObject* L_3 = V_0;
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
String_t* L_4 = ___0_culture;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_5 = ___1_cjkIndexer;
uint8_t** L_6 = ___2_catTable;
uint8_t** L_7 = ___3_lv1Table;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_8 = ___4_lv2Indexer;
uint8_t** L_9 = ___5_lv2Table;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
MSCompatUnicodeTable_FillCJKCore_mD7EE94BA2102F9795992F153AE630903BA74A05C(L_4, L_5, L_6, L_7, L_8, L_9, NULL);
String_t* L_10 = ___0_culture;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_11 = ___1_cjkIndexer;
uint8_t** L_12 = ___2_catTable;
uint8_t** L_13 = ___3_lv1Table;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_14 = ___4_lv2Indexer;
uint8_t** L_15 = ___5_lv2Table;
MSCompatUnicodeTable_SetCJKReferences_m3DA5CF30FE174CBAAB26D496FD7C5ED5A5C54070(L_10, L_11, L_12, L_13, L_14, L_15, NULL);
goto IL_0036;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0036:
{
return;
}
}
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable::FillCJKCore(System.String,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTable_FillCJKCore_mD7EE94BA2102F9795992F153AE630903BA74A05C (String_t* ___0_culture, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_cjkLv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C45DB50527FCFAD456E74EB416B617329505309);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F91B436F1FDA448531F89F242574E9FC1A8183B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B0E509E3481549FC8F096287EFB425FAAFC38A4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E984ABC3F146D0F73D38E9AEB96864C5CB5FE7C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DDEA8BF887EF34A1240A262845FAFAF04EFC4DE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7E2F23A67BD173305EF6BA6A3E5DDED9F9E2465);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB2FE77231F429D3D9DC375DB50B86F3FE7DF081);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE984241AE97EB8CC7E8796D3939F5F1C4D012B3A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
uint8_t* V_1 = NULL;
uint32_t V_2 = 0;
intptr_t V_3;
memset((&V_3), 0, sizeof(V_3));
uint32_t V_4 = 0;
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_0;
L_0 = MSCompatUnicodeTable_get_IsReady_m46FD80414521FFE51B8D16D74A40D275EA99E338_inline(NULL);
if (L_0)
{
goto IL_0008;
}
}
{
return;
}
IL_0008:
{
V_0 = (String_t*)NULL;
String_t* L_1 = ___0_culture;
bool L_2;
L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, _stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9, NULL);
if (L_2)
{
goto IL_0040;
}
}
{
String_t* L_3 = ___0_culture;
bool L_4;
L_4 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_3, _stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF, NULL);
if (L_4)
{
goto IL_0056;
}
}
{
String_t* L_5 = ___0_culture;
bool L_6;
L_6 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, _stringLiteral0C45DB50527FCFAD456E74EB416B617329505309, NULL);
if (L_6)
{
goto IL_006c;
}
}
{
String_t* L_7 = ___0_culture;
bool L_8;
L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral4B0E509E3481549FC8F096287EFB425FAAFC38A4, NULL);
if (L_8)
{
goto IL_0082;
}
}
{
goto IL_0096;
}
IL_0040:
{
V_0 = _stringLiteralC7E2F23A67BD173305EF6BA6A3E5DDED9F9E2465;
uint8_t** L_9 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_10 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHScategory_6;
*((intptr_t*)L_9) = (intptr_t)L_10;
uint8_t** L_11 = ___3_lv1Table;
uint8_t* L_12 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHSlv1_10;
*((intptr_t*)L_11) = (intptr_t)L_12;
goto IL_0096;
}
IL_0056:
{
V_0 = _stringLiteral9DDEA8BF887EF34A1240A262845FAFAF04EFC4DE;
uint8_t** L_13 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_14 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHTcategory_7;
*((intptr_t*)L_13) = (intptr_t)L_14;
uint8_t** L_15 = ___3_lv1Table;
uint8_t* L_16 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHTlv1_11;
*((intptr_t*)L_15) = (intptr_t)L_16;
goto IL_0096;
}
IL_006c:
{
V_0 = _stringLiteral2F91B436F1FDA448531F89F242574E9FC1A8183B;
uint8_t** L_17 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_18 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkJAcategory_8;
*((intptr_t*)L_17) = (intptr_t)L_18;
uint8_t** L_19 = ___3_lv1Table;
uint8_t* L_20 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkJAlv1_12;
*((intptr_t*)L_19) = (intptr_t)L_20;
goto IL_0096;
}
IL_0082:
{
V_0 = _stringLiteralE984241AE97EB8CC7E8796D3939F5F1C4D012B3A;
uint8_t** L_21 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t* L_22 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOcategory_9;
*((intptr_t*)L_21) = (intptr_t)L_22;
uint8_t** L_23 = ___3_lv1Table;
uint8_t* L_24 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOlv1_13;
*((intptr_t*)L_23) = (intptr_t)L_24;
}
IL_0096:
{
String_t* L_25 = V_0;
if (!L_25)
{
goto IL_009f;
}
}
{
uint8_t** L_26 = ___3_lv1Table;
if ((((intptr_t)(*((intptr_t*)L_26))) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00a0;
}
}
IL_009f:
{
return;
}
IL_00a0:
{
V_2 = 0;
String_t* L_27 = V_0;
String_t* L_28;
L_28 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteralCB2FE77231F429D3D9DC375DB50B86F3FE7DF081, L_27, NULL);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
intptr_t L_29;
L_29 = MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861(L_28, NULL);
V_3 = L_29;
intptr_t L_30 = V_3;
intptr_t L_31 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_32;
L_32 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_30, L_31, NULL);
if (!L_32)
{
goto IL_00c1;
}
}
{
return;
}
IL_00c1:
{
intptr_t L_33 = V_3;
void* L_34;
L_34 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_33, NULL);
V_1 = (uint8_t*)L_34;
uint32_t L_35 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, 1));
uint8_t* L_36 = V_1;
uint32_t L_37 = V_2;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint32_t L_38;
L_38 = MSCompatUnicodeTable_UInt32FromBytePtr_m1196D0F6F739CB7593C9612EB344A04AC60CAF2A(L_36, L_37, NULL);
V_4 = L_38;
uint32_t L_39 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, 4));
uint8_t** L_40 = ___2_catTable;
uint8_t* L_41 = V_1;
uint32_t L_42 = V_2;
*((intptr_t*)L_40) = (intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_41, (intptr_t)((uintptr_t)L_42)));
uint8_t** L_43 = ___3_lv1Table;
uint8_t* L_44 = V_1;
uint32_t L_45 = V_2;
uint32_t L_46 = V_4;
*((intptr_t*)L_43) = (intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, (intptr_t)((uintptr_t)L_45))), (intptr_t)((uintptr_t)L_46)));
String_t* L_47 = ___0_culture;
bool L_48;
L_48 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_47, _stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9, NULL);
if (L_48)
{
goto IL_011f;
}
}
{
String_t* L_49 = ___0_culture;
bool L_50;
L_50 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_49, _stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF, NULL);
if (L_50)
{
goto IL_012f;
}
}
{
String_t* L_51 = ___0_culture;
bool L_52;
L_52 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_51, _stringLiteral0C45DB50527FCFAD456E74EB416B617329505309, NULL);
if (L_52)
{
goto IL_013f;
}
}
{
String_t* L_53 = ___0_culture;
bool L_54;
L_54 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_53, _stringLiteral4B0E509E3481549FC8F096287EFB425FAAFC38A4, NULL);
if (L_54)
{
goto IL_014f;
}
}
{
goto IL_015d;
}
IL_011f:
{
uint8_t** L_55 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHScategory_6 = (uint8_t*)(*((intptr_t*)L_55));
uint8_t** L_56 = ___3_lv1Table;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHSlv1_10 = (uint8_t*)(*((intptr_t*)L_56));
goto IL_015d;
}
IL_012f:
{
uint8_t** L_57 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHTcategory_7 = (uint8_t*)(*((intptr_t*)L_57));
uint8_t** L_58 = ___3_lv1Table;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkCHTlv1_11 = (uint8_t*)(*((intptr_t*)L_58));
goto IL_015d;
}
IL_013f:
{
uint8_t** L_59 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkJAcategory_8 = (uint8_t*)(*((intptr_t*)L_59));
uint8_t** L_60 = ___3_lv1Table;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkJAlv1_12 = (uint8_t*)(*((intptr_t*)L_60));
goto IL_015d;
}
IL_014f:
{
uint8_t** L_61 = ___2_catTable;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOcategory_9 = (uint8_t*)(*((intptr_t*)L_61));
uint8_t** L_62 = ___3_lv1Table;
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOlv1_13 = (uint8_t*)(*((intptr_t*)L_62));
}
IL_015d:
{
String_t* L_63 = V_0;
bool L_64;
L_64 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_63, _stringLiteralE984241AE97EB8CC7E8796D3939F5F1C4D012B3A, NULL);
if (!L_64)
{
goto IL_016b;
}
}
{
return;
}
IL_016b:
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
intptr_t L_65;
L_65 = MSCompatUnicodeTable_GetResource_mCDCAFD999C324BD03A0F6159C097D98D0004C861(_stringLiteral5E984ABC3F146D0F73D38E9AEB96864C5CB5FE7C, NULL);
V_3 = L_65;
intptr_t L_66 = V_3;
intptr_t L_67 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_68;
L_68 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_66, L_67, NULL);
if (!L_68)
{
goto IL_0184;
}
}
{
return;
}
IL_0184:
{
intptr_t L_69 = V_3;
void* L_70;
L_70 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_69, NULL);
V_1 = (uint8_t*)L_70;
V_2 = 5;
uint8_t* L_71 = V_1;
uint32_t L_72 = V_2;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOlv2_14 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_71, (intptr_t)((uintptr_t)L_72)));
uint8_t** L_73 = ___5_lv2Table;
uint8_t* L_74 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___cjkKOlv2_14;
*((intptr_t*)L_73) = (intptr_t)L_74;
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 Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m59060998DAFC234CD1E093C3BF2E8C11DF1F58E4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596* L_0 = (U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596*)il2cpp_codegen_object_new(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m886B600753BE0193E56546B842AB8528FECB1ED8(L_0, NULL);
((U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m886B600753BE0193E56546B842AB8528FECB1ED8 (U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable/<>c::<BuildTailoringTables>b__17_0(Mono.Globalization.Unicode.Level2Map,Mono.Globalization.Unicode.Level2Map)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CBuildTailoringTablesU3Eb__17_0_m602688B6CEE9BDA27C40F4750616F62FDCA2A3F2 (U3CU3Ec_t8466330897CC37D47C537BF3D889518D35A01596* __this, Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* ___0_a, Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* ___1_b, const RuntimeMethod* method)
{
{
Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* L_0 = ___0_a;
NullCheck(L_0);
uint8_t L_1 = L_0->___Source_0;
Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* L_2 = ___1_b;
NullCheck(L_2);
uint8_t L_3 = L_2->___Source_0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_3));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Globalization.Unicode.MSCompatUnicodeTableUtil::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MSCompatUnicodeTableUtil__cctor_m271465BE514453A62BA130F1A3592D4EE754B864 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____042957A0DB5FF2D38A343AC5AE5F8635B88F10C32EB87A238B1DFB4756468476_1_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____0F9E3C7E66CDEF5C44FA29E65CA676C480F7A2A4A067F70107FDC292C68D38B0_4_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____2403FBEA85D0741C5727760E97EF16C9BF23294F21C0F1265A4BAF7F22202A64_12_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3D95E4501B1964D7FCE16E3F5682A038752B462357D87343880B1E819F6163FE_16_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____42E1421FC2A5A6A33E964D7EB9603EB101818D858DDA09B2BC9B5A888C1C351C_18_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____BB425A9B43E10C921902A25D07A4317DEFF9F606A788672E1B21633C143407F0_62_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E32C465157D21F39B3DBF186A98FB02185C63B0260B47247A7A5FDF2B061EAA8_80_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E5F4F6214036DF103321A8A0CE30C2EF935694B4199D52BC538E7EF3F045CB92_81_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____EF82B163CA8252A793A6E73F57775D843C9A21F65586926EB11893FA8BB603E9_86_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FEC387BA57A54BB6066E4CA8A4F9C0FF9C36B9CBD6600C3683F6FB1BDB5077EB_95_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_4 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_5 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_7 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_8 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_9 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_10 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_11 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_12 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_13 = NULL;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)((int32_t)40960));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = L_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)((int32_t)63744));
V_0 = L_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = L_3;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____042957A0DB5FF2D38A343AC5AE5F8635B88F10C32EB87A238B1DFB4756468476_1_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_4, L_5, NULL);
V_1 = L_4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)6);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = L_6;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FEC387BA57A54BB6066E4CA8A4F9C0FF9C36B9CBD6600C3683F6FB1BDB5077EB_95_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_7, L_8, NULL);
V_2 = L_7;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)6);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = L_9;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E5F4F6214036DF103321A8A0CE30C2EF935694B4199D52BC538E7EF3F045CB92_81_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_10, L_11, NULL);
V_3 = L_10;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)6);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = L_12;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____FEC387BA57A54BB6066E4CA8A4F9C0FF9C36B9CBD6600C3683F6FB1BDB5077EB_95_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_13, L_14, NULL);
V_4 = L_13;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)6);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = L_15;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_17 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E5F4F6214036DF103321A8A0CE30C2EF935694B4199D52BC538E7EF3F045CB92_81_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_16, L_17, NULL);
V_5 = L_16;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_18 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = L_18;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_20 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3D95E4501B1964D7FCE16E3F5682A038752B462357D87343880B1E819F6163FE_16_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_19, L_20, NULL);
V_6 = L_19;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = L_21;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_23 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____BB425A9B43E10C921902A25D07A4317DEFF9F606A788672E1B21633C143407F0_62_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_22, L_23, NULL);
V_7 = L_22;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_24 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = L_24;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_26 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3D95E4501B1964D7FCE16E3F5682A038752B462357D87343880B1E819F6163FE_16_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_25, L_26, NULL);
V_8 = L_25;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_27 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28 = L_27;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_29 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____EF82B163CA8252A793A6E73F57775D843C9A21F65586926EB11893FA8BB603E9_86_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_28, L_29, NULL);
V_9 = L_28;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_30 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_31 = L_30;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_32 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____0F9E3C7E66CDEF5C44FA29E65CA676C480F7A2A4A067F70107FDC292C68D38B0_4_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_31, L_32, NULL);
V_10 = L_31;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = L_33;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_35 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____42E1421FC2A5A6A33E964D7EB9603EB101818D858DDA09B2BC9B5A888C1C351C_18_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_34, L_35, NULL);
V_11 = L_34;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_37 = L_36;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_38 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____2403FBEA85D0741C5727760E97EF16C9BF23294F21C0F1265A4BAF7F22202A64_12_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_37, L_38, NULL);
V_12 = L_37;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_39 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_40 = L_39;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_41 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E32C465157D21F39B3DBF186A98FB02185C63B0260B47247A7A5FDF2B061EAA8_80_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_40, L_41, NULL);
V_13 = L_40;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_42 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_43 = V_1;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_44 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_44);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_44, L_42, L_43, (-1), (-1), NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Ignorable_0 = L_44;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Ignorable_0), (void*)L_44);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_45 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_46 = V_3;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_47 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_47);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_47, L_45, L_46, 0, 0, NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Category_1 = L_47;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Category_1), (void*)L_47);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_48 = V_4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_49 = V_5;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_50 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_50);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_50, L_48, L_49, 0, 0, NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level1_2 = L_50;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level1_2), (void*)L_50);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_51 = V_6;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_52 = V_7;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_53 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_53);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_53, L_51, L_52, 0, 0, NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level2_3 = L_53;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level2_3), (void*)L_53);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_54 = V_8;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_55 = V_9;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_56 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_56);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_56, L_54, L_55, 0, 0, NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level3_4 = L_56;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Level3_4), (void*)L_56);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_57 = V_10;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_58 = V_11;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_59 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_59);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_59, L_57, L_58, (-1), (-1), NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___CjkCHS_5 = L_59;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___CjkCHS_5), (void*)L_59);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_60 = V_12;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_61 = V_13;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_62 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_62);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_62, L_60, L_61, (-1), (-1), NULL);
((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Cjk_6 = L_62;
Il2CppCodeGenWriteBarrier((void**)(&((MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTableUtil_t60D574A3DED36AB95979696A37D88094A50FE927_il2cpp_TypeInfo_var))->___Cjk_6), (void*)L_62);
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 Mono.Globalization.Unicode.NormalizationTableUtil::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NormalizationTableUtil__cctor_mC020991A61ECF7C95D47C0C116CBEBCB1A79D29F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____4623CA5867960AA898AA1F65E720CD5ECD3552542E0C6F6FB65B21D14DD1CBC2_19_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____508085E0DDEEA9CE48BFAE98CEC779F8D06301AE973555D37680D08190CAFA70_22_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____9960C7FC60CDD325C8A2A00995BE7064EAC3F6295C6A5C4E797D2281846131E4_51_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____99E66DACA3EFF94776AF1258E0E5B2F4DF2900E4EA32351B0DF37A87F2426B1F_52_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A2DFDF9C2CED8BB1C0B9B06064345ACC9C22DFE5FEC9976FF061F0994451519B_54_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____BABD01C34E7E65E57E4C431281E782B4101CE0644A8090AD6E501F1C6CF2C9DF_61_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C250CAD28060A4EB63B4C4A643DDA196CCD35FD2FC67FB749ADF4BAC6D62E1A0_63_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____CAFFFC9D15E4037EE8FBDB1A45DFE456F0936BDC7310F1882EAF14B706A76658_69_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D896D464C3726A21162F271ACB711464AD07EA9C9CE78E0297FD0DE934471FA6_73_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____EBE07C3718876777F609CD22058F4C3A6CCCC695F5BDE90998DC1E12E0CBE63D_84_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_4 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_5 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_7 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_8 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_9 = NULL;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)11));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____508085E0DDEEA9CE48BFAE98CEC779F8D06301AE973555D37680D08190CAFA70_22_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_1, L_2, NULL);
V_0 = L_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)11));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = L_3;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____99E66DACA3EFF94776AF1258E0E5B2F4DF2900E4EA32351B0DF37A87F2426B1F_52_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_4, L_5, NULL);
V_1 = L_4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = L_6;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____9960C7FC60CDD325C8A2A00995BE7064EAC3F6295C6A5C4E797D2281846131E4_51_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_7, L_8, NULL);
V_2 = L_7;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = L_9;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____CAFFFC9D15E4037EE8FBDB1A45DFE456F0936BDC7310F1882EAF14B706A76658_69_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_10, L_11, NULL);
V_3 = L_10;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = L_12;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A2DFDF9C2CED8BB1C0B9B06064345ACC9C22DFE5FEC9976FF061F0994451519B_54_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_13, L_14, NULL);
V_4 = L_13;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = L_15;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_17 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____4623CA5867960AA898AA1F65E720CD5ECD3552542E0C6F6FB65B21D14DD1CBC2_19_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_16, L_17, NULL);
V_5 = L_16;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_18 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = L_18;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_20 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____EBE07C3718876777F609CD22058F4C3A6CCCC695F5BDE90998DC1E12E0CBE63D_84_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_19, L_20, NULL);
V_6 = L_19;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = L_21;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_23 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D896D464C3726A21162F271ACB711464AD07EA9C9CE78E0297FD0DE934471FA6_73_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_22, L_23, NULL);
V_7 = L_22;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_24 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = L_24;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_26 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C250CAD28060A4EB63B4C4A643DDA196CCD35FD2FC67FB749ADF4BAC6D62E1A0_63_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_25, L_26, NULL);
V_8 = L_25;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_27 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28 = L_27;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_29 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____BABD01C34E7E65E57E4C431281E782B4101CE0644A8090AD6E501F1C6CF2C9DF_61_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_28, L_29, NULL);
V_9 = L_28;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_30 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_31 = V_1;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_32 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_32);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_32, L_30, L_31, 0, 0, NULL);
((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Prop_0 = L_32;
Il2CppCodeGenWriteBarrier((void**)(&((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Prop_0), (void*)L_32);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = V_3;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_35 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_35);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_35, L_33, L_34, 0, 0, NULL);
((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Map_1 = L_35;
Il2CppCodeGenWriteBarrier((void**)(&((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Map_1), (void*)L_35);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = V_4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_37 = V_5;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_38 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_38);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_38, L_36, L_37, 0, 0, NULL);
((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Combining_2 = L_38;
Il2CppCodeGenWriteBarrier((void**)(&((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Combining_2), (void*)L_38);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_39 = V_6;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_40 = V_7;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_41 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_41);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_41, L_39, L_40, 0, 0, NULL);
((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Composite_3 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Composite_3), (void*)L_41);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_42 = V_8;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_43 = V_9;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_44 = (CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF*)il2cpp_codegen_object_new(CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF_il2cpp_TypeInfo_var);
NullCheck(L_44);
CodePointIndexer__ctor_m795A291D258C73A5AD0D38F8A0E3007AE3B56D62(L_44, L_42, L_43, 0, 0, NULL);
((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Helper_4 = L_44;
Il2CppCodeGenWriteBarrier((void**)(&((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Helper_4), (void*)L_44);
return;
}
}
// System.Int32 Mono.Globalization.Unicode.NormalizationTableUtil::PropIdx(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NormalizationTableUtil_PropIdx_m24FE7DF3148EEF66F9F2ED2CCB33A19B918D9A20 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_0 = ((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Prop_0;
int32_t L_1 = ___0_cp;
NullCheck(L_0);
int32_t L_2;
L_2 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_0, L_1, NULL);
return L_2;
}
}
// System.Int32 Mono.Globalization.Unicode.NormalizationTableUtil::MapIdx(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NormalizationTableUtil_MapIdx_mBFE062C4BB5E37BEBFC9FE44218B12D0BDFEA354 (int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_0 = ((NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t1FE345A09617E136461E19D9B97D74D0CBF6E940_il2cpp_TypeInfo_var))->___Map_1;
int32_t L_1 = ___0_cp;
NullCheck(L_0);
int32_t L_2;
L_2 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_0, L_1, NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Globalization.Unicode.SimpleCollator::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator__ctor_m457B2E914BEC0BB426FFE60448571037A0F3C499 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, 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*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* V_0 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_1 = NULL;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* V_2 = NULL;
int32_t V_3 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_4 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_5 = NULL;
int32_t V_6 = 0;
Il2CppChar V_7 = 0x0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_8 = NULL;
Il2CppChar V_9 = 0x0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_culture;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_0);
__this->___lcid_10 = L_1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___0_culture;
NullCheck(L_2);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_3;
L_3 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
__this->___textInfo_1 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___textInfo_1), (void*)L_3);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4 = ___0_culture;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_5 = (&__this->___cjkIndexer_2);
uint8_t** L_6 = (&__this->___cjkCatTable_6);
uint8_t** L_7 = (&__this->___cjkLv1Table_7);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_8 = (&__this->___cjkLv2Indexer_9);
uint8_t** L_9 = (&__this->___cjkLv2Table_8);
SimpleCollator_SetCJKTable_mCCCB23CC548A4BAF92C2AA5B17CA14459D0E9B8F(__this, L_4, L_5, L_6, L_7, L_8, L_9, NULL);
V_0 = (TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A*)NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_10 = ___0_culture;
V_1 = L_10;
goto IL_005f;
}
IL_0049:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11 = V_1;
NullCheck(L_11);
int32_t L_12;
L_12 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_11);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_13;
L_13 = MSCompatUnicodeTable_GetTailoringInfo_mB25850226E6CEABF5AC34B2A168E33FF9BB5D930(L_12, NULL);
V_0 = L_13;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_14 = V_0;
if (L_14)
{
goto IL_0069;
}
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_15 = V_1;
NullCheck(L_15);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_16;
L_16 = VirtualFuncInvoker0< CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* >::Invoke(9 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_15);
V_1 = L_16;
}
IL_005f:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_17 = V_1;
NullCheck(L_17);
int32_t L_18;
L_18 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_17);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)127)))))
{
goto IL_0049;
}
}
IL_0069:
{
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_19 = V_0;
if (L_19)
{
goto IL_0074;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_20;
L_20 = MSCompatUnicodeTable_GetTailoringInfo_mB25850226E6CEABF5AC34B2A168E33FF9BB5D930(((int32_t)127), NULL);
V_0 = L_20;
}
IL_0074:
{
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_21 = V_0;
NullCheck(L_21);
bool L_22 = L_21->___FrenchSort_3;
__this->___frenchSort_11 = L_22;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_23 = ___0_culture;
TailoringInfo_t90C886DE804805F1156719A9F63CB07E3BA7A84A* L_24 = V_0;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E** L_25 = (&__this->___contractions_3);
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C** L_26 = (&__this->___level2Maps_4);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
MSCompatUnicodeTable_BuildTailoringTables_m799DB61E22220EB93396E091DE35ABB161061BBA(L_23, L_24, L_25, L_26, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)96));
__this->___unsafeFlags_5 = L_27;
Il2CppCodeGenWriteBarrier((void**)(&__this->___unsafeFlags_5), (void*)L_27);
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_28 = __this->___contractions_3;
V_2 = L_28;
V_3 = 0;
goto IL_0101;
}
IL_00ab:
{
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_29 = V_2;
int32_t L_30 = V_3;
NullCheck(L_29);
int32_t L_31 = L_30;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_4 = L_32;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_33 = V_4;
NullCheck(L_33);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = L_33->___Source_1;
NullCheck(L_34);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length))) <= ((int32_t)1)))
{
goto IL_00fd;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_35 = V_4;
NullCheck(L_35);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = L_35->___Source_1;
V_5 = L_36;
V_6 = 0;
goto IL_00f5;
}
IL_00ca:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = V_5;
int32_t L_38 = V_6;
NullCheck(L_37);
int32_t L_39 = L_38;
uint16_t L_40 = (uint16_t)(L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
V_7 = L_40;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = __this->___unsafeFlags_5;
Il2CppChar L_42 = V_7;
NullCheck(L_41);
uint8_t* L_43 = ((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_42/8)))));
int32_t L_44 = *((uint8_t*)L_43);
Il2CppChar L_45 = V_7;
*((int8_t*)L_43) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_44|((int32_t)(uint8_t)((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_45&7))&((int32_t)31)))))))));
int32_t L_46 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_46, 1));
}
IL_00f5:
{
int32_t L_47 = V_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_48 = V_5;
NullCheck(L_48);
if ((((int32_t)L_47) < ((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))))
{
goto IL_00ca;
}
}
IL_00fd:
{
int32_t L_49 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
}
IL_0101:
{
int32_t L_50 = V_3;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_51 = V_2;
NullCheck(L_51);
if ((((int32_t)L_50) < ((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))))
{
goto IL_00ab;
}
}
{
int32_t L_52 = __this->___lcid_10;
if ((((int32_t)L_52) == ((int32_t)((int32_t)127))))
{
goto IL_017c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* L_53 = ((SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_StaticFields*)il2cpp_codegen_static_fields_for(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var))->___invariant_0;
NullCheck(L_53);
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_54 = L_53->___contractions_3;
V_2 = L_54;
V_3 = 0;
goto IL_0176;
}
IL_0120:
{
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_55 = V_2;
int32_t L_56 = V_3;
NullCheck(L_55);
int32_t L_57 = L_56;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
V_8 = L_58;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_59 = V_8;
NullCheck(L_59);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_60 = L_59->___Source_1;
NullCheck(L_60);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_60)->max_length))) <= ((int32_t)1)))
{
goto IL_0172;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_61 = V_8;
NullCheck(L_61);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_62 = L_61->___Source_1;
V_5 = L_62;
V_6 = 0;
goto IL_016a;
}
IL_013f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = V_5;
int32_t L_64 = V_6;
NullCheck(L_63);
int32_t L_65 = L_64;
uint16_t L_66 = (uint16_t)(L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_65));
V_9 = L_66;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_67 = __this->___unsafeFlags_5;
Il2CppChar L_68 = V_9;
NullCheck(L_67);
uint8_t* L_69 = ((L_67)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_68/8)))));
int32_t L_70 = *((uint8_t*)L_69);
Il2CppChar L_71 = V_9;
*((int8_t*)L_69) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_70|((int32_t)(uint8_t)((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_71&7))&((int32_t)31)))))))));
int32_t L_72 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_72, 1));
}
IL_016a:
{
int32_t L_73 = V_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_74 = V_5;
NullCheck(L_74);
if ((((int32_t)L_73) < ((int32_t)((int32_t)(((RuntimeArray*)L_74)->max_length)))))
{
goto IL_013f;
}
}
IL_0172:
{
int32_t L_75 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_75, 1));
}
IL_0176:
{
int32_t L_76 = V_3;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_77 = V_2;
NullCheck(L_77);
if ((((int32_t)L_76) < ((int32_t)((int32_t)(((RuntimeArray*)L_77)->max_length)))))
{
goto IL_0120;
}
}
IL_017c:
{
return;
}
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::SetCJKTable(System.Globalization.CultureInfo,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&,System.Byte*&,Mono.Globalization.Unicode.CodePointIndexer&,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_SetCJKTable_mCCCB23CC548A4BAF92C2AA5B17CA14459D0E9B8F (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___1_cjkIndexer, uint8_t** ___2_catTable, uint8_t** ___3_lv1Table, CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** ___4_lv2Indexer, uint8_t** ___5_lv2Table, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_culture;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = SimpleCollator_GetNeutralCulture_mC1A6DE98ABAC1AE2E7FA2E55CD53628E2BD344D0(L_0, NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_1);
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_3 = ___1_cjkIndexer;
uint8_t** L_4 = ___2_catTable;
uint8_t** L_5 = ___3_lv1Table;
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF** L_6 = ___4_lv2Indexer;
uint8_t** L_7 = ___5_lv2Table;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
MSCompatUnicodeTable_FillCJK_mAD65881B382330F76AFB13D545E0D5D5C43BA018(L_2, L_3, L_4, L_5, L_6, L_7, NULL);
return;
}
}
// System.Globalization.CultureInfo Mono.Globalization.Unicode.SimpleCollator::GetNeutralCulture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* SimpleCollator_GetNeutralCulture_mC1A6DE98ABAC1AE2E7FA2E55CD53628E2BD344D0 (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_info, const RuntimeMethod* method)
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_0 = NULL;
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_info;
V_0 = L_0;
goto IL_000b;
}
IL_0004:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1 = V_0;
NullCheck(L_1);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2;
L_2 = VirtualFuncInvoker0< CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* >::Invoke(9 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_1);
V_0 = L_2;
}
IL_000b:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_3 = V_0;
NullCheck(L_3);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4;
L_4 = VirtualFuncInvoker0< CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* >::Invoke(9 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_3);
if (!L_4)
{
goto IL_0022;
}
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5 = V_0;
NullCheck(L_5);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = VirtualFuncInvoker0< CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* >::Invoke(9 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_5);
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_6);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)127)))))
{
goto IL_0004;
}
}
IL_0022:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8 = V_0;
return L_8;
}
}
// System.Byte Mono.Globalization.Unicode.SimpleCollator::Category(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___0_cp;
if ((((int32_t)L_0) < ((int32_t)((int32_t)12288))))
{
goto IL_0012;
}
}
{
uint8_t* L_1 = __this->___cjkCatTable_6;
if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0019;
}
}
IL_0012:
{
int32_t L_2 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_3;
L_3 = MSCompatUnicodeTable_Category_m901E734DD977E1CE752480BBF162A60E069BEF33(L_2, NULL);
return L_3;
}
IL_0019:
{
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_4 = __this->___cjkIndexer_2;
int32_t L_5 = ___0_cp;
NullCheck(L_4);
int32_t L_6;
L_6 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_4, L_5, NULL);
V_0 = L_6;
int32_t L_7 = V_0;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
uint8_t* L_8 = __this->___cjkCatTable_6;
int32_t L_9 = V_0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, L_9)));
return (uint8_t)L_10;
}
IL_0034:
{
int32_t L_11 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_12;
L_12 = MSCompatUnicodeTable_Category_m901E734DD977E1CE752480BBF162A60E069BEF33(L_11, NULL);
return L_12;
}
}
// System.Byte Mono.Globalization.Unicode.SimpleCollator::Level1(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_cp, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___0_cp;
if ((((int32_t)L_0) < ((int32_t)((int32_t)12288))))
{
goto IL_0012;
}
}
{
uint8_t* L_1 = __this->___cjkLv1Table_7;
if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0019;
}
}
IL_0012:
{
int32_t L_2 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_3;
L_3 = MSCompatUnicodeTable_Level1_m872E781969947F0D27078ABA702E6E6BAD123A27(L_2, NULL);
return L_3;
}
IL_0019:
{
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_4 = __this->___cjkIndexer_2;
int32_t L_5 = ___0_cp;
NullCheck(L_4);
int32_t L_6;
L_6 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_4, L_5, NULL);
V_0 = L_6;
int32_t L_7 = V_0;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
uint8_t* L_8 = __this->___cjkLv1Table_7;
int32_t L_9 = V_0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, L_9)));
return (uint8_t)L_10;
}
IL_0034:
{
int32_t L_11 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_12;
L_12 = MSCompatUnicodeTable_Level1_m872E781969947F0D27078ABA702E6E6BAD123A27(L_11, NULL);
return L_12;
}
}
// System.Byte Mono.Globalization.Unicode.SimpleCollator::Level2(System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_cp, int32_t ___1_ext, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t V_1 = 0x0;
int32_t V_2 = 0;
int32_t G_B10_0 = 0;
{
int32_t L_0 = ___1_ext;
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_0006;
}
}
{
return (uint8_t)5;
}
IL_0006:
{
int32_t L_1 = ___1_ext;
if ((!(((uint32_t)L_1) == ((uint32_t)3))))
{
goto IL_000c;
}
}
{
return (uint8_t)0;
}
IL_000c:
{
int32_t L_2 = ___0_cp;
if ((((int32_t)L_2) < ((int32_t)((int32_t)12288))))
{
goto IL_001e;
}
}
{
uint8_t* L_3 = __this->___cjkLv2Table_8;
if ((!(((uintptr_t)L_3) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0025;
}
}
IL_001e:
{
int32_t L_4 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_5;
L_5 = MSCompatUnicodeTable_Level2_m43E56E2872610B1D0D0F5425BEC16C9E41A47B29(L_4, NULL);
return L_5;
}
IL_0025:
{
CodePointIndexer_tDB29485BEDB55D414DA8F327ACDC24A37B5300EF* L_6 = __this->___cjkLv2Indexer_9;
int32_t L_7 = ___0_cp;
NullCheck(L_6);
int32_t L_8;
L_8 = CodePointIndexer_ToIndex_m5B3502DBB6A1CCDBA58E160B8CFA9625AE80EFF4(L_6, L_7, NULL);
V_0 = L_8;
int32_t L_9 = V_0;
if ((((int32_t)L_9) < ((int32_t)0)))
{
goto IL_0041;
}
}
{
uint8_t* L_10 = __this->___cjkLv2Table_8;
int32_t L_11 = V_0;
int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11)));
G_B10_0 = L_12;
goto IL_0042;
}
IL_0041:
{
G_B10_0 = 0;
}
IL_0042:
{
V_1 = (uint8_t)G_B10_0;
uint8_t L_13 = V_1;
if (!L_13)
{
goto IL_0048;
}
}
{
uint8_t L_14 = V_1;
return L_14;
}
IL_0048:
{
int32_t L_15 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_16;
L_16 = MSCompatUnicodeTable_Level2_m43E56E2872610B1D0D0F5425BEC16C9E41A47B29(L_15, NULL);
V_1 = L_16;
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* L_17 = __this->___level2Maps_4;
NullCheck(L_17);
if ((((RuntimeArray*)L_17)->max_length))
{
goto IL_005a;
}
}
{
uint8_t L_18 = V_1;
return L_18;
}
IL_005a:
{
V_2 = 0;
goto IL_0090;
}
IL_005e:
{
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* L_19 = __this->___level2Maps_4;
int32_t L_20 = V_2;
NullCheck(L_19);
int32_t L_21 = L_20;
Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_22);
uint8_t L_23 = L_22->___Source_0;
uint8_t L_24 = V_1;
if ((!(((uint32_t)L_23) == ((uint32_t)L_24))))
{
goto IL_007c;
}
}
{
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* L_25 = __this->___level2Maps_4;
int32_t L_26 = V_2;
NullCheck(L_25);
int32_t L_27 = L_26;
Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
NullCheck(L_28);
uint8_t L_29 = L_28->___Replace_1;
return L_29;
}
IL_007c:
{
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* L_30 = __this->___level2Maps_4;
int32_t L_31 = V_2;
NullCheck(L_30);
int32_t L_32 = L_31;
Level2Map_t5D4D125900566ECEC690FF07AF3EABF34F7A7EC1* L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
NullCheck(L_33);
uint8_t L_34 = L_33->___Source_0;
uint8_t L_35 = V_1;
if ((((int32_t)L_34) > ((int32_t)L_35)))
{
goto IL_009b;
}
}
{
int32_t L_36 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_36, 1));
}
IL_0090:
{
int32_t L_37 = V_2;
Level2MapU5BU5D_t0A034BF792949B2B7421CBAFAD423AFB86CEED0C* L_38 = __this->___level2Maps_4;
NullCheck(L_38);
if ((((int32_t)L_37) < ((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length)))))
{
goto IL_005e;
}
}
IL_009b:
{
uint8_t L_39 = V_1;
return L_39;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsHalfKana(System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35 (int32_t ___0_cp, int32_t ___1_opt, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___1_opt;
if (((int32_t)((int32_t)L_0&((int32_t)16))))
{
goto IL_000e;
}
}
{
int32_t L_1 = ___0_cp;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_2;
L_2 = MSCompatUnicodeTable_IsHalfWidthKana_m92E8F8CEFE6FD1106DD4195367727CA8F99D76AE(((int32_t)(uint16_t)L_1), NULL);
return L_2;
}
IL_000e:
{
return (bool)1;
}
}
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetContraction(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_0 = NULL;
{
String_t* L_0 = ___0_s;
int32_t L_1 = ___1_start;
int32_t L_2 = ___2_end;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_3 = __this->___contractions_3;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_4;
L_4 = SimpleCollator_GetContraction_m2445BD1740B0C42EFE1052BEF11FE44E337CD1D6(__this, L_0, L_1, L_2, L_3, NULL);
V_0 = L_4;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_5 = V_0;
if (L_5)
{
goto IL_001d;
}
}
{
int32_t L_6 = __this->___lcid_10;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)127)))))
{
goto IL_001f;
}
}
IL_001d:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_7 = V_0;
return L_7;
}
IL_001f:
{
String_t* L_8 = ___0_s;
int32_t L_9 = ___1_start;
int32_t L_10 = ___2_end;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* L_11 = ((SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_StaticFields*)il2cpp_codegen_static_fields_for(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var))->___invariant_0;
NullCheck(L_11);
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_12 = L_11->___contractions_3;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_13;
L_13 = SimpleCollator_GetContraction_m2445BD1740B0C42EFE1052BEF11FE44E337CD1D6(__this, L_8, L_9, L_10, L_12, NULL);
return L_13;
}
}
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetContraction(System.String,System.Int32,System.Int32,Mono.Globalization.Unicode.Contraction[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetContraction_m2445BD1740B0C42EFE1052BEF11FE44E337CD1D6 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ___3_clist, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_1 = NULL;
int32_t V_2 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL;
bool V_4 = false;
int32_t V_5 = 0;
{
V_0 = 0;
goto IL_0067;
}
IL_0004:
{
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_0 = ___3_clist;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_4 = V_1;
NullCheck(L_4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4->___Source_1;
NullCheck(L_5);
int32_t L_6 = 0;
uint16_t L_7 = (uint16_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
String_t* L_8 = ___0_s;
int32_t L_9 = ___1_start;
NullCheck(L_8);
Il2CppChar L_10;
L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, L_9, NULL);
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_10));
int32_t L_11 = V_2;
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0020;
}
}
{
return (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
}
IL_0020:
{
int32_t L_12 = V_2;
if ((((int32_t)L_12) < ((int32_t)0)))
{
goto IL_0063;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_13 = V_1;
NullCheck(L_13);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = L_13->___Source_1;
V_3 = L_14;
int32_t L_15 = ___2_end;
int32_t L_16 = ___1_start;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = V_3;
NullCheck(L_17);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_15, L_16))) < ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))
{
goto IL_0063;
}
}
{
V_4 = (bool)1;
V_5 = 0;
goto IL_0056;
}
IL_003b:
{
String_t* L_18 = ___0_s;
int32_t L_19 = ___1_start;
int32_t L_20 = V_5;
NullCheck(L_18);
Il2CppChar L_21;
L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, ((int32_t)il2cpp_codegen_add(L_19, L_20)), NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = V_3;
int32_t L_23 = V_5;
NullCheck(L_22);
int32_t L_24 = L_23;
uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
if ((((int32_t)L_21) == ((int32_t)L_25)))
{
goto IL_0050;
}
}
{
V_4 = (bool)0;
goto IL_005d;
}
IL_0050:
{
int32_t L_26 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_0056:
{
int32_t L_27 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = V_3;
NullCheck(L_28);
if ((((int32_t)L_27) < ((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
{
goto IL_003b;
}
}
IL_005d:
{
bool L_29 = V_4;
if (!L_29)
{
goto IL_0063;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_30 = V_1;
return L_30;
}
IL_0063:
{
int32_t L_31 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_31, 1));
}
IL_0067:
{
int32_t L_32 = V_0;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_33 = ___3_clist;
NullCheck(L_33);
if ((((int32_t)L_32) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length)))))
{
goto IL_0004;
}
}
{
return (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
}
}
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetTailContraction(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetTailContraction_m9C3AD899404EEB2A61C0DA596E97CF81E62F4BC1 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_0 = NULL;
{
String_t* L_0 = ___0_s;
int32_t L_1 = ___1_start;
int32_t L_2 = ___2_end;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_3 = __this->___contractions_3;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_4;
L_4 = SimpleCollator_GetTailContraction_m5B278B3F2B83D8C24ADFB172C071ABB40D3D9004(__this, L_0, L_1, L_2, L_3, NULL);
V_0 = L_4;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_5 = V_0;
if (L_5)
{
goto IL_001d;
}
}
{
int32_t L_6 = __this->___lcid_10;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)127)))))
{
goto IL_001f;
}
}
IL_001d:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_7 = V_0;
return L_7;
}
IL_001f:
{
String_t* L_8 = ___0_s;
int32_t L_9 = ___1_start;
int32_t L_10 = ___2_end;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* L_11 = ((SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_StaticFields*)il2cpp_codegen_static_fields_for(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var))->___invariant_0;
NullCheck(L_11);
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_12 = L_11->___contractions_3;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_13;
L_13 = SimpleCollator_GetTailContraction_m5B278B3F2B83D8C24ADFB172C071ABB40D3D9004(__this, L_8, L_9, L_10, L_12, NULL);
return L_13;
}
}
// Mono.Globalization.Unicode.Contraction Mono.Globalization.Unicode.SimpleCollator::GetTailContraction(System.String,System.Int32,System.Int32,Mono.Globalization.Unicode.Contraction[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* SimpleCollator_GetTailContraction_m5B278B3F2B83D8C24ADFB172C071ABB40D3D9004 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* ___3_clist, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_1 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL;
bool V_3 = false;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
int32_t L_0 = ___1_start;
int32_t L_1 = ___2_end;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_001c;
}
}
{
int32_t L_2 = ___2_end;
if ((((int32_t)L_2) < ((int32_t)(-1))))
{
goto IL_001c;
}
}
{
int32_t L_3 = ___1_start;
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_001c;
}
}
{
String_t* L_6 = ___0_s;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
int32_t L_8 = ___2_end;
if ((((int32_t)L_7) > ((int32_t)((int32_t)il2cpp_codegen_add(L_8, 1)))))
{
goto IL_0039;
}
}
IL_001c:
{
int32_t L_9 = ___1_start;
int32_t L_10 = L_9;
RuntimeObject* L_11 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_10);
int32_t L_12 = ___2_end;
int32_t L_13 = L_12;
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13);
String_t* L_15 = ___0_s;
String_t* L_16;
L_16 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE132EE424C20BA450E30E9FE0BA4CA35C197C729)), L_11, L_14, L_15, NULL);
SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* L_17 = (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295_il2cpp_TypeInfo_var)));
NullCheck(L_17);
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(L_17, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleCollator_GetTailContraction_m5B278B3F2B83D8C24ADFB172C071ABB40D3D9004_RuntimeMethod_var)));
}
IL_0039:
{
V_0 = 0;
goto IL_009f;
}
IL_003d:
{
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_18 = ___3_clist;
int32_t L_19 = V_0;
NullCheck(L_18);
int32_t L_20 = L_19;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
V_1 = L_21;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_22 = V_1;
NullCheck(L_22);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = L_22->___Source_1;
V_2 = L_23;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_2;
NullCheck(L_24);
int32_t L_25 = ___1_start;
int32_t L_26 = ___2_end;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_25, L_26)))))
{
goto IL_009b;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = V_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = V_2;
NullCheck(L_28);
NullCheck(L_27);
int32_t L_29 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_28)->max_length)), 1));
uint16_t L_30 = (uint16_t)(L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
String_t* L_31 = ___0_s;
int32_t L_32 = ___1_start;
NullCheck(L_31);
Il2CppChar L_33;
L_33 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_31, L_32, NULL);
if ((!(((uint32_t)L_30) == ((uint32_t)L_33))))
{
goto IL_009b;
}
}
{
V_3 = (bool)1;
V_4 = 0;
int32_t L_34 = ___1_start;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = V_2;
NullCheck(L_35);
V_5 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_34, ((int32_t)(((RuntimeArray*)L_35)->max_length)))), 1));
goto IL_008f;
}
IL_0071:
{
String_t* L_36 = ___0_s;
int32_t L_37 = V_5;
NullCheck(L_36);
Il2CppChar L_38;
L_38 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_36, L_37, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = V_2;
int32_t L_40 = V_4;
NullCheck(L_39);
int32_t L_41 = L_40;
uint16_t L_42 = (uint16_t)(L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
if ((((int32_t)L_38) == ((int32_t)L_42)))
{
goto IL_0083;
}
}
{
V_3 = (bool)0;
goto IL_0096;
}
IL_0083:
{
int32_t L_43 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_43, 1));
int32_t L_44 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_44, 1));
}
IL_008f:
{
int32_t L_45 = V_4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = V_2;
NullCheck(L_46);
if ((((int32_t)L_45) < ((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length)))))
{
goto IL_0071;
}
}
IL_0096:
{
bool L_47 = V_3;
if (!L_47)
{
goto IL_009b;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_48 = V_1;
return L_48;
}
IL_009b:
{
int32_t L_49 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_49, 1));
}
IL_009f:
{
int32_t L_50 = V_0;
ContractionU5BU5D_tD76701CE220641F1712FA6E03D3144F77CD8508E* L_51 = ___3_clist;
NullCheck(L_51);
if ((((int32_t)L_50) < ((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))))
{
goto IL_003d;
}
}
{
return (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::FilterOptions(System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, int32_t ___1_opt, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___1_opt;
if (!((int32_t)((int32_t)L_0&((int32_t)16))))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
int32_t L_2;
L_2 = MSCompatUnicodeTable_ToWidthCompat_mE7DA75A49B8982E9A6FCE01F876700FC86E85F3D(L_1, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_0013;
}
}
{
int32_t L_4 = V_0;
___0_i = L_4;
}
IL_0013:
{
int32_t L_5 = ___1_opt;
if (!((int32_t)((int32_t)L_5&((int32_t)268435456))))
{
goto IL_002b;
}
}
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_6 = __this->___textInfo_1;
int32_t L_7 = ___0_i;
NullCheck(L_6);
Il2CppChar L_8;
L_8 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_6, ((int32_t)(uint16_t)L_7));
___0_i = L_8;
}
IL_002b:
{
int32_t L_9 = ___1_opt;
if (!((int32_t)((int32_t)L_9&1)))
{
goto IL_003f;
}
}
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_10 = __this->___textInfo_1;
int32_t L_11 = ___0_i;
NullCheck(L_10);
Il2CppChar L_12;
L_12 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_10, ((int32_t)(uint16_t)L_11));
___0_i = L_12;
}
IL_003f:
{
int32_t L_13 = ___1_opt;
if (!((int32_t)((int32_t)L_13&8)))
{
goto IL_004c;
}
}
{
int32_t L_14 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
int32_t L_15;
L_15 = MSCompatUnicodeTable_ToKanaTypeInsensitive_m3E4E4DC538A41C6D672A1EEF4C8F1DD4D19D6F1D(L_14, NULL);
___0_i = L_15;
}
IL_004c:
{
int32_t L_16 = ___0_i;
return L_16;
}
}
// Mono.Globalization.Unicode.SimpleCollator/ExtenderType Mono.Globalization.Unicode.SimpleCollator::GetExtenderType(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_i;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)8213)))))
{
goto IL_0016;
}
}
{
int32_t L_1 = __this->___lcid_10;
if ((((int32_t)L_1) == ((int32_t)((int32_t)16))))
{
goto IL_0014;
}
}
{
return (int32_t)(0);
}
IL_0014:
{
return (int32_t)(3);
}
IL_0016:
{
int32_t L_2 = ___0_i;
if ((((int32_t)L_2) < ((int32_t)((int32_t)12293))))
{
goto IL_0026;
}
}
{
int32_t L_3 = ___0_i;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)65392))))
{
goto IL_0028;
}
}
IL_0026:
{
return (int32_t)(0);
}
IL_0028:
{
int32_t L_4 = ___0_i;
if ((((int32_t)L_4) < ((int32_t)((int32_t)65148))))
{
goto IL_0054;
}
}
{
int32_t L_5 = ___0_i;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_5, ((int32_t)65148)))) > ((uint32_t)1))))
{
goto IL_004e;
}
}
{
int32_t L_6 = ___0_i;
if ((((int32_t)L_6) == ((int32_t)((int32_t)65392))))
{
goto IL_0050;
}
}
{
int32_t L_7 = ___0_i;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_7, ((int32_t)65438)))) > ((uint32_t)1))))
{
goto IL_0052;
}
}
{
goto IL_0054;
}
IL_004e:
{
return (int32_t)(1);
}
IL_0050:
{
return (int32_t)(3);
}
IL_0052:
{
return (int32_t)(2);
}
IL_0054:
{
int32_t L_8 = ___0_i;
if ((((int32_t)L_8) <= ((int32_t)((int32_t)12542))))
{
goto IL_005e;
}
}
{
return (int32_t)(0);
}
IL_005e:
{
int32_t L_9 = ___0_i;
if ((((int32_t)L_9) > ((int32_t)((int32_t)12338))))
{
goto IL_007a;
}
}
{
int32_t L_10 = ___0_i;
if ((((int32_t)L_10) == ((int32_t)((int32_t)12293))))
{
goto IL_00a4;
}
}
{
int32_t L_11 = ___0_i;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_11, ((int32_t)12337)))) > ((uint32_t)1))))
{
goto IL_00a6;
}
}
{
goto IL_00ac;
}
IL_007a:
{
int32_t L_12 = ___0_i;
if ((((int32_t)L_12) == ((int32_t)((int32_t)12445))))
{
goto IL_00a6;
}
}
{
int32_t L_13 = ___0_i;
if ((((int32_t)L_13) == ((int32_t)((int32_t)12446))))
{
goto IL_00a8;
}
}
{
int32_t L_14 = ___0_i;
switch (((int32_t)il2cpp_codegen_subtract(L_14, ((int32_t)12540))))
{
case 0:
{
goto IL_00aa;
}
case 1:
{
goto IL_00a6;
}
case 2:
{
goto IL_00a8;
}
}
}
{
goto IL_00ac;
}
IL_00a4:
{
return (int32_t)(4);
}
IL_00a6:
{
return (int32_t)(1);
}
IL_00a8:
{
return (int32_t)(2);
}
IL_00aa:
{
return (int32_t)(3);
}
IL_00ac:
{
return (int32_t)(0);
}
}
// System.Byte Mono.Globalization.Unicode.SimpleCollator::ToDashTypeValue(Mono.Globalization.Unicode.SimpleCollator/ExtenderType,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC (int32_t ___0_ext, int32_t ___1_opt, const RuntimeMethod* method)
{
{
int32_t L_0 = ___1_opt;
if (!((int32_t)((int32_t)L_0&2)))
{
goto IL_0007;
}
}
{
return (uint8_t)3;
}
IL_0007:
{
int32_t L_1 = ___0_ext;
if (!L_1)
{
goto IL_0010;
}
}
{
int32_t L_2 = ___0_ext;
if ((((int32_t)L_2) == ((int32_t)3)))
{
goto IL_0012;
}
}
{
goto IL_0014;
}
IL_0010:
{
return (uint8_t)3;
}
IL_0012:
{
return (uint8_t)5;
}
IL_0014:
{
return (uint8_t)4;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::FilterExtender(System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, int32_t ___1_ext, int32_t ___2_opt, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t V_2 = 0;
{
int32_t L_0 = ___1_ext;
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
{
goto IL_00c7;
}
}
{
int32_t L_1 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_2;
L_2 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_1), NULL);
if (!L_2)
{
goto IL_00c7;
}
}
{
int32_t L_3 = ___0_i;
int32_t L_4 = ___2_opt;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_5;
L_5 = SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35(((int32_t)(uint16_t)L_3), L_4, NULL);
V_0 = L_5;
int32_t L_6 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_7;
L_7 = MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7(((int32_t)(uint16_t)L_6), NULL);
V_1 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
int32_t L_8 = ___0_i;
uint8_t L_9;
L_9 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_8, NULL);
V_2 = ((int32_t)((int32_t)L_9&7));
int32_t L_10 = V_2;
switch (((int32_t)il2cpp_codegen_subtract(L_10, 2)))
{
case 0:
{
goto IL_004f;
}
case 1:
{
goto IL_0067;
}
case 2:
{
goto IL_007f;
}
case 3:
{
goto IL_0097;
}
case 4:
{
goto IL_00af;
}
}
}
{
goto IL_00c7;
}
IL_004f:
{
bool L_11 = V_0;
if (L_11)
{
goto IL_0061;
}
}
{
bool L_12 = V_1;
if (L_12)
{
goto IL_005b;
}
}
{
return ((int32_t)12354);
}
IL_005b:
{
return ((int32_t)12450);
}
IL_0061:
{
return ((int32_t)65393);
}
IL_0067:
{
bool L_13 = V_0;
if (L_13)
{
goto IL_0079;
}
}
{
bool L_14 = V_1;
if (L_14)
{
goto IL_0073;
}
}
{
return ((int32_t)12356);
}
IL_0073:
{
return ((int32_t)12452);
}
IL_0079:
{
return ((int32_t)65394);
}
IL_007f:
{
bool L_15 = V_0;
if (L_15)
{
goto IL_0091;
}
}
{
bool L_16 = V_1;
if (L_16)
{
goto IL_008b;
}
}
{
return ((int32_t)12358);
}
IL_008b:
{
return ((int32_t)12454);
}
IL_0091:
{
return ((int32_t)65395);
}
IL_0097:
{
bool L_17 = V_0;
if (L_17)
{
goto IL_00a9;
}
}
{
bool L_18 = V_1;
if (L_18)
{
goto IL_00a3;
}
}
{
return ((int32_t)12360);
}
IL_00a3:
{
return ((int32_t)12456);
}
IL_00a9:
{
return ((int32_t)65396);
}
IL_00af:
{
bool L_19 = V_0;
if (L_19)
{
goto IL_00c1;
}
}
{
bool L_20 = V_1;
if (L_20)
{
goto IL_00bb;
}
}
{
return ((int32_t)12362);
}
IL_00bb:
{
return ((int32_t)12458);
}
IL_00c1:
{
return ((int32_t)65397);
}
IL_00c7:
{
int32_t L_21 = ___0_i;
return L_21;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsIgnorable(System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691 (int32_t ___0_i, int32_t ___1_opt, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t G_B2_0 = 0;
int32_t G_B1_0 = 0;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
int32_t G_B5_0 = 0;
int32_t G_B5_1 = 0;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
int32_t G_B6_2 = 0;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
int32_t G_B7_0 = 0;
int32_t G_B7_1 = 0;
int32_t G_B9_0 = 0;
int32_t G_B9_1 = 0;
int32_t G_B9_2 = 0;
{
int32_t L_0 = ___0_i;
int32_t L_1 = ___1_opt;
G_B1_0 = L_0;
if (!((int32_t)((int32_t)L_1&((int32_t)1342177280))))
{
G_B2_0 = L_0;
goto IL_000d;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_000e;
}
IL_000d:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_000e:
{
int32_t L_2 = ___1_opt;
G_B4_0 = G_B3_0;
G_B4_1 = G_B3_1;
if (((int32_t)((int32_t)L_2&4)))
{
G_B5_0 = G_B3_0;
G_B5_1 = G_B3_1;
goto IL_0016;
}
}
{
G_B6_0 = 0;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
goto IL_0017;
}
IL_0016:
{
G_B6_0 = 2;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
}
IL_0017:
{
int32_t L_3 = ___1_opt;
G_B7_0 = ((int32_t)il2cpp_codegen_add(G_B6_1, G_B6_0));
G_B7_1 = G_B6_2;
if (((int32_t)((int32_t)L_3&2)))
{
G_B8_0 = ((int32_t)il2cpp_codegen_add(G_B6_1, G_B6_0));
G_B8_1 = G_B6_2;
goto IL_0020;
}
}
{
G_B9_0 = 0;
G_B9_1 = G_B7_0;
G_B9_2 = G_B7_1;
goto IL_0021;
}
IL_0020:
{
G_B9_0 = 4;
G_B9_1 = G_B8_0;
G_B9_2 = G_B8_1;
}
IL_0021:
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_4;
L_4 = MSCompatUnicodeTable_IsIgnorable_m2E451C7224CA6AB118D01FDF7158AC3D4C1C9B06(G_B9_2, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(G_B9_1, G_B9_0))), NULL);
return L_4;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSafe(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSafe_mD24BAD3CE9F9AE2A16A4C201AC71B212E336FFAE (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_i;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->___unsafeFlags_5;
NullCheck(L_1);
if ((((int32_t)((int32_t)(L_0/8))) >= ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))
{
goto IL_0024;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->___unsafeFlags_5;
int32_t L_3 = ___0_i;
NullCheck(L_2);
int32_t L_4 = ((int32_t)(L_3/8));
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
int32_t L_6 = ___0_i;
return (bool)((((int32_t)((int32_t)((int32_t)L_5&((int32_t)(1<<((int32_t)(((int32_t)(L_6%8))&((int32_t)31)))))))) == ((int32_t)0))? 1 : 0);
}
IL_0024:
{
return (bool)1;
}
}
// System.Globalization.SortKey Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SimpleCollator_GetSortKey_mB911714D1A67E1D38D9343EC5860999D93BC924E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_options, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_s;
String_t* L_1 = ___0_s;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
int32_t L_3 = ___1_options;
SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* L_4;
L_4 = SimpleCollator_GetSortKey_m2C0748D8AC0E33CD46FF16C190261CA1173FB66E(__this, L_0, 0, L_2, L_3, NULL);
return L_4;
}
}
// System.Globalization.SortKey Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SimpleCollator_GetSortKey_m2C0748D8AC0E33CD46FF16C190261CA1173FB66E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_length, int32_t ___3_options, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = __this->___lcid_10;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_1 = (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A*)il2cpp_codegen_object_new(SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A_il2cpp_TypeInfo_var);
NullCheck(L_1);
SortKeyBuffer__ctor_m44124385B07E9C713EE6C0CEECA51C4A4200E6FE(L_1, L_0, NULL);
V_0 = L_1;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_2 = V_0;
int32_t L_3 = ___3_options;
int32_t L_4 = __this->___lcid_10;
String_t* L_5 = ___0_s;
bool L_6 = __this->___frenchSort_11;
NullCheck(L_2);
SortKeyBuffer_Initialize_m4F998BC86CA746C8C3DEAC8D47D17FD2B5537C39(L_2, L_3, L_4, L_5, L_6, NULL);
int32_t L_7 = ___1_start;
int32_t L_8 = ___2_length;
V_1 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
String_t* L_9 = ___0_s;
int32_t L_10 = ___1_start;
int32_t L_11 = V_1;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_12 = V_0;
int32_t L_13 = ___3_options;
SimpleCollator_GetSortKey_m412F69F13CDC0508189A28A4EE43596FB5A47573(__this, L_9, L_10, L_11, L_12, L_13, NULL);
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_14 = V_0;
NullCheck(L_14);
SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* L_15;
L_15 = SortKeyBuffer_GetResultAndReset_m3F0C22EAE5F965F5B9E82649F754847BF5593AFD(L_14, NULL);
return L_15;
}
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Int32,System.Int32,Mono.Globalization.Unicode.SortKeyBuffer,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_GetSortKey_m412F69F13CDC0508189A28A4EE43596FB5A47573 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_end, SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* ___3_buf, int32_t ___4_opt, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_5 = NULL;
uint8_t* V_6 = NULL;
uint8_t* V_7 = NULL;
int32_t V_8 = 0;
int32_t G_B7_0 = 0;
int32_t G_B7_1 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B7_2 = NULL;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B6_2 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
int32_t G_B8_2 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B8_3 = NULL;
int32_t G_B10_0 = 0;
int32_t G_B10_1 = 0;
int32_t G_B10_2 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B10_3 = NULL;
int32_t G_B9_0 = 0;
int32_t G_B9_1 = 0;
int32_t G_B9_2 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B9_3 = NULL;
int32_t G_B11_0 = 0;
int32_t G_B11_1 = 0;
int32_t G_B11_2 = 0;
int32_t G_B11_3 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B11_4 = NULL;
int32_t G_B21_0 = 0;
int32_t G_B21_1 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B21_2 = NULL;
int32_t G_B20_0 = 0;
int32_t G_B20_1 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B20_2 = NULL;
int32_t G_B22_0 = 0;
int32_t G_B22_1 = 0;
int32_t G_B22_2 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B22_3 = NULL;
int32_t G_B24_0 = 0;
int32_t G_B24_1 = 0;
int32_t G_B24_2 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B24_3 = NULL;
int32_t G_B23_0 = 0;
int32_t G_B23_1 = 0;
int32_t G_B23_2 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B23_3 = NULL;
int32_t G_B25_0 = 0;
int32_t G_B25_1 = 0;
int32_t G_B25_2 = 0;
int32_t G_B25_3 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B25_4 = NULL;
{
uintptr_t L_0 = ((uintptr_t)4);
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
memset(L_1, 0, L_0);
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_2, 4, NULL);
int32_t L_3 = ___4_opt;
uint8_t* L_4 = V_0;
Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A((&V_1), L_3, (uint8_t*)((uintptr_t)0), (uint8_t*)((uintptr_t)0), (uint8_t*)((uintptr_t)0), (uint8_t*)((uintptr_t)0), L_4, NULL);
int32_t L_5 = ___1_start;
V_2 = L_5;
goto IL_01ae;
}
IL_0026:
{
String_t* L_6 = ___0_s;
int32_t L_7 = V_2;
NullCheck(L_6);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL);
V_3 = L_8;
int32_t L_9 = V_3;
int32_t L_10;
L_10 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_9, NULL);
V_4 = L_10;
int32_t L_11 = V_4;
if (!L_11)
{
goto IL_00b8;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE L_12 = V_1;
int32_t L_13 = L_12.___PrevCode_5;
int32_t L_14 = V_4;
int32_t L_15 = ___4_opt;
int32_t L_16;
L_16 = SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65(__this, L_13, L_14, L_15, NULL);
V_3 = L_16;
int32_t L_17 = V_3;
if ((((int32_t)L_17) < ((int32_t)0)))
{
goto IL_0062;
}
}
{
int32_t L_18 = V_3;
int32_t L_19 = V_4;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_20 = ___3_buf;
int32_t L_21 = ___4_opt;
SimpleCollator_FillSortKeyRaw_mFDBF293D1A4255B0E59E8DCCB34EF6E2C76C4B5E(__this, L_18, L_19, L_20, L_21, NULL);
goto IL_01aa;
}
IL_0062:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE L_22 = V_1;
uint8_t* L_23 = L_22.___PrevSortKey_6;
if ((((intptr_t)L_23) == ((intptr_t)((uintptr_t)0))))
{
goto IL_01aa;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE L_24 = V_1;
uint8_t* L_25 = L_24.___PrevSortKey_6;
V_6 = L_25;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_26 = ___3_buf;
uint8_t* L_27 = V_6;
int32_t L_28 = *((uint8_t*)L_27);
uint8_t* L_29 = V_6;
int32_t L_30 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, 1)));
uint8_t* L_31 = V_6;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, 2)));
G_B6_0 = L_30;
G_B6_1 = L_28;
G_B6_2 = L_26;
if ((!(((uint32_t)L_32) == ((uint32_t)1))))
{
G_B7_0 = L_30;
G_B7_1 = L_28;
G_B7_2 = L_26;
goto IL_0094;
}
}
{
int32_t L_33 = V_3;
int32_t L_34 = V_4;
uint8_t L_35;
L_35 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_33, L_34, NULL);
G_B8_0 = ((int32_t)(L_35));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
goto IL_0099;
}
IL_0094:
{
uint8_t* L_36 = V_6;
int32_t L_37 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, 2)));
G_B8_0 = L_37;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
}
IL_0099:
{
uint8_t* L_38 = V_6;
int32_t L_39 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_38, 3)));
G_B9_0 = G_B8_0;
G_B9_1 = G_B8_1;
G_B9_2 = G_B8_2;
G_B9_3 = G_B8_3;
if ((!(((uint32_t)L_39) == ((uint32_t)1))))
{
G_B10_0 = G_B8_0;
G_B10_1 = G_B8_1;
G_B10_2 = G_B8_2;
G_B10_3 = G_B8_3;
goto IL_00a9;
}
}
{
int32_t L_40 = V_3;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_41;
L_41 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_40, NULL);
G_B11_0 = ((int32_t)(L_41));
G_B11_1 = G_B9_0;
G_B11_2 = G_B9_1;
G_B11_3 = G_B9_2;
G_B11_4 = G_B9_3;
goto IL_00ae;
}
IL_00a9:
{
uint8_t* L_42 = V_6;
int32_t L_43 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_42, 3)));
G_B11_0 = L_43;
G_B11_1 = G_B10_0;
G_B11_2 = G_B10_1;
G_B11_3 = G_B10_2;
G_B11_4 = G_B10_3;
}
IL_00ae:
{
NullCheck(G_B11_4);
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(G_B11_4, (uint8_t)G_B11_3, (uint8_t)G_B11_2, (uint8_t)G_B11_1, (uint8_t)G_B11_0, NULL);
goto IL_01aa;
}
IL_00b8:
{
int32_t L_44 = V_3;
int32_t L_45 = ___4_opt;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_46;
L_46 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_44, L_45, NULL);
if (L_46)
{
goto IL_01aa;
}
}
{
int32_t L_47 = V_3;
int32_t L_48 = ___4_opt;
int32_t L_49;
L_49 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_47, L_48, NULL);
V_3 = L_49;
String_t* L_50 = ___0_s;
int32_t L_51 = V_2;
int32_t L_52 = ___2_end;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_53;
L_53 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_50, L_51, L_52, NULL);
V_5 = L_53;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_54 = V_5;
if (!L_54)
{
goto IL_018e;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_55 = V_5;
NullCheck(L_55);
String_t* L_56 = L_55->___Replacement_2;
if (!L_56)
{
goto IL_010a;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_57 = V_5;
NullCheck(L_57);
String_t* L_58 = L_57->___Replacement_2;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_59 = V_5;
NullCheck(L_59);
String_t* L_60 = L_59->___Replacement_2;
NullCheck(L_60);
int32_t L_61;
L_61 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_60, NULL);
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_62 = ___3_buf;
int32_t L_63 = ___4_opt;
SimpleCollator_GetSortKey_m412F69F13CDC0508189A28A4EE43596FB5A47573(__this, L_58, 0, L_61, L_62, L_63, NULL);
goto IL_017e;
}
IL_010a:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE L_64 = V_1;
uint8_t* L_65 = L_64.___PrevSortKey_6;
V_7 = L_65;
V_8 = 0;
goto IL_012d;
}
IL_0117:
{
uint8_t* L_66 = V_7;
int32_t L_67 = V_8;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_68 = V_5;
NullCheck(L_68);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_69 = L_68->___SortKey_3;
int32_t L_70 = V_8;
NullCheck(L_69);
int32_t L_71 = L_70;
uint8_t L_72 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_66, L_67))) = (int8_t)L_72;
int32_t L_73 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_73, 1));
}
IL_012d:
{
int32_t L_74 = V_8;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_75 = V_5;
NullCheck(L_75);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_76 = L_75->___SortKey_3;
NullCheck(L_76);
if ((((int32_t)L_74) < ((int32_t)((int32_t)(((RuntimeArray*)L_76)->max_length)))))
{
goto IL_0117;
}
}
{
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_77 = ___3_buf;
uint8_t* L_78 = V_7;
int32_t L_79 = *((uint8_t*)L_78);
uint8_t* L_80 = V_7;
int32_t L_81 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_80, 1)));
uint8_t* L_82 = V_7;
int32_t L_83 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_82, 2)));
G_B20_0 = L_81;
G_B20_1 = L_79;
G_B20_2 = L_77;
if ((!(((uint32_t)L_83) == ((uint32_t)1))))
{
G_B21_0 = L_81;
G_B21_1 = L_79;
G_B21_2 = L_77;
goto IL_0157;
}
}
{
int32_t L_84 = V_3;
int32_t L_85 = V_4;
uint8_t L_86;
L_86 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_84, L_85, NULL);
G_B22_0 = ((int32_t)(L_86));
G_B22_1 = G_B20_0;
G_B22_2 = G_B20_1;
G_B22_3 = G_B20_2;
goto IL_015c;
}
IL_0157:
{
uint8_t* L_87 = V_7;
int32_t L_88 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_87, 2)));
G_B22_0 = L_88;
G_B22_1 = G_B21_0;
G_B22_2 = G_B21_1;
G_B22_3 = G_B21_2;
}
IL_015c:
{
uint8_t* L_89 = V_7;
int32_t L_90 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_89, 3)));
G_B23_0 = G_B22_0;
G_B23_1 = G_B22_1;
G_B23_2 = G_B22_2;
G_B23_3 = G_B22_3;
if ((!(((uint32_t)L_90) == ((uint32_t)1))))
{
G_B24_0 = G_B22_0;
G_B24_1 = G_B22_1;
G_B24_2 = G_B22_2;
G_B24_3 = G_B22_3;
goto IL_016c;
}
}
{
int32_t L_91 = V_3;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_92;
L_92 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_91, NULL);
G_B25_0 = ((int32_t)(L_92));
G_B25_1 = G_B23_0;
G_B25_2 = G_B23_1;
G_B25_3 = G_B23_2;
G_B25_4 = G_B23_3;
goto IL_0171;
}
IL_016c:
{
uint8_t* L_93 = V_7;
int32_t L_94 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_93, 3)));
G_B25_0 = L_94;
G_B25_1 = G_B24_0;
G_B25_2 = G_B24_1;
G_B25_3 = G_B24_2;
G_B25_4 = G_B24_3;
}
IL_0171:
{
NullCheck(G_B25_4);
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(G_B25_4, (uint8_t)G_B25_3, (uint8_t)G_B25_2, (uint8_t)G_B25_1, (uint8_t)G_B25_0, NULL);
(&V_1)->___PrevCode_5 = (-1);
}
IL_017e:
{
int32_t L_95 = V_2;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_96 = V_5;
NullCheck(L_96);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_97 = L_96->___Source_1;
NullCheck(L_97);
V_2 = ((int32_t)il2cpp_codegen_add(L_95, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_97)->max_length)), 1))));
goto IL_01aa;
}
IL_018e:
{
int32_t L_98 = V_3;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_99;
L_99 = MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4(L_98, NULL);
if (L_99)
{
goto IL_019e;
}
}
{
int32_t L_100 = V_3;
(&V_1)->___PrevCode_5 = L_100;
}
IL_019e:
{
int32_t L_101 = V_3;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_102 = ___3_buf;
int32_t L_103 = ___4_opt;
SimpleCollator_FillSortKeyRaw_mFDBF293D1A4255B0E59E8DCCB34EF6E2C76C4B5E(__this, L_101, 0, L_102, L_103, NULL);
}
IL_01aa:
{
int32_t L_104 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_104, 1));
}
IL_01ae:
{
int32_t L_105 = V_2;
int32_t L_106 = ___2_end;
if ((((int32_t)L_105) < ((int32_t)L_106)))
{
goto IL_0026;
}
}
{
return;
}
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::FillSortKeyRaw(System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,Mono.Globalization.Unicode.SortKeyBuffer,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_FillSortKeyRaw_mFDBF293D1A4255B0E59E8DCCB34EF6E2C76C4B5E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, int32_t ___1_ext, SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* ___2_buf, int32_t ___3_opt, 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*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
{
int32_t L_0 = ___0_i;
if ((((int32_t)((int32_t)13312)) > ((int32_t)L_0)))
{
goto IL_0034;
}
}
{
int32_t L_1 = ___0_i;
if ((((int32_t)L_1) > ((int32_t)((int32_t)19893))))
{
goto IL_0034;
}
}
{
int32_t L_2 = ___0_i;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_2, ((int32_t)13312)));
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_3 = ___2_buf;
int32_t L_4 = V_2;
int32_t L_5 = V_2;
NullCheck(L_3);
SortKeyBuffer_AppendCJKExtension_m64F33BC8021B4D895B765F7BC34723B1341F0A15(L_3, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)16), ((int32_t)(L_4/((int32_t)254)))))), (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_5%((int32_t)254))), 2))), NULL);
return;
}
IL_0034:
{
int32_t L_6 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
int32_t L_7;
L_7 = Char_GetUnicodeCategory_m77918F2C9C8E103453F2146071739767CA65F6DC(((int32_t)(uint16_t)L_6), NULL);
V_0 = L_7;
int32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)16))))
{
goto IL_006f;
}
}
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)17)))))
{
goto IL_0078;
}
}
{
int32_t L_10 = ___0_i;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_10, ((int32_t)57344)));
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_11 = ___2_buf;
int32_t L_12 = V_3;
int32_t L_13 = V_3;
NullCheck(L_11);
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(L_11, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)229), ((int32_t)(L_12/((int32_t)254)))))), (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_13%((int32_t)254))), 2))), (uint8_t)0, (uint8_t)0, NULL);
return;
}
IL_006f:
{
int32_t L_14 = ___0_i;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_15 = ___2_buf;
SimpleCollator_FillSurrogateSortKeyRaw_m70AB1F51D1BED2F7CEFABB8CBD6B834DDF0569E7(__this, L_14, L_15, NULL);
return;
}
IL_0078:
{
int32_t L_16 = ___0_i;
int32_t L_17 = ___1_ext;
uint8_t L_18;
L_18 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_16, L_17, NULL);
V_1 = L_18;
int32_t L_19 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_20;
L_20 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_19), NULL);
if (!L_20)
{
goto IL_00e0;
}
}
{
int32_t L_21 = ___0_i;
uint8_t L_22;
L_22 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_21, NULL);
V_4 = L_22;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_23 = ___2_buf;
int32_t L_24 = ___0_i;
uint8_t L_25;
L_25 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_24, NULL);
uint8_t L_26 = V_4;
uint8_t L_27 = V_1;
int32_t L_28 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_29;
L_29 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_28, NULL);
int32_t L_30 = ___0_i;
bool L_31;
L_31 = MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A(((int32_t)(uint16_t)L_30), NULL);
int32_t L_32 = ___1_ext;
int32_t L_33 = ___3_opt;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
uint8_t L_34;
L_34 = SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC(L_32, L_33, NULL);
int32_t L_35 = ___0_i;
bool L_36;
L_36 = MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7(((int32_t)(uint16_t)L_35), NULL);
int32_t L_37 = ___0_i;
int32_t L_38 = ___3_opt;
bool L_39;
L_39 = SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35(((int32_t)(uint16_t)L_37), L_38, NULL);
NullCheck(L_23);
SortKeyBuffer_AppendKana_m18A005FE17B519E36265D20FD12EFFE99E5132F9(L_23, L_25, L_26, L_27, L_29, L_31, L_34, (bool)((((int32_t)L_36) == ((int32_t)0))? 1 : 0), L_39, NULL);
int32_t L_40 = ___3_opt;
if (((int32_t)((int32_t)L_40&2)))
{
goto IL_00fb;
}
}
{
int32_t L_41 = ___1_ext;
if ((!(((uint32_t)L_41) == ((uint32_t)2))))
{
goto IL_00fb;
}
}
{
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_42 = ___2_buf;
NullCheck(L_42);
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(L_42, (uint8_t)1, (uint8_t)1, (uint8_t)1, (uint8_t)0, NULL);
return;
}
IL_00e0:
{
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_43 = ___2_buf;
int32_t L_44 = ___0_i;
uint8_t L_45;
L_45 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_44, NULL);
int32_t L_46 = ___0_i;
uint8_t L_47;
L_47 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_46, NULL);
uint8_t L_48 = V_1;
int32_t L_49 = ___0_i;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_50;
L_50 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_49, NULL);
NullCheck(L_43);
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(L_43, L_45, L_47, L_48, L_50, NULL);
}
IL_00fb:
{
return;
}
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::FillSurrogateSortKeyRaw(System.Int32,Mono.Globalization.Unicode.SortKeyBuffer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_FillSurrogateSortKeyRaw_m70AB1F51D1BED2F7CEFABB8CBD6B834DDF0569E7 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_i, SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* ___1_buf, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
uint8_t V_2 = 0x0;
int32_t V_3 = 0;
int32_t G_B4_0 = 0;
{
V_0 = 0;
V_1 = 0;
V_2 = (uint8_t)0;
int32_t L_0 = ___0_i;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)55360))))
{
goto IL_0029;
}
}
{
V_0 = ((int32_t)55296);
V_1 = ((int32_t)65);
int32_t L_1 = ___0_i;
if ((((int32_t)L_1) == ((int32_t)((int32_t)55296))))
{
goto IL_0023;
}
}
{
G_B4_0 = ((int32_t)63);
goto IL_0025;
}
IL_0023:
{
G_B4_0 = ((int32_t)62);
}
IL_0025:
{
V_2 = (uint8_t)((int32_t)(uint8_t)G_B4_0);
goto IL_0077;
}
IL_0029:
{
int32_t L_2 = ___0_i;
if ((((int32_t)((int32_t)55360)) > ((int32_t)L_2)))
{
goto IL_004a;
}
}
{
int32_t L_3 = ___0_i;
if ((((int32_t)L_3) >= ((int32_t)((int32_t)55424))))
{
goto IL_004a;
}
}
{
V_0 = ((int32_t)55360);
V_1 = ((int32_t)242);
V_2 = (uint8_t)((int32_t)62);
goto IL_0077;
}
IL_004a:
{
int32_t L_4 = ___0_i;
if ((((int32_t)((int32_t)56192)) > ((int32_t)L_4)))
{
goto IL_006b;
}
}
{
int32_t L_5 = ___0_i;
if ((((int32_t)L_5) >= ((int32_t)((int32_t)56320))))
{
goto IL_006b;
}
}
{
V_0 = ((int32_t)56128);
V_1 = ((int32_t)254);
V_2 = (uint8_t)((int32_t)62);
goto IL_0077;
}
IL_006b:
{
V_0 = ((int32_t)56074);
V_1 = ((int32_t)65);
V_2 = (uint8_t)((int32_t)63);
}
IL_0077:
{
int32_t L_6 = ___0_i;
int32_t L_7 = V_0;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_6, L_7));
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* L_8 = ___1_buf;
int32_t L_9 = V_1;
int32_t L_10 = V_3;
int32_t L_11 = V_3;
uint8_t L_12 = V_2;
uint8_t L_13 = V_2;
NullCheck(L_8);
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(L_8, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_9, ((int32_t)(L_10/((int32_t)254)))))), (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_11%((int32_t)254))), 2))), L_12, L_13, NULL);
return;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::System.Globalization.ISimpleCollator.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_System_Globalization_ISimpleCollator_Compare_m19D2615DA1216400BCED1C8514AEF19ED635B650 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s1, int32_t ___1_idx1, int32_t ___2_len1, String_t* ___3_s2, int32_t ___4_idx2, int32_t ___5_len2, int32_t ___6_options, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_s1;
int32_t L_1 = ___1_idx1;
int32_t L_2 = ___2_len1;
String_t* L_3 = ___3_s2;
int32_t L_4 = ___4_idx2;
int32_t L_5 = ___5_len2;
int32_t L_6 = ___6_options;
int32_t L_7;
L_7 = SimpleCollator_Compare_m3D60A3799386624D26100C40A1832400EB9D2746(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, NULL);
return L_7;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_Compare_m3D60A3799386624D26100C40A1832400EB9D2746 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s1, int32_t ___1_idx1, int32_t ___2_len1, String_t* ___3_s2, int32_t ___4_idx2, int32_t ___5_len2, int32_t ___6_options, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
bool V_4 = false;
int32_t V_5 = 0;
{
uintptr_t L_0 = ((uintptr_t)4);
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
memset(L_1, 0, L_0);
V_0 = (uint8_t*)(L_1);
uintptr_t L_2 = ((uintptr_t)4);
int8_t* L_3 = (int8_t*) (L_2 ? alloca(L_2) : NULL);
memset(L_3, 0, L_2);
V_1 = (uint8_t*)(L_3);
uint8_t* L_4 = V_0;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_4, 4, NULL);
uint8_t* L_5 = V_1;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_5, 4, NULL);
int32_t L_6 = ___6_options;
uint8_t* L_7 = V_0;
uint8_t* L_8 = V_1;
Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A((&V_2), L_6, (uint8_t*)((uintptr_t)0), (uint8_t*)((uintptr_t)0), L_7, L_8, (uint8_t*)((uintptr_t)0), NULL);
String_t* L_9 = ___0_s1;
int32_t L_10 = ___1_idx1;
int32_t L_11 = ___2_len1;
String_t* L_12 = ___3_s2;
int32_t L_13 = ___4_idx2;
int32_t L_14 = ___5_len2;
int32_t L_15;
L_15 = SimpleCollator_CompareInternal_m1922639329B7F77643CD82F2A491BD12E6FE4191(__this, L_9, L_10, L_11, L_12, L_13, L_14, (&V_3), (&V_4), (bool)1, (bool)0, (&V_2), NULL);
V_5 = L_15;
int32_t L_16 = V_5;
if (!L_16)
{
goto IL_0051;
}
}
{
int32_t L_17 = V_5;
if ((((int32_t)L_17) < ((int32_t)0)))
{
goto IL_004f;
}
}
{
return 1;
}
IL_004f:
{
return (-1);
}
IL_0051:
{
return 0;
}
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::ClearBuffer(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, uint8_t* ___0_buffer, int32_t ___1_size, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_000d;
}
IL_0004:
{
uint8_t* L_0 = ___0_buffer;
int32_t L_1 = V_0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_1))) = (int8_t)0;
int32_t L_2 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_2, 1));
}
IL_000d:
{
int32_t L_3 = V_0;
int32_t L_4 = ___1_size;
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::CompareInternal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Boolean&,System.Boolean&,System.Boolean,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_CompareInternal_m1922639329B7F77643CD82F2A491BD12E6FE4191 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s1, int32_t ___1_idx1, int32_t ___2_len1, String_t* ___3_s2, int32_t ___4_idx2, int32_t ___5_len2, bool* ___6_targetConsumed, bool* ___7_sourceConsumed, bool ___8_skipHeadingExtenders, bool ___9_immediateBreakup, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___10_ctx, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_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;
PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103 V_5;
memset((&V_5), 0, sizeof(V_5));
int32_t V_6 = 0;
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;
int32_t V_13 = 0;
int32_t V_14 = 0;
int32_t V_15 = 0;
bool V_16 = false;
bool V_17 = false;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 V_18;
memset((&V_18), 0, sizeof(V_18));
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 V_19;
memset((&V_19), 0, sizeof(V_19));
int32_t V_20 = 0;
int32_t V_21 = 0;
uint8_t* V_22 = NULL;
uint8_t* V_23 = NULL;
int32_t V_24 = 0;
int32_t V_25 = 0;
bool V_26 = false;
bool V_27 = false;
uint8_t V_28 = 0x0;
uint8_t V_29 = 0x0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_30 = NULL;
int32_t V_31 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_32 = NULL;
int32_t V_33 = 0;
int32_t V_34 = 0;
int32_t V_35 = 0;
int32_t V_36 = 0;
int32_t V_37 = 0;
int32_t G_B66_0 = 0;
int32_t G_B74_0 = 0;
int32_t G_B141_0 = 0;
int32_t G_B151_0 = 0;
int32_t G_B164_0 = 0;
int32_t G_B169_0 = 0;
int32_t G_B172_0 = 0;
int32_t G_B175_0 = 0;
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_0 = ___10_ctx;
int32_t L_1 = L_0->___Option_0;
V_0 = L_1;
int32_t L_2 = ___1_idx1;
V_1 = L_2;
int32_t L_3 = ___4_idx2;
V_2 = L_3;
int32_t L_4 = ___1_idx1;
int32_t L_5 = ___2_len1;
V_3 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
int32_t L_6 = ___4_idx2;
int32_t L_7 = ___5_len2;
V_4 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
bool* L_8 = ___6_targetConsumed;
*((int8_t*)L_8) = (int8_t)0;
bool* L_9 = ___7_sourceConsumed;
*((int8_t*)L_9) = (int8_t)0;
PreviousInfo__ctor_m78ED776E41CA06EB8EBAB9C0997C04B8D22AB18E((&V_5), (bool)0, NULL);
V_6 = 0;
V_7 = 5;
V_8 = (-1);
V_9 = (-1);
V_10 = 0;
V_11 = 0;
bool L_10 = ___8_skipHeadingExtenders;
if (!L_10)
{
goto IL_0077;
}
}
{
goto IL_0054;
}
IL_0040:
{
String_t* L_11 = ___0_s1;
int32_t L_12 = ___1_idx1;
NullCheck(L_11);
Il2CppChar L_13;
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_11, L_12, NULL);
int32_t L_14;
L_14 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_13, NULL);
if (!L_14)
{
goto IL_0071;
}
}
{
int32_t L_15 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_0054:
{
int32_t L_16 = ___1_idx1;
int32_t L_17 = V_3;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0040;
}
}
{
goto IL_0071;
}
IL_005a:
{
String_t* L_18 = ___3_s2;
int32_t L_19 = ___4_idx2;
NullCheck(L_18);
Il2CppChar L_20;
L_20 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, L_19, NULL);
int32_t L_21;
L_21 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_20, NULL);
if (!L_21)
{
goto IL_0077;
}
}
{
int32_t L_22 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_0071:
{
int32_t L_23 = ___4_idx2;
int32_t L_24 = V_4;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_005a;
}
}
IL_0077:
{
V_12 = 0;
V_13 = 0;
int32_t L_25 = ___1_idx1;
V_14 = L_25;
int32_t L_26 = ___4_idx2;
V_15 = L_26;
int32_t L_27 = V_0;
V_16 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_27&((int32_t)536870912)))) <= ((uint32_t)0)))? 1 : 0);
int32_t L_28 = V_0;
V_17 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_28&2))) <= ((uint32_t)0)))? 1 : 0);
il2cpp_codegen_initobj((&V_18), sizeof(Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178));
il2cpp_codegen_initobj((&V_19), sizeof(Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178));
goto IL_00be;
}
IL_00aa:
{
String_t* L_29 = ___0_s1;
int32_t L_30 = ___1_idx1;
NullCheck(L_29);
Il2CppChar L_31;
L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_29, L_30, NULL);
int32_t L_32 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_33;
L_33 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_31, L_32, NULL);
if (!L_33)
{
goto IL_00db;
}
}
{
int32_t L_34 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_34, 1));
}
IL_00be:
{
int32_t L_35 = ___1_idx1;
int32_t L_36 = V_3;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_00aa;
}
}
{
goto IL_00db;
}
IL_00c4:
{
String_t* L_37 = ___3_s2;
int32_t L_38 = ___4_idx2;
NullCheck(L_37);
Il2CppChar L_39;
L_39 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_37, L_38, NULL);
int32_t L_40 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_41;
L_41 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_39, L_40, NULL);
if (!L_41)
{
goto IL_00e1;
}
}
{
int32_t L_42 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_42, 1));
}
IL_00db:
{
int32_t L_43 = ___4_idx2;
int32_t L_44 = V_4;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_00c4;
}
}
IL_00e1:
{
int32_t L_45 = ___1_idx1;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_0126;
}
}
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_47 = V_18;
String_t* L_48 = L_47.___Source_0;
if (!L_48)
{
goto IL_0882;
}
}
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_49 = V_18;
String_t* L_50 = L_49.___Source_0;
___0_s1 = L_50;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_51 = V_18;
int32_t L_52 = L_51.___Start_2;
V_1 = L_52;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_53 = V_18;
int32_t L_54 = L_53.___Index_1;
___1_idx1 = L_54;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_55 = V_18;
int32_t L_56 = L_55.___End_3;
V_3 = L_56;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_57 = V_18;
int32_t L_58 = L_57.___Optional_4;
V_14 = L_58;
(&V_18)->___Source_0 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&(&V_18)->___Source_0), (void*)(String_t*)NULL);
goto IL_00be;
}
IL_0126:
{
int32_t L_59 = ___4_idx2;
int32_t L_60 = V_4;
if ((((int32_t)L_59) < ((int32_t)L_60)))
{
goto IL_0171;
}
}
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_61 = V_19;
String_t* L_62 = L_61.___Source_0;
if (!L_62)
{
goto IL_0882;
}
}
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_63 = V_19;
String_t* L_64 = L_63.___Source_0;
___3_s2 = L_64;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_65 = V_19;
int32_t L_66 = L_65.___Start_2;
V_2 = L_66;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_67 = V_19;
int32_t L_68 = L_67.___Index_1;
___4_idx2 = L_68;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_69 = V_19;
int32_t L_70 = L_69.___End_3;
V_4 = L_70;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_71 = V_19;
int32_t L_72 = L_71.___Optional_4;
V_15 = L_72;
(&V_19)->___Source_0 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&(&V_19)->___Source_0), (void*)(String_t*)NULL);
goto IL_00be;
}
IL_0171:
{
int32_t L_73 = V_14;
int32_t L_74 = ___1_idx1;
if ((((int32_t)L_73) >= ((int32_t)L_74)))
{
goto IL_024b;
}
}
{
int32_t L_75 = V_15;
int32_t L_76 = ___4_idx2;
if ((((int32_t)L_75) >= ((int32_t)L_76)))
{
goto IL_024b;
}
}
{
goto IL_018f;
}
IL_0184:
{
int32_t L_77 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_77, 1));
int32_t L_78 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_78, 1));
}
IL_018f:
{
int32_t L_79 = ___1_idx1;
int32_t L_80 = V_3;
if ((((int32_t)L_79) >= ((int32_t)L_80)))
{
goto IL_01ab;
}
}
{
int32_t L_81 = ___4_idx2;
int32_t L_82 = V_4;
if ((((int32_t)L_81) >= ((int32_t)L_82)))
{
goto IL_01ab;
}
}
{
String_t* L_83 = ___0_s1;
int32_t L_84 = ___1_idx1;
NullCheck(L_83);
Il2CppChar L_85;
L_85 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_83, L_84, NULL);
String_t* L_86 = ___3_s2;
int32_t L_87 = ___4_idx2;
NullCheck(L_86);
Il2CppChar L_88;
L_88 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_86, L_87, NULL);
if ((((int32_t)L_85) == ((int32_t)L_88)))
{
goto IL_0184;
}
}
IL_01ab:
{
int32_t L_89 = ___1_idx1;
int32_t L_90 = V_3;
if ((((int32_t)L_89) == ((int32_t)L_90)))
{
goto IL_00be;
}
}
{
int32_t L_91 = ___4_idx2;
int32_t L_92 = V_4;
if ((((int32_t)L_91) == ((int32_t)L_92)))
{
goto IL_00be;
}
}
{
int32_t L_93 = V_14;
V_34 = L_93;
int32_t L_94 = V_15;
V_35 = L_94;
int32_t L_95 = ___1_idx1;
V_14 = L_95;
int32_t L_96 = ___4_idx2;
V_15 = L_96;
int32_t L_97 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_subtract(L_97, 1));
int32_t L_98 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_subtract(L_98, 1));
goto IL_01ec;
}
IL_01d7:
{
String_t* L_99 = ___0_s1;
int32_t L_100 = ___1_idx1;
NullCheck(L_99);
Il2CppChar L_101;
L_101 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_99, L_100, NULL);
uint8_t L_102;
L_102 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_101, NULL);
if ((!(((uint32_t)L_102) == ((uint32_t)1))))
{
goto IL_020b;
}
}
{
int32_t L_103 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_subtract(L_103, 1));
}
IL_01ec:
{
int32_t L_104 = ___1_idx1;
int32_t L_105 = V_34;
if ((((int32_t)L_104) > ((int32_t)L_105)))
{
goto IL_01d7;
}
}
{
goto IL_020b;
}
IL_01f3:
{
String_t* L_106 = ___3_s2;
int32_t L_107 = ___4_idx2;
NullCheck(L_106);
Il2CppChar L_108;
L_108 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_106, L_107, NULL);
uint8_t L_109;
L_109 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_108, NULL);
if ((!(((uint32_t)L_109) == ((uint32_t)1))))
{
goto IL_0227;
}
}
{
int32_t L_110 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_subtract(L_110, 1));
}
IL_020b:
{
int32_t L_111 = ___4_idx2;
int32_t L_112 = V_35;
if ((((int32_t)L_111) > ((int32_t)L_112)))
{
goto IL_01f3;
}
}
{
goto IL_0227;
}
IL_0213:
{
String_t* L_113 = ___0_s1;
int32_t L_114 = ___1_idx1;
NullCheck(L_113);
Il2CppChar L_115;
L_115 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_113, L_114, NULL);
bool L_116;
L_116 = SimpleCollator_IsSafe_mD24BAD3CE9F9AE2A16A4C201AC71B212E336FFAE(__this, L_115, NULL);
if (L_116)
{
goto IL_0245;
}
}
{
int32_t L_117 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_subtract(L_117, 1));
}
IL_0227:
{
int32_t L_118 = ___1_idx1;
int32_t L_119 = V_34;
if ((((int32_t)L_118) > ((int32_t)L_119)))
{
goto IL_0213;
}
}
{
goto IL_0245;
}
IL_022e:
{
String_t* L_120 = ___3_s2;
int32_t L_121 = ___4_idx2;
NullCheck(L_120);
Il2CppChar L_122;
L_122 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_120, L_121, NULL);
bool L_123;
L_123 = SimpleCollator_IsSafe_mD24BAD3CE9F9AE2A16A4C201AC71B212E336FFAE(__this, L_122, NULL);
if (L_123)
{
goto IL_024b;
}
}
{
int32_t L_124 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_subtract(L_124, 1));
}
IL_0245:
{
int32_t L_125 = ___4_idx2;
int32_t L_126 = V_35;
if ((((int32_t)L_125) > ((int32_t)L_126)))
{
goto IL_022e;
}
}
IL_024b:
{
int32_t L_127 = ___1_idx1;
V_20 = L_127;
int32_t L_128 = ___4_idx2;
V_21 = L_128;
V_22 = (uint8_t*)((uintptr_t)0);
V_23 = (uint8_t*)((uintptr_t)0);
String_t* L_129 = ___0_s1;
int32_t L_130 = ___1_idx1;
NullCheck(L_129);
Il2CppChar L_131;
L_131 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_129, L_130, NULL);
int32_t L_132 = V_0;
int32_t L_133;
L_133 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_131, L_132, NULL);
V_24 = L_133;
String_t* L_134 = ___3_s2;
int32_t L_135 = ___4_idx2;
NullCheck(L_134);
Il2CppChar L_136;
L_136 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_134, L_135, NULL);
int32_t L_137 = V_0;
int32_t L_138;
L_138 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_136, L_137, NULL);
V_25 = L_138;
V_26 = (bool)0;
V_27 = (bool)0;
int32_t L_139 = V_24;
int32_t L_140;
L_140 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_139, NULL);
V_12 = L_140;
int32_t L_141 = V_12;
if (!L_141)
{
goto IL_02cc;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_142 = ___10_ctx;
int32_t L_143 = L_142->___PrevCode_5;
if ((((int32_t)L_143) >= ((int32_t)0)))
{
goto IL_02ba;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_144 = ___10_ctx;
uint8_t* L_145 = L_144->___PrevSortKey_6;
if ((!(((uintptr_t)L_145) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_02af;
}
}
{
int32_t L_146 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_146, 1));
goto IL_00be;
}
IL_02af:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_147 = ___10_ctx;
uint8_t* L_148 = L_147->___PrevSortKey_6;
V_22 = L_148;
goto IL_02cc;
}
IL_02ba:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_149 = ___10_ctx;
int32_t L_150 = L_149->___PrevCode_5;
int32_t L_151 = V_12;
int32_t L_152 = V_0;
int32_t L_153;
L_153 = SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65(__this, L_150, L_151, L_152, NULL);
V_24 = L_153;
}
IL_02cc:
{
int32_t L_154 = V_25;
int32_t L_155;
L_155 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_154, NULL);
V_13 = L_155;
int32_t L_156 = V_13;
if (!L_156)
{
goto IL_0317;
}
}
{
PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103 L_157 = V_5;
int32_t L_158 = L_157.___Code_0;
if ((((int32_t)L_158) >= ((int32_t)0)))
{
goto IL_0305;
}
}
{
PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103 L_159 = V_5;
uint8_t* L_160 = L_159.___SortKey_1;
if ((!(((uintptr_t)L_160) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_02fa;
}
}
{
int32_t L_161 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_161, 1));
goto IL_00be;
}
IL_02fa:
{
PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103 L_162 = V_5;
uint8_t* L_163 = L_162.___SortKey_1;
V_23 = L_163;
goto IL_0317;
}
IL_0305:
{
PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103 L_164 = V_5;
int32_t L_165 = L_164.___Code_0;
int32_t L_166 = V_13;
int32_t L_167 = V_0;
int32_t L_168;
L_168 = SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65(__this, L_165, L_166, L_167, NULL);
V_25 = L_168;
}
IL_0317:
{
int32_t L_169 = V_24;
uint8_t L_170;
L_170 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_169, NULL);
V_28 = L_170;
int32_t L_171 = V_25;
uint8_t L_172;
L_172 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_171, NULL);
V_29 = L_172;
uint8_t L_173 = V_28;
if ((!(((uint32_t)L_173) == ((uint32_t)6))))
{
goto IL_037e;
}
}
{
bool L_174 = V_16;
if (L_174)
{
goto IL_0370;
}
}
{
int32_t L_175 = V_7;
if ((!(((uint32_t)L_175) == ((uint32_t)5))))
{
goto IL_0370;
}
}
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_176 = V_18;
String_t* L_177 = L_176.___Source_0;
if (L_177)
{
goto IL_0348;
}
}
{
int32_t L_178 = V_20;
int32_t L_179 = V_1;
G_B66_0 = ((int32_t)il2cpp_codegen_subtract(L_178, L_179));
goto IL_0357;
}
IL_0348:
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_180 = V_18;
int32_t L_181 = L_180.___Index_1;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_182 = V_18;
int32_t L_183 = L_182.___Start_2;
G_B66_0 = ((int32_t)il2cpp_codegen_subtract(L_181, L_183));
}
IL_0357:
{
V_8 = G_B66_0;
int32_t L_184 = V_24;
uint8_t L_185;
L_185 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_184, NULL);
int32_t L_186 = V_24;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_187;
L_187 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_186, NULL);
V_10 = ((int32_t)((int32_t)L_185<<((int32_t)(((int32_t)il2cpp_codegen_add(8, (int32_t)L_187))&((int32_t)31)))));
}
IL_0370:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_188 = ___10_ctx;
int32_t L_189 = V_24;
L_188->___PrevCode_5 = L_189;
int32_t L_190 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_190, 1));
}
IL_037e:
{
uint8_t L_191 = V_29;
if ((!(((uint32_t)L_191) == ((uint32_t)6))))
{
goto IL_03d2;
}
}
{
bool L_192 = V_16;
if (L_192)
{
goto IL_03c3;
}
}
{
int32_t L_193 = V_7;
if ((!(((uint32_t)L_193) == ((uint32_t)5))))
{
goto IL_03c3;
}
}
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_194 = V_19;
String_t* L_195 = L_194.___Source_0;
if (L_195)
{
goto IL_039b;
}
}
{
int32_t L_196 = V_21;
int32_t L_197 = V_2;
G_B74_0 = ((int32_t)il2cpp_codegen_subtract(L_196, L_197));
goto IL_03aa;
}
IL_039b:
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_198 = V_19;
int32_t L_199 = L_198.___Index_1;
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_200 = V_19;
int32_t L_201 = L_200.___Start_2;
G_B74_0 = ((int32_t)il2cpp_codegen_subtract(L_199, L_201));
}
IL_03aa:
{
V_9 = G_B74_0;
int32_t L_202 = V_25;
uint8_t L_203;
L_203 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_202, NULL);
int32_t L_204 = V_25;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_205;
L_205 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_204, NULL);
V_11 = ((int32_t)((int32_t)L_203<<((int32_t)(((int32_t)il2cpp_codegen_add(8, (int32_t)L_205))&((int32_t)31)))));
}
IL_03c3:
{
int32_t L_206 = V_25;
(&V_5)->___Code_0 = L_206;
int32_t L_207 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_207, 1));
}
IL_03d2:
{
uint8_t L_208 = V_28;
if ((((int32_t)L_208) == ((int32_t)6)))
{
goto IL_03dc;
}
}
{
uint8_t L_209 = V_29;
if ((!(((uint32_t)L_209) == ((uint32_t)6))))
{
goto IL_0403;
}
}
IL_03dc:
{
int32_t L_210 = V_7;
if ((!(((uint32_t)L_210) == ((uint32_t)5))))
{
goto IL_00be;
}
}
{
int32_t L_211 = V_10;
int32_t L_212 = V_11;
if ((!(((uint32_t)L_211) == ((uint32_t)L_212))))
{
goto IL_03fb;
}
}
{
int32_t L_213 = (-1);
V_9 = L_213;
V_8 = L_213;
int32_t L_214 = 0;
V_11 = L_214;
V_10 = L_214;
goto IL_00be;
}
IL_03fb:
{
V_7 = 4;
goto IL_00be;
}
IL_0403:
{
V_30 = (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
int32_t L_215 = V_12;
if (L_215)
{
goto IL_0415;
}
}
{
String_t* L_216 = ___0_s1;
int32_t L_217 = ___1_idx1;
int32_t L_218 = V_3;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_219;
L_219 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_216, L_217, L_218, NULL);
V_30 = L_219;
}
IL_0415:
{
V_31 = 1;
uint8_t* L_220 = V_22;
if ((((intptr_t)L_220) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0426;
}
}
{
V_31 = 1;
goto IL_0546;
}
IL_0426:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_221 = V_30;
if (!L_221)
{
goto IL_04e5;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_222 = V_30;
NullCheck(L_222);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_223 = L_222->___Source_1;
NullCheck(L_223);
V_31 = ((int32_t)(((RuntimeArray*)L_223)->max_length));
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_224 = V_30;
NullCheck(L_224);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_225 = L_224->___SortKey_3;
if (!L_225)
{
goto IL_0488;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_226 = ___10_ctx;
uint8_t* L_227 = L_226->___Buffer1_3;
V_22 = L_227;
V_36 = 0;
goto IL_0465;
}
IL_044f:
{
uint8_t* L_228 = V_22;
int32_t L_229 = V_36;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_230 = V_30;
NullCheck(L_230);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_231 = L_230->___SortKey_3;
int32_t L_232 = V_36;
NullCheck(L_231);
int32_t L_233 = L_232;
uint8_t L_234 = (L_231)->GetAt(static_cast<il2cpp_array_size_t>(L_233));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_228, L_229))) = (int8_t)L_234;
int32_t L_235 = V_36;
V_36 = ((int32_t)il2cpp_codegen_add(L_235, 1));
}
IL_0465:
{
int32_t L_236 = V_36;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_237 = V_30;
NullCheck(L_237);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_238 = L_237->___SortKey_3;
NullCheck(L_238);
if ((((int32_t)L_236) < ((int32_t)((int32_t)(((RuntimeArray*)L_238)->max_length)))))
{
goto IL_044f;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_239 = ___10_ctx;
L_239->___PrevCode_5 = (-1);
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_240 = ___10_ctx;
uint8_t* L_241 = V_22;
L_240->___PrevSortKey_6 = L_241;
goto IL_0546;
}
IL_0488:
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_242 = V_18;
String_t* L_243 = L_242.___Source_0;
if (L_243)
{
goto IL_0546;
}
}
{
String_t* L_244 = ___0_s1;
(&V_18)->___Source_0 = L_244;
Il2CppCodeGenWriteBarrier((void**)(&(&V_18)->___Source_0), (void*)L_244);
int32_t L_245 = V_1;
(&V_18)->___Start_2 = L_245;
int32_t L_246 = V_20;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_247 = V_30;
NullCheck(L_247);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_248 = L_247->___Source_1;
NullCheck(L_248);
(&V_18)->___Index_1 = ((int32_t)il2cpp_codegen_add(L_246, ((int32_t)(((RuntimeArray*)L_248)->max_length))));
int32_t L_249 = V_3;
(&V_18)->___End_3 = L_249;
int32_t L_250 = V_14;
(&V_18)->___Optional_4 = L_250;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_251 = V_30;
NullCheck(L_251);
String_t* L_252 = L_251->___Replacement_2;
___0_s1 = L_252;
___1_idx1 = 0;
V_1 = 0;
String_t* L_253 = ___0_s1;
NullCheck(L_253);
int32_t L_254;
L_254 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_253, NULL);
V_3 = L_254;
V_14 = 0;
goto IL_00be;
}
IL_04e5:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_255 = ___10_ctx;
uint8_t* L_256 = L_255->___Buffer1_3;
V_22 = L_256;
uint8_t* L_257 = V_22;
uint8_t L_258 = V_28;
*((int8_t*)L_257) = (int8_t)L_258;
uint8_t* L_259 = V_22;
int32_t L_260 = V_24;
uint8_t L_261;
L_261 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_260, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_259, 1))) = (int8_t)L_261;
bool L_262 = V_17;
if (L_262)
{
goto IL_0518;
}
}
{
int32_t L_263 = V_7;
if ((((int32_t)L_263) <= ((int32_t)1)))
{
goto IL_0518;
}
}
{
uint8_t* L_264 = V_22;
int32_t L_265 = V_24;
int32_t L_266 = V_12;
uint8_t L_267;
L_267 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_265, L_266, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_264, 2))) = (int8_t)L_267;
}
IL_0518:
{
int32_t L_268 = V_7;
if ((((int32_t)L_268) <= ((int32_t)2)))
{
goto IL_0529;
}
}
{
uint8_t* L_269 = V_22;
int32_t L_270 = V_24;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_271;
L_271 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_270, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_269, 3))) = (int8_t)L_271;
}
IL_0529:
{
int32_t L_272 = V_7;
if ((((int32_t)L_272) <= ((int32_t)3)))
{
goto IL_0538;
}
}
{
int32_t L_273 = V_24;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_274;
L_274 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_273), NULL);
V_26 = L_274;
}
IL_0538:
{
uint8_t L_275 = V_28;
if ((((int32_t)L_275) <= ((int32_t)1)))
{
goto IL_0546;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_276 = ___10_ctx;
int32_t L_277 = V_24;
L_276->___PrevCode_5 = L_277;
}
IL_0546:
{
V_32 = (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
int32_t L_278 = V_13;
if (L_278)
{
goto IL_055b;
}
}
{
String_t* L_279 = ___3_s2;
int32_t L_280 = ___4_idx2;
int32_t L_281 = V_4;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_282;
L_282 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_279, L_280, L_281, NULL);
V_32 = L_282;
}
IL_055b:
{
uint8_t* L_283 = V_23;
if ((((intptr_t)L_283) == ((intptr_t)((uintptr_t)0))))
{
goto IL_056c;
}
}
{
int32_t L_284 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_284, 1));
goto IL_0699;
}
IL_056c:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_285 = V_32;
if (!L_285)
{
goto IL_0632;
}
}
{
int32_t L_286 = ___4_idx2;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_287 = V_32;
NullCheck(L_287);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_288 = L_287->___Source_1;
NullCheck(L_288);
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_286, ((int32_t)(((RuntimeArray*)L_288)->max_length))));
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_289 = V_32;
NullCheck(L_289);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_290 = L_289->___SortKey_3;
if (!L_290)
{
goto IL_05d1;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_291 = ___10_ctx;
uint8_t* L_292 = L_291->___Buffer2_4;
V_23 = L_292;
V_37 = 0;
goto IL_05ae;
}
IL_0598:
{
uint8_t* L_293 = V_23;
int32_t L_294 = V_37;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_295 = V_32;
NullCheck(L_295);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_296 = L_295->___SortKey_3;
int32_t L_297 = V_37;
NullCheck(L_296);
int32_t L_298 = L_297;
uint8_t L_299 = (L_296)->GetAt(static_cast<il2cpp_array_size_t>(L_298));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_293, L_294))) = (int8_t)L_299;
int32_t L_300 = V_37;
V_37 = ((int32_t)il2cpp_codegen_add(L_300, 1));
}
IL_05ae:
{
int32_t L_301 = V_37;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_302 = V_32;
NullCheck(L_302);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_303 = L_302->___SortKey_3;
NullCheck(L_303);
if ((((int32_t)L_301) < ((int32_t)((int32_t)(((RuntimeArray*)L_303)->max_length)))))
{
goto IL_0598;
}
}
{
(&V_5)->___Code_0 = (-1);
uint8_t* L_304 = V_23;
(&V_5)->___SortKey_1 = L_304;
goto IL_0699;
}
IL_05d1:
{
Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178 L_305 = V_19;
String_t* L_306 = L_305.___Source_0;
if (L_306)
{
goto IL_0699;
}
}
{
String_t* L_307 = ___3_s2;
(&V_19)->___Source_0 = L_307;
Il2CppCodeGenWriteBarrier((void**)(&(&V_19)->___Source_0), (void*)L_307);
int32_t L_308 = V_2;
(&V_19)->___Start_2 = L_308;
int32_t L_309 = V_21;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_310 = V_32;
NullCheck(L_310);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_311 = L_310->___Source_1;
NullCheck(L_311);
(&V_19)->___Index_1 = ((int32_t)il2cpp_codegen_add(L_309, ((int32_t)(((RuntimeArray*)L_311)->max_length))));
int32_t L_312 = V_4;
(&V_19)->___End_3 = L_312;
int32_t L_313 = V_15;
(&V_19)->___Optional_4 = L_313;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_314 = V_32;
NullCheck(L_314);
String_t* L_315 = L_314->___Replacement_2;
___3_s2 = L_315;
___4_idx2 = 0;
V_2 = 0;
String_t* L_316 = ___3_s2;
NullCheck(L_316);
int32_t L_317;
L_317 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_316, NULL);
V_4 = L_317;
V_15 = 0;
goto IL_00be;
}
IL_0632:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_318 = ___10_ctx;
uint8_t* L_319 = L_318->___Buffer2_4;
V_23 = L_319;
uint8_t* L_320 = V_23;
uint8_t L_321 = V_29;
*((int8_t*)L_320) = (int8_t)L_321;
uint8_t* L_322 = V_23;
int32_t L_323 = V_25;
uint8_t L_324;
L_324 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_323, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_322, 1))) = (int8_t)L_324;
bool L_325 = V_17;
if (L_325)
{
goto IL_0665;
}
}
{
int32_t L_326 = V_7;
if ((((int32_t)L_326) <= ((int32_t)1)))
{
goto IL_0665;
}
}
{
uint8_t* L_327 = V_23;
int32_t L_328 = V_25;
int32_t L_329 = V_13;
uint8_t L_330;
L_330 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_328, L_329, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_327, 2))) = (int8_t)L_330;
}
IL_0665:
{
int32_t L_331 = V_7;
if ((((int32_t)L_331) <= ((int32_t)2)))
{
goto IL_0676;
}
}
{
uint8_t* L_332 = V_23;
int32_t L_333 = V_25;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_334;
L_334 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_333, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_332, 3))) = (int8_t)L_334;
}
IL_0676:
{
int32_t L_335 = V_7;
if ((((int32_t)L_335) <= ((int32_t)3)))
{
goto IL_0685;
}
}
{
int32_t L_336 = V_25;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_337;
L_337 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_336), NULL);
V_27 = L_337;
}
IL_0685:
{
uint8_t L_338 = V_29;
if ((((int32_t)L_338) <= ((int32_t)1)))
{
goto IL_0693;
}
}
{
int32_t L_339 = V_25;
(&V_5)->___Code_0 = L_339;
}
IL_0693:
{
int32_t L_340 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_340, 1));
}
IL_0699:
{
int32_t L_341 = ___1_idx1;
int32_t L_342 = V_31;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_341, L_342));
bool L_343 = V_17;
if (L_343)
{
goto IL_0731;
}
}
{
goto IL_06e4;
}
IL_06a8:
{
String_t* L_344 = ___0_s1;
int32_t L_345 = ___1_idx1;
NullCheck(L_344);
Il2CppChar L_346;
L_346 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_344, L_345, NULL);
uint8_t L_347;
L_347 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_346, NULL);
if ((!(((uint32_t)L_347) == ((uint32_t)1))))
{
goto IL_072b;
}
}
{
uint8_t* L_348 = V_22;
int32_t L_349 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_348, 2)));
if (L_349)
{
goto IL_06c5;
}
}
{
uint8_t* L_350 = V_22;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_350, 2))) = (int8_t)2;
}
IL_06c5:
{
uint8_t* L_351 = V_22;
uint8_t* L_352 = V_22;
int32_t L_353 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_352, 2)));
String_t* L_354 = ___0_s1;
int32_t L_355 = ___1_idx1;
NullCheck(L_354);
Il2CppChar L_356;
L_356 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_354, L_355, NULL);
uint8_t L_357;
L_357 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_356, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_351, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_353, (int32_t)L_357)));
int32_t L_358 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_358, 1));
}
IL_06e4:
{
int32_t L_359 = ___1_idx1;
int32_t L_360 = V_3;
if ((((int32_t)L_359) < ((int32_t)L_360)))
{
goto IL_06a8;
}
}
{
goto IL_072b;
}
IL_06ea:
{
String_t* L_361 = ___3_s2;
int32_t L_362 = ___4_idx2;
NullCheck(L_361);
Il2CppChar L_363;
L_363 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_361, L_362, NULL);
uint8_t L_364;
L_364 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_363, NULL);
if ((!(((uint32_t)L_364) == ((uint32_t)1))))
{
goto IL_0731;
}
}
{
uint8_t* L_365 = V_23;
int32_t L_366 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_365, 2)));
if (L_366)
{
goto IL_0709;
}
}
{
uint8_t* L_367 = V_23;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_367, 2))) = (int8_t)2;
}
IL_0709:
{
uint8_t* L_368 = V_23;
uint8_t* L_369 = V_23;
int32_t L_370 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_369, 2)));
String_t* L_371 = ___3_s2;
int32_t L_372 = ___4_idx2;
NullCheck(L_371);
Il2CppChar L_373;
L_373 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_371, L_372, NULL);
uint8_t L_374;
L_374 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_373, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_368, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_370, (int32_t)L_374)));
int32_t L_375 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_375, 1));
}
IL_072b:
{
int32_t L_376 = ___4_idx2;
int32_t L_377 = V_4;
if ((((int32_t)L_376) < ((int32_t)L_377)))
{
goto IL_06ea;
}
}
IL_0731:
{
uint8_t* L_378 = V_22;
int32_t L_379 = *((uint8_t*)L_378);
uint8_t* L_380 = V_23;
int32_t L_381 = *((uint8_t*)L_380);
V_33 = ((int32_t)il2cpp_codegen_subtract(L_379, L_381));
int32_t L_382 = V_33;
if (L_382)
{
goto IL_074b;
}
}
{
uint8_t* L_383 = V_22;
int32_t L_384 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_383, 1)));
uint8_t* L_385 = V_23;
int32_t L_386 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_385, 1)));
G_B141_0 = ((int32_t)il2cpp_codegen_subtract(L_384, L_386));
goto IL_074d;
}
IL_074b:
{
int32_t L_387 = V_33;
G_B141_0 = L_387;
}
IL_074d:
{
V_33 = G_B141_0;
int32_t L_388 = V_33;
if (!L_388)
{
goto IL_0756;
}
}
{
int32_t L_389 = V_33;
return L_389;
}
IL_0756:
{
int32_t L_390 = V_7;
if ((((int32_t)L_390) == ((int32_t)1)))
{
goto IL_00be;
}
}
{
bool L_391 = V_17;
if (L_391)
{
goto IL_0790;
}
}
{
uint8_t* L_392 = V_22;
int32_t L_393 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_392, 2)));
uint8_t* L_394 = V_23;
int32_t L_395 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_394, 2)));
V_33 = ((int32_t)il2cpp_codegen_subtract(L_393, L_395));
int32_t L_396 = V_33;
if (!L_396)
{
goto IL_0790;
}
}
{
int32_t L_397 = V_33;
V_6 = L_397;
bool L_398 = ___9_immediateBreakup;
if (!L_398)
{
goto IL_077d;
}
}
{
return (-1);
}
IL_077d:
{
bool L_399 = __this->___frenchSort_11;
if (L_399)
{
goto IL_0788;
}
}
{
G_B151_0 = 1;
goto IL_0789;
}
IL_0788:
{
G_B151_0 = 2;
}
IL_0789:
{
V_7 = G_B151_0;
goto IL_00be;
}
IL_0790:
{
int32_t L_400 = V_7;
if ((((int32_t)L_400) == ((int32_t)2)))
{
goto IL_00be;
}
}
{
uint8_t* L_401 = V_22;
int32_t L_402 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_401, 3)));
uint8_t* L_403 = V_23;
int32_t L_404 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_403, 3)));
V_33 = ((int32_t)il2cpp_codegen_subtract(L_402, L_404));
int32_t L_405 = V_33;
if (!L_405)
{
goto IL_07bb;
}
}
{
int32_t L_406 = V_33;
V_6 = L_406;
bool L_407 = ___9_immediateBreakup;
if (!L_407)
{
goto IL_07b3;
}
}
{
return (-1);
}
IL_07b3:
{
V_7 = 2;
goto IL_00be;
}
IL_07bb:
{
int32_t L_408 = V_7;
if ((((int32_t)L_408) == ((int32_t)3)))
{
goto IL_00be;
}
}
{
bool L_409 = V_26;
bool L_410 = V_27;
if ((((int32_t)L_409) == ((int32_t)L_410)))
{
goto IL_07e1;
}
}
{
bool L_411 = ___9_immediateBreakup;
if (!L_411)
{
goto IL_07cf;
}
}
{
return (-1);
}
IL_07cf:
{
bool L_412 = V_26;
if (L_412)
{
goto IL_07d6;
}
}
{
G_B164_0 = (-1);
goto IL_07d7;
}
IL_07d6:
{
G_B164_0 = 1;
}
IL_07d7:
{
V_6 = G_B164_0;
V_7 = 3;
goto IL_00be;
}
IL_07e1:
{
bool L_413 = V_26;
if (!L_413)
{
goto IL_00be;
}
}
{
int32_t L_414 = V_24;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_415;
L_415 = MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A(((int32_t)(uint16_t)L_414), NULL);
int32_t L_416 = V_25;
bool L_417;
L_417 = MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A(((int32_t)(uint16_t)L_416), NULL);
int32_t L_418;
L_418 = SimpleCollator_CompareFlagPair_m36C5153103A3912D35FA164B03521FA5C078838B(__this, (bool)((((int32_t)L_415) == ((int32_t)0))? 1 : 0), (bool)((((int32_t)L_417) == ((int32_t)0))? 1 : 0), NULL);
V_33 = L_418;
int32_t L_419 = V_33;
if (L_419)
{
goto IL_081d;
}
}
{
int32_t L_420 = V_12;
int32_t L_421 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
uint8_t L_422;
L_422 = SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC(L_420, L_421, NULL);
int32_t L_423 = V_13;
int32_t L_424 = V_0;
uint8_t L_425;
L_425 = SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC(L_423, L_424, NULL);
G_B169_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_422, (int32_t)L_425));
goto IL_081f;
}
IL_081d:
{
int32_t L_426 = V_33;
G_B169_0 = L_426;
}
IL_081f:
{
V_33 = G_B169_0;
int32_t L_427 = V_33;
if (L_427)
{
goto IL_083d;
}
}
{
int32_t L_428 = V_24;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_429;
L_429 = MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7(((int32_t)(uint16_t)L_428), NULL);
int32_t L_430 = V_25;
bool L_431;
L_431 = MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7(((int32_t)(uint16_t)L_430), NULL);
int32_t L_432;
L_432 = SimpleCollator_CompareFlagPair_m36C5153103A3912D35FA164B03521FA5C078838B(__this, L_429, L_431, NULL);
G_B172_0 = L_432;
goto IL_083f;
}
IL_083d:
{
int32_t L_433 = V_33;
G_B172_0 = L_433;
}
IL_083f:
{
V_33 = G_B172_0;
int32_t L_434 = V_33;
if (L_434)
{
goto IL_0865;
}
}
{
int32_t L_435 = V_24;
int32_t L_436 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_437;
L_437 = SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35(((int32_t)(uint16_t)L_435), L_436, NULL);
int32_t L_438 = V_25;
int32_t L_439 = V_0;
bool L_440;
L_440 = SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35(((int32_t)(uint16_t)L_438), L_439, NULL);
int32_t L_441;
L_441 = SimpleCollator_CompareFlagPair_m36C5153103A3912D35FA164B03521FA5C078838B(__this, (bool)((((int32_t)L_437) == ((int32_t)0))? 1 : 0), (bool)((((int32_t)L_440) == ((int32_t)0))? 1 : 0), NULL);
G_B175_0 = L_441;
goto IL_0867;
}
IL_0865:
{
int32_t L_442 = V_33;
G_B175_0 = L_442;
}
IL_0867:
{
V_33 = G_B175_0;
int32_t L_443 = V_33;
if (!L_443)
{
goto IL_00be;
}
}
{
bool L_444 = ___9_immediateBreakup;
if (!L_444)
{
goto IL_0876;
}
}
{
return (-1);
}
IL_0876:
{
int32_t L_445 = V_33;
V_6 = L_445;
V_7 = 3;
goto IL_00be;
}
IL_0882:
{
bool L_446 = V_17;
if (L_446)
{
goto IL_08ff;
}
}
{
int32_t L_447 = V_6;
if (!L_447)
{
goto IL_08ff;
}
}
{
int32_t L_448 = V_7;
if ((((int32_t)L_448) <= ((int32_t)2)))
{
goto IL_08ff;
}
}
{
goto IL_08f5;
}
IL_0891:
{
String_t* L_449 = ___0_s1;
int32_t L_450 = ___1_idx1;
NullCheck(L_449);
Il2CppChar L_451;
L_451 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_449, L_450, NULL);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_452;
L_452 = MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4(L_451, NULL);
if (!L_452)
{
goto IL_08ff;
}
}
{
String_t* L_453 = ___3_s2;
int32_t L_454 = ___4_idx2;
NullCheck(L_453);
Il2CppChar L_455;
L_455 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_453, L_454, NULL);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_456;
L_456 = MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4(L_455, NULL);
if (!L_456)
{
goto IL_08ff;
}
}
{
String_t* L_457 = ___0_s1;
int32_t L_458 = ___1_idx1;
NullCheck(L_457);
Il2CppChar L_459;
L_459 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_457, L_458, NULL);
int32_t L_460 = V_0;
int32_t L_461;
L_461 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_459, L_460, NULL);
int32_t L_462 = V_12;
uint8_t L_463;
L_463 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_461, L_462, NULL);
String_t* L_464 = ___3_s2;
int32_t L_465 = ___4_idx2;
NullCheck(L_464);
Il2CppChar L_466;
L_466 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_464, L_465, NULL);
int32_t L_467 = V_0;
int32_t L_468;
L_468 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_466, L_467, NULL);
int32_t L_469 = V_13;
uint8_t L_470;
L_470 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_468, L_469, NULL);
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_463, (int32_t)L_470));
int32_t L_471 = V_6;
if (L_471)
{
goto IL_08ff;
}
}
{
int32_t L_472 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_472, 1));
int32_t L_473 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_473, 1));
V_12 = 0;
V_13 = 0;
}
IL_08f5:
{
int32_t L_474 = ___1_idx1;
int32_t L_475 = V_3;
if ((((int32_t)L_474) >= ((int32_t)L_475)))
{
goto IL_08ff;
}
}
{
int32_t L_476 = ___4_idx2;
int32_t L_477 = V_4;
if ((((int32_t)L_476) < ((int32_t)L_477)))
{
goto IL_0891;
}
}
IL_08ff:
{
int32_t L_478 = V_7;
if ((!(((uint32_t)L_478) == ((uint32_t)1))))
{
goto IL_093f;
}
}
{
int32_t L_479 = V_6;
if (!L_479)
{
goto IL_093f;
}
}
{
goto IL_091d;
}
IL_090a:
{
String_t* L_480 = ___0_s1;
int32_t L_481 = ___1_idx1;
NullCheck(L_480);
Il2CppChar L_482;
L_482 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_480, L_481, NULL);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_483;
L_483 = MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4(L_482, NULL);
if (!L_483)
{
goto IL_0939;
}
}
{
int32_t L_484 = ___1_idx1;
___1_idx1 = ((int32_t)il2cpp_codegen_add(L_484, 1));
}
IL_091d:
{
int32_t L_485 = ___1_idx1;
int32_t L_486 = V_3;
if ((((int32_t)L_485) < ((int32_t)L_486)))
{
goto IL_090a;
}
}
{
goto IL_0939;
}
IL_0923:
{
String_t* L_487 = ___3_s2;
int32_t L_488 = ___4_idx2;
NullCheck(L_487);
Il2CppChar L_489;
L_489 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_487, L_488, NULL);
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_490;
L_490 = MSCompatUnicodeTable_IsIgnorableNonSpacing_mA6CB8EC17AEE637FC216B6D288846AF12C2135E4(L_489, NULL);
if (!L_490)
{
goto IL_093f;
}
}
{
int32_t L_491 = ___4_idx2;
___4_idx2 = ((int32_t)il2cpp_codegen_add(L_491, 1));
}
IL_0939:
{
int32_t L_492 = ___4_idx2;
int32_t L_493 = V_4;
if ((((int32_t)L_492) < ((int32_t)L_493)))
{
goto IL_0923;
}
}
IL_093f:
{
int32_t L_494 = V_6;
if (L_494)
{
goto IL_0973;
}
}
{
int32_t L_495 = V_8;
if ((((int32_t)L_495) >= ((int32_t)0)))
{
goto IL_0952;
}
}
{
int32_t L_496 = V_9;
if ((((int32_t)L_496) < ((int32_t)0)))
{
goto IL_0952;
}
}
{
V_6 = (-1);
goto IL_0973;
}
IL_0952:
{
int32_t L_497 = V_9;
if ((((int32_t)L_497) >= ((int32_t)0)))
{
goto IL_0961;
}
}
{
int32_t L_498 = V_8;
if ((((int32_t)L_498) < ((int32_t)0)))
{
goto IL_0961;
}
}
{
V_6 = 1;
goto IL_0973;
}
IL_0961:
{
int32_t L_499 = V_8;
int32_t L_500 = V_9;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_499, L_500));
int32_t L_501 = V_6;
if (L_501)
{
goto IL_0973;
}
}
{
int32_t L_502 = V_10;
int32_t L_503 = V_11;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_502, L_503));
}
IL_0973:
{
int32_t L_504 = V_6;
if (L_504)
{
goto IL_0989;
}
}
{
int32_t L_505 = ___4_idx2;
int32_t L_506 = V_4;
if ((!(((uint32_t)L_505) == ((uint32_t)L_506))))
{
goto IL_0981;
}
}
{
bool* L_507 = ___6_targetConsumed;
*((int8_t*)L_507) = (int8_t)1;
}
IL_0981:
{
int32_t L_508 = ___1_idx1;
int32_t L_509 = V_3;
if ((!(((uint32_t)L_508) == ((uint32_t)L_509))))
{
goto IL_0989;
}
}
{
bool* L_510 = ___7_sourceConsumed;
*((int8_t*)L_510) = (int8_t)1;
}
IL_0989:
{
int32_t L_511 = ___1_idx1;
int32_t L_512 = V_3;
if ((!(((uint32_t)L_511) == ((uint32_t)L_512))))
{
goto IL_0998;
}
}
{
int32_t L_513 = ___4_idx2;
int32_t L_514 = V_4;
if ((((int32_t)L_513) == ((int32_t)L_514)))
{
goto IL_0995;
}
}
{
return (-1);
}
IL_0995:
{
int32_t L_515 = V_6;
return L_515;
}
IL_0998:
{
return 1;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::CompareFlagPair(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_CompareFlagPair_m36C5153103A3912D35FA164B03521FA5C078838B (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, bool ___0_b1, bool ___1_b2, const RuntimeMethod* method)
{
{
bool L_0 = ___0_b1;
bool L_1 = ___1_b2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_000b;
}
}
{
bool L_2 = ___0_b1;
if (L_2)
{
goto IL_0009;
}
}
{
return (-1);
}
IL_0009:
{
return 1;
}
IL_000b:
{
return 0;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_mC43D1D377C10F1158BAB512392BF26FA77BF4C00 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_src, String_t* ___1_target, int32_t ___2_opt, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_src;
String_t* L_1 = ___1_target;
String_t* L_2 = ___0_src;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
int32_t L_4 = ___2_opt;
bool L_5;
L_5 = SimpleCollator_IsPrefix_mD1DEA97AE880EBCA09C11F5D64C1A8BF2BBF5D8E(__this, L_0, L_1, 0, L_3, L_4, NULL);
return L_5;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_mD1DEA97AE880EBCA09C11F5D64C1A8BF2BBF5D8E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE V_2;
memset((&V_2), 0, sizeof(V_2));
{
String_t* L_0 = ___1_target;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
uintptr_t L_2 = ((uintptr_t)4);
int8_t* L_3 = (int8_t*) (L_2 ? alloca(L_2) : NULL);
memset(L_3, 0, L_2);
V_0 = (uint8_t*)(L_3);
uintptr_t L_4 = ((uintptr_t)4);
int8_t* L_5 = (int8_t*) (L_4 ? alloca(L_4) : NULL);
memset(L_5, 0, L_4);
V_1 = (uint8_t*)(L_5);
uint8_t* L_6 = V_0;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_6, 4, NULL);
uint8_t* L_7 = V_1;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_7, 4, NULL);
int32_t L_8 = ___4_opt;
uint8_t* L_9 = V_0;
uint8_t* L_10 = V_1;
Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A((&V_2), L_8, (uint8_t*)((uintptr_t)0), (uint8_t*)((uintptr_t)0), L_9, L_10, (uint8_t*)((uintptr_t)0), NULL);
String_t* L_11 = ___0_s;
String_t* L_12 = ___1_target;
int32_t L_13 = ___2_start;
int32_t L_14 = ___3_length;
bool L_15;
L_15 = SimpleCollator_IsPrefix_mA60DF9D84E40E774783313C812198E41460BA4CF(__this, L_11, L_12, L_13, L_14, (bool)1, (&V_2), NULL);
return L_15;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Int32,System.Int32,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_mA60DF9D84E40E774783313C812198E41460BA4CF (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, bool ___4_skipHeadingExtenders, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___5_ctx, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
String_t* L_0 = ___0_s;
int32_t L_1 = ___2_start;
int32_t L_2 = ___3_length;
String_t* L_3 = ___1_target;
String_t* L_4 = ___1_target;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
bool L_6 = ___4_skipHeadingExtenders;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_7 = ___5_ctx;
int32_t L_8;
L_8 = SimpleCollator_CompareInternal_m1922639329B7F77643CD82F2A491BD12E6FE4191(__this, L_0, L_1, L_2, L_3, 0, L_5, (&V_0), (&V_1), L_6, (bool)1, L_7, NULL);
bool L_9 = V_0;
return L_9;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSuffix(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSuffix_mD9793ECCF4F98858817770EF1C349E17B6FC347F (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_src, String_t* ___1_target, int32_t ___2_opt, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_src;
String_t* L_1 = ___1_target;
String_t* L_2 = ___0_src;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
String_t* L_4 = ___0_src;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
int32_t L_6 = ___2_opt;
bool L_7;
L_7 = SimpleCollator_IsSuffix_m9E4F334A9BFF2B6DF2D776382573DF0463EF919C(__this, L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_3, 1)), L_5, L_6, NULL);
return L_7;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSuffix(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSuffix_m9E4F334A9BFF2B6DF2D776382573DF0463EF919C (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___1_target;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
String_t* L_2 = ___0_s;
String_t* L_3 = ___1_target;
int32_t L_4 = ___2_start;
int32_t L_5 = ___3_length;
int32_t L_6 = ___4_opt;
int32_t L_7;
L_7 = SimpleCollator_LastIndexOf_mA10DF8A160173336E3159912701A4EA27D670EA4(__this, L_2, L_3, L_4, L_5, L_6, NULL);
V_0 = L_7;
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_003a;
}
}
{
String_t* L_9 = ___0_s;
int32_t L_10 = V_0;
String_t* L_11 = ___0_s;
NullCheck(L_11);
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
int32_t L_13 = V_0;
String_t* L_14 = ___1_target;
String_t* L_15 = ___1_target;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
int32_t L_17 = ___4_opt;
int32_t L_18;
L_18 = SimpleCollator_Compare_m3D60A3799386624D26100C40A1832400EB9D2746(__this, L_9, L_10, ((int32_t)il2cpp_codegen_subtract(L_12, L_13)), L_14, 0, L_16, L_17, NULL);
return (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
}
IL_003a:
{
return (bool)0;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::QuickIndexOf(System.String,System.String,System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_QuickIndexOf_m6815934F5AAB5546ED93F5DCDC09FABAC7680B18 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, bool* ___4_testWasUnable, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
Il2CppChar V_6 = 0x0;
Il2CppChar V_7 = 0x0;
{
V_0 = (-1);
V_1 = (-1);
bool* L_0 = ___4_testWasUnable;
*((int8_t*)L_0) = (int8_t)1;
String_t* L_1 = ___1_target;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_0012;
}
}
{
return 0;
}
IL_0012:
{
String_t* L_3 = ___1_target;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5 = ___3_length;
if ((((int32_t)L_4) <= ((int32_t)L_5)))
{
goto IL_001e;
}
}
{
return (-1);
}
IL_001e:
{
bool* L_6 = ___4_testWasUnable;
*((int8_t*)L_6) = (int8_t)0;
int32_t L_7 = ___2_start;
int32_t L_8 = ___3_length;
String_t* L_9 = ___1_target;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_7, L_8)), L_10)), 1));
int32_t L_11 = ___2_start;
V_3 = L_11;
goto IL_00c2;
}
IL_0037:
{
V_4 = (bool)0;
V_5 = 0;
goto IL_00ae;
}
IL_003f:
{
int32_t L_12 = V_1;
int32_t L_13 = V_5;
if ((((int32_t)L_12) >= ((int32_t)L_13)))
{
goto IL_0064;
}
}
{
String_t* L_14 = ___1_target;
int32_t L_15 = V_5;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
V_6 = L_16;
Il2CppChar L_17 = V_6;
if (!L_17)
{
goto IL_005b;
}
}
{
Il2CppChar L_18 = V_6;
if ((((int32_t)L_18) < ((int32_t)((int32_t)128))))
{
goto IL_0061;
}
}
IL_005b:
{
bool* L_19 = ___4_testWasUnable;
*((int8_t*)L_19) = (int8_t)1;
return (-1);
}
IL_0061:
{
int32_t L_20 = V_5;
V_1 = L_20;
}
IL_0064:
{
int32_t L_21 = V_0;
int32_t L_22 = V_3;
int32_t L_23 = V_5;
if ((((int32_t)L_21) >= ((int32_t)((int32_t)il2cpp_codegen_add(L_22, L_23)))))
{
goto IL_008f;
}
}
{
String_t* L_24 = ___0_s;
int32_t L_25 = V_3;
int32_t L_26 = V_5;
NullCheck(L_24);
Il2CppChar L_27;
L_27 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), NULL);
V_7 = L_27;
Il2CppChar L_28 = V_7;
if (!L_28)
{
goto IL_0084;
}
}
{
Il2CppChar L_29 = V_7;
if ((((int32_t)L_29) < ((int32_t)((int32_t)128))))
{
goto IL_008a;
}
}
IL_0084:
{
bool* L_30 = ___4_testWasUnable;
*((int8_t*)L_30) = (int8_t)1;
return (-1);
}
IL_008a:
{
int32_t L_31 = V_3;
int32_t L_32 = V_5;
V_0 = ((int32_t)il2cpp_codegen_add(L_31, L_32));
}
IL_008f:
{
String_t* L_33 = ___0_s;
int32_t L_34 = V_3;
int32_t L_35 = V_5;
NullCheck(L_33);
Il2CppChar L_36;
L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_33, ((int32_t)il2cpp_codegen_add(L_34, L_35)), NULL);
String_t* L_37 = ___1_target;
int32_t L_38 = V_5;
NullCheck(L_37);
Il2CppChar L_39;
L_39 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_37, L_38, NULL);
if ((((int32_t)L_36) == ((int32_t)L_39)))
{
goto IL_00a8;
}
}
{
V_4 = (bool)1;
goto IL_00b8;
}
IL_00a8:
{
int32_t L_40 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_40, 1));
}
IL_00ae:
{
int32_t L_41 = V_5;
String_t* L_42 = ___1_target;
NullCheck(L_42);
int32_t L_43;
L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
if ((((int32_t)L_41) < ((int32_t)L_43)))
{
goto IL_003f;
}
}
IL_00b8:
{
bool L_44 = V_4;
if (L_44)
{
goto IL_00be;
}
}
{
int32_t L_45 = V_3;
return L_45;
}
IL_00be:
{
int32_t L_46 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_46, 1));
}
IL_00c2:
{
int32_t L_47 = V_3;
int32_t L_48 = V_2;
if ((((int32_t)L_47) < ((int32_t)L_48)))
{
goto IL_0037;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOf_mA4E0147AD4E1892A2865084EDBFE68A05D160373 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
uint8_t* V_2 = NULL;
uint8_t* V_3 = NULL;
uint8_t* V_4 = NULL;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE V_5;
memset((&V_5), 0, sizeof(V_5));
bool V_6 = false;
int32_t V_7 = 0;
{
int32_t L_0 = ___4_opt;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)1073741824)))))
{
goto IL_0014;
}
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_1 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_1);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD4F5AB3DB8A9A36171F6BAE4DC5ED6137E31D30B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleCollator_IndexOf_mA4E0147AD4E1892A2865084EDBFE68A05D160373_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___4_opt;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_0028;
}
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_3 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_3);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD4F5AB3DB8A9A36171F6BAE4DC5ED6137E31D30B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleCollator_IndexOf_mA4E0147AD4E1892A2865084EDBFE68A05D160373_RuntimeMethod_var)));
}
IL_0028:
{
int32_t L_4 = ___4_opt;
if (L_4)
{
goto IL_0042;
}
}
{
String_t* L_5 = ___0_s;
String_t* L_6 = ___1_target;
int32_t L_7 = ___2_start;
int32_t L_8 = ___3_length;
int32_t L_9;
L_9 = SimpleCollator_QuickIndexOf_m6815934F5AAB5546ED93F5DCDC09FABAC7680B18(__this, L_5, L_6, L_7, L_8, (&V_6), NULL);
V_7 = L_9;
bool L_10 = V_6;
if (L_10)
{
goto IL_0042;
}
}
{
int32_t L_11 = V_7;
return L_11;
}
IL_0042:
{
uintptr_t L_12 = ((uintptr_t)((int32_t)16));
int8_t* L_13 = (int8_t*) (L_12 ? alloca(L_12) : NULL);
memset(L_13, 0, L_12);
V_0 = (uint8_t*)(L_13);
uintptr_t L_14 = ((uintptr_t)((int32_t)16));
int8_t* L_15 = (int8_t*) (L_14 ? alloca(L_14) : NULL);
memset(L_15, 0, L_14);
V_1 = (uint8_t*)(L_15);
uintptr_t L_16 = ((uintptr_t)4);
int8_t* L_17 = (int8_t*) (L_16 ? alloca(L_16) : NULL);
memset(L_17, 0, L_16);
V_2 = (uint8_t*)(L_17);
uintptr_t L_18 = ((uintptr_t)4);
int8_t* L_19 = (int8_t*) (L_18 ? alloca(L_18) : NULL);
memset(L_19, 0, L_18);
V_3 = (uint8_t*)(L_19);
uintptr_t L_20 = ((uintptr_t)4);
int8_t* L_21 = (int8_t*) (L_20 ? alloca(L_20) : NULL);
memset(L_21, 0, L_20);
V_4 = (uint8_t*)(L_21);
uint8_t* L_22 = V_0;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_22, ((int32_t)16), NULL);
uint8_t* L_23 = V_1;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_23, ((int32_t)16), NULL);
uint8_t* L_24 = V_2;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_24, 4, NULL);
uint8_t* L_25 = V_3;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_25, 4, NULL);
uint8_t* L_26 = V_4;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_26, 4, NULL);
int32_t L_27 = ___4_opt;
uint8_t* L_28 = V_0;
uint8_t* L_29 = V_1;
uint8_t* L_30 = V_3;
uint8_t* L_31 = V_4;
Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A((&V_5), L_27, L_28, L_29, L_30, L_31, (uint8_t*)((uintptr_t)0), NULL);
String_t* L_32 = ___0_s;
String_t* L_33 = ___1_target;
int32_t L_34 = ___2_start;
int32_t L_35 = ___3_length;
uint8_t* L_36 = V_2;
int32_t L_37;
L_37 = SimpleCollator_IndexOf_m11B2D9FB7B98647C6B6DC4B647A174B0C54B591D(__this, L_32, L_33, L_34, L_35, L_36, (&V_5), NULL);
return L_37;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOfOrdinal(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOfOrdinal_m7196DECD403B6631D6A3B9D04A34088BA91B43BC (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
{
String_t* L_0 = ___1_target;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
String_t* L_2 = ___1_target;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
int32_t L_4 = ___3_length;
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0016;
}
}
{
return (-1);
}
IL_0016:
{
int32_t L_5 = ___2_start;
int32_t L_6 = ___3_length;
String_t* L_7 = ___1_target;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_5, L_6)), L_8)), 1));
int32_t L_9 = ___2_start;
V_1 = L_9;
goto IL_005a;
}
IL_0028:
{
V_2 = (bool)0;
V_3 = 0;
goto IL_0048;
}
IL_002e:
{
String_t* L_10 = ___0_s;
int32_t L_11 = V_1;
int32_t L_12 = V_3;
NullCheck(L_10);
Il2CppChar L_13;
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, ((int32_t)il2cpp_codegen_add(L_11, L_12)), NULL);
String_t* L_14 = ___1_target;
int32_t L_15 = V_3;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
if ((((int32_t)L_13) == ((int32_t)L_16)))
{
goto IL_0044;
}
}
{
V_2 = (bool)1;
goto IL_0051;
}
IL_0044:
{
int32_t L_17 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0048:
{
int32_t L_18 = V_3;
String_t* L_19 = ___1_target;
NullCheck(L_19);
int32_t L_20;
L_20 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_19, NULL);
if ((((int32_t)L_18) < ((int32_t)L_20)))
{
goto IL_002e;
}
}
IL_0051:
{
bool L_21 = V_2;
if (L_21)
{
goto IL_0056;
}
}
{
int32_t L_22 = V_1;
return L_22;
}
IL_0056:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1));
}
IL_005a:
{
int32_t L_24 = V_1;
int32_t L_25 = V_0;
if ((((int32_t)L_24) < ((int32_t)L_25)))
{
goto IL_0028;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOfOrdinal(System.String,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOfOrdinal_mAC77E8D165ABA6EC71A06BFCC1D7299E333811C7 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, Il2CppChar ___1_target, int32_t ___2_start, int32_t ___3_length, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___2_start;
int32_t L_1 = ___3_length;
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
int32_t L_2 = ___2_start;
V_1 = L_2;
goto IL_0019;
}
IL_0009:
{
String_t* L_3 = ___0_s;
int32_t L_4 = V_1;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL);
Il2CppChar L_6 = ___1_target;
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
{
goto IL_0015;
}
}
{
int32_t L_7 = V_1;
return L_7;
}
IL_0015:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0019:
{
int32_t L_9 = V_1;
int32_t L_10 = V_0;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_0009;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOfSortKey(System.String,System.Int32,System.Int32,System.Byte*,System.Char,System.Int32,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOfSortKey_m8F31818D0A985D2B5E8183E15D5A92D57293F3D6 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_length, uint8_t* ___3_sortkey, Il2CppChar ___4_target, int32_t ___5_ti, bool ___6_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___7_ctx, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___1_start;
int32_t L_1 = ___2_length;
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
int32_t L_2 = ___1_start;
V_1 = L_2;
goto IL_0020;
}
IL_0008:
{
int32_t L_3 = V_1;
V_2 = L_3;
String_t* L_4 = ___0_s;
int32_t L_5 = V_0;
int32_t L_6 = ___5_ti;
uint8_t* L_7 = ___3_sortkey;
bool L_8 = ___6_noLv4;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_9 = ___7_ctx;
bool L_10;
L_10 = SimpleCollator_MatchesForward_m8CA755E21AD13E1BF8DD83078F133730D33E4536(__this, L_4, (&V_1), L_5, L_6, L_7, L_8, L_9, NULL);
if (!L_10)
{
goto IL_0020;
}
}
{
int32_t L_11 = V_2;
return L_11;
}
IL_0020:
{
int32_t L_12 = V_1;
int32_t L_13 = V_0;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0008;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Byte*,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOf_m11B2D9FB7B98647C6B6DC4B647A174B0C54B591D (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, uint8_t* ___4_targetSortKey, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___5_ctx, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_2 = NULL;
String_t* V_3 = NULL;
uint8_t* V_4 = NULL;
bool V_5 = false;
Il2CppChar V_6 = 0x0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_10 = NULL;
String_t* G_B11_0 = NULL;
uintptr_t G_B14_0;
memset((&G_B14_0), 0, sizeof(G_B14_0));
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_0 = ___5_ctx;
int32_t L_1 = L_0->___Option_0;
V_0 = L_1;
V_1 = 0;
goto IL_001f;
}
IL_000c:
{
String_t* L_2 = ___1_target;
int32_t L_3 = V_1;
NullCheck(L_2);
Il2CppChar L_4;
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
int32_t L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_6;
L_6 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_4, L_5, NULL);
if (!L_6)
{
goto IL_0028;
}
}
{
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_001f:
{
int32_t L_8 = V_1;
String_t* L_9 = ___1_target;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
if ((((int32_t)L_8) < ((int32_t)L_10)))
{
goto IL_000c;
}
}
IL_0028:
{
int32_t L_11 = V_1;
String_t* L_12 = ___1_target;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)L_13))))
{
goto IL_0051;
}
}
{
String_t* L_14 = ___1_target;
String_t* L_15 = ___1_target;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
int32_t L_17;
L_17 = SimpleCollator_IndexOfOrdinal_mAC77E8D165ABA6EC71A06BFCC1D7299E333811C7(__this, L_14, 0, 0, L_16, NULL);
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0045;
}
}
{
int32_t L_18 = ___2_start;
return L_18;
}
IL_0045:
{
String_t* L_19 = ___0_s;
String_t* L_20 = ___1_target;
int32_t L_21 = ___2_start;
int32_t L_22 = ___3_length;
int32_t L_23;
L_23 = SimpleCollator_IndexOfOrdinal_m7196DECD403B6631D6A3B9D04A34088BA91B43BC(__this, L_19, L_20, L_21, L_22, NULL);
return L_23;
}
IL_0051:
{
String_t* L_24 = ___1_target;
int32_t L_25 = V_1;
String_t* L_26 = ___1_target;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
int32_t L_28 = V_1;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_29;
L_29 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_24, L_25, ((int32_t)il2cpp_codegen_subtract(L_27, L_28)), NULL);
V_2 = L_29;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_30 = V_2;
if (L_30)
{
goto IL_0068;
}
}
{
G_B11_0 = ((String_t*)(NULL));
goto IL_006e;
}
IL_0068:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_31 = V_2;
NullCheck(L_31);
String_t* L_32 = L_31->___Replacement_2;
G_B11_0 = L_32;
}
IL_006e:
{
V_3 = G_B11_0;
String_t* L_33 = V_3;
if (!L_33)
{
goto IL_0076;
}
}
{
G_B14_0 = ((uintptr_t)0);
goto IL_0078;
}
IL_0076:
{
uint8_t* L_34 = ___4_targetSortKey;
G_B14_0 = ((uintptr_t)(intptr_t)(L_34));
}
IL_0078:
{
V_4 = (uint8_t*)G_B14_0;
V_5 = (bool)1;
V_6 = 0;
V_7 = (-1);
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_35 = V_2;
if (!L_35)
{
goto IL_00b4;
}
}
{
uint8_t* L_36 = V_4;
if ((((intptr_t)L_36) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00b4;
}
}
{
V_8 = 0;
goto IL_00a6;
}
IL_0091:
{
uint8_t* L_37 = V_4;
int32_t L_38 = V_8;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_39 = V_2;
NullCheck(L_39);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_40 = L_39->___SortKey_3;
int32_t L_41 = V_8;
NullCheck(L_40);
int32_t L_42 = L_41;
uint8_t L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, L_38))) = (int8_t)L_43;
int32_t L_44 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_44, 1));
}
IL_00a6:
{
int32_t L_45 = V_8;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_46 = V_2;
NullCheck(L_46);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_47 = L_46->___SortKey_3;
NullCheck(L_47);
if ((((int32_t)L_45) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))))
{
goto IL_0091;
}
}
{
goto IL_0117;
}
IL_00b4:
{
uint8_t* L_48 = V_4;
if ((((intptr_t)L_48) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0117;
}
}
{
String_t* L_49 = ___1_target;
int32_t L_50 = V_1;
NullCheck(L_49);
Il2CppChar L_51;
L_51 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_49, L_50, NULL);
V_6 = L_51;
String_t* L_52 = ___1_target;
int32_t L_53 = V_1;
NullCheck(L_52);
Il2CppChar L_54;
L_54 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_52, L_53, NULL);
int32_t L_55 = V_0;
int32_t L_56;
L_56 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_54, L_55, NULL);
V_7 = L_56;
uint8_t* L_57 = V_4;
int32_t L_58 = V_7;
uint8_t L_59;
L_59 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_58, NULL);
*((int8_t*)L_57) = (int8_t)L_59;
uint8_t* L_60 = V_4;
int32_t L_61 = V_7;
uint8_t L_62;
L_62 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_61, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_60, 1))) = (int8_t)L_62;
int32_t L_63 = V_0;
if (((int32_t)((int32_t)L_63&2)))
{
goto IL_00fe;
}
}
{
uint8_t* L_64 = V_4;
int32_t L_65 = V_7;
uint8_t L_66;
L_66 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_65, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_64, 2))) = (int8_t)L_66;
}
IL_00fe:
{
uint8_t* L_67 = V_4;
int32_t L_68 = V_7;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_69;
L_69 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_68, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_67, 3))) = (int8_t)L_69;
int32_t L_70 = V_7;
bool L_71;
L_71 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_70), NULL);
V_5 = (bool)((((int32_t)L_71) == ((int32_t)0))? 1 : 0);
}
IL_0117:
{
uint8_t* L_72 = V_4;
if ((((intptr_t)L_72) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0167;
}
}
{
int32_t L_73 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_73, 1));
goto IL_015e;
}
IL_0123:
{
String_t* L_74 = ___1_target;
int32_t L_75 = V_1;
NullCheck(L_74);
Il2CppChar L_76;
L_76 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_74, L_75, NULL);
uint8_t L_77;
L_77 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_76, NULL);
if ((!(((uint32_t)L_77) == ((uint32_t)1))))
{
goto IL_0167;
}
}
{
uint8_t* L_78 = V_4;
int32_t L_79 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_78, 2)));
if (L_79)
{
goto IL_0140;
}
}
{
uint8_t* L_80 = V_4;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_80, 2))) = (int8_t)2;
}
IL_0140:
{
uint8_t* L_81 = V_4;
uint8_t* L_82 = V_4;
int32_t L_83 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_82, 2)));
String_t* L_84 = ___1_target;
int32_t L_85 = V_1;
NullCheck(L_84);
Il2CppChar L_86;
L_86 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_84, L_85, NULL);
uint8_t L_87;
L_87 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_86, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_81, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_83, (int32_t)L_87)));
int32_t L_88 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_88, 1));
}
IL_015e:
{
int32_t L_89 = V_1;
String_t* L_90 = ___1_target;
NullCheck(L_90);
int32_t L_91;
L_91 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_90, NULL);
if ((((int32_t)L_89) < ((int32_t)L_91)))
{
goto IL_0123;
}
}
IL_0167:
{
V_9 = 0;
String_t* L_92 = V_3;
if (!L_92)
{
goto IL_0180;
}
}
{
String_t* L_93 = ___0_s;
String_t* L_94 = V_3;
int32_t L_95 = ___2_start;
int32_t L_96 = ___3_length;
uint8_t* L_97 = ___4_targetSortKey;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_98 = ___5_ctx;
int32_t L_99;
L_99 = SimpleCollator_IndexOf_m11B2D9FB7B98647C6B6DC4B647A174B0C54B591D(__this, L_93, L_94, L_95, L_96, L_97, L_98, NULL);
V_9 = L_99;
goto IL_0196;
}
IL_0180:
{
String_t* L_100 = ___0_s;
int32_t L_101 = ___2_start;
int32_t L_102 = ___3_length;
uint8_t* L_103 = V_4;
Il2CppChar L_104 = V_6;
int32_t L_105 = V_7;
bool L_106 = V_5;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_107 = ___5_ctx;
int32_t L_108;
L_108 = SimpleCollator_IndexOfSortKey_m8F31818D0A985D2B5E8183E15D5A92D57293F3D6(__this, L_100, L_101, L_102, L_103, L_104, L_105, L_106, L_107, NULL);
V_9 = L_108;
}
IL_0196:
{
int32_t L_109 = V_9;
if ((((int32_t)L_109) >= ((int32_t)0)))
{
goto IL_019d;
}
}
{
return (-1);
}
IL_019d:
{
int32_t L_110 = ___3_length;
int32_t L_111 = V_9;
int32_t L_112 = ___2_start;
___3_length = ((int32_t)il2cpp_codegen_subtract(L_110, ((int32_t)il2cpp_codegen_subtract(L_111, L_112))));
int32_t L_113 = V_9;
___2_start = L_113;
String_t* L_114 = ___0_s;
String_t* L_115 = ___1_target;
int32_t L_116 = ___2_start;
int32_t L_117 = ___3_length;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_118 = ___5_ctx;
bool L_119;
L_119 = SimpleCollator_IsPrefix_mA60DF9D84E40E774783313C812198E41460BA4CF(__this, L_114, L_115, L_116, L_117, (bool)0, L_118, NULL);
if (!L_119)
{
goto IL_01bd;
}
}
{
int32_t L_120 = V_9;
return L_120;
}
IL_01bd:
{
String_t* L_121 = ___0_s;
int32_t L_122 = ___2_start;
int32_t L_123 = ___3_length;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_124;
L_124 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_121, L_122, L_123, NULL);
V_10 = L_124;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_125 = V_10;
if (!L_125)
{
goto IL_01ea;
}
}
{
int32_t L_126 = ___2_start;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_127 = V_10;
NullCheck(L_127);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_128 = L_127->___Source_1;
NullCheck(L_128);
___2_start = ((int32_t)il2cpp_codegen_add(L_126, ((int32_t)(((RuntimeArray*)L_128)->max_length))));
int32_t L_129 = ___3_length;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_130 = V_10;
NullCheck(L_130);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131 = L_130->___Source_1;
NullCheck(L_131);
___3_length = ((int32_t)il2cpp_codegen_subtract(L_129, ((int32_t)(((RuntimeArray*)L_131)->max_length))));
goto IL_01f5;
}
IL_01ea:
{
int32_t L_132 = ___2_start;
___2_start = ((int32_t)il2cpp_codegen_add(L_132, 1));
int32_t L_133 = ___3_length;
___3_length = ((int32_t)il2cpp_codegen_subtract(L_133, 1));
}
IL_01f5:
{
int32_t L_134 = ___3_length;
if ((((int32_t)L_134) > ((int32_t)0)))
{
goto IL_0167;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_mA10DF8A160173336E3159912701A4EA27D670EA4 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, int32_t ___4_opt, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
uint8_t* V_2 = NULL;
uint8_t* V_3 = NULL;
uint8_t* V_4 = NULL;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE V_5;
memset((&V_5), 0, sizeof(V_5));
{
int32_t L_0 = ___4_opt;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)1073741824)))))
{
goto IL_0014;
}
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_1 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_1);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD4F5AB3DB8A9A36171F6BAE4DC5ED6137E31D30B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleCollator_LastIndexOf_mA10DF8A160173336E3159912701A4EA27D670EA4_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___4_opt;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_0028;
}
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_3 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_3);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD4F5AB3DB8A9A36171F6BAE4DC5ED6137E31D30B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleCollator_LastIndexOf_mA10DF8A160173336E3159912701A4EA27D670EA4_RuntimeMethod_var)));
}
IL_0028:
{
uintptr_t L_4 = ((uintptr_t)((int32_t)16));
int8_t* L_5 = (int8_t*) (L_4 ? alloca(L_4) : NULL);
memset(L_5, 0, L_4);
V_0 = (uint8_t*)(L_5);
uintptr_t L_6 = ((uintptr_t)((int32_t)16));
int8_t* L_7 = (int8_t*) (L_6 ? alloca(L_6) : NULL);
memset(L_7, 0, L_6);
V_1 = (uint8_t*)(L_7);
uintptr_t L_8 = ((uintptr_t)4);
int8_t* L_9 = (int8_t*) (L_8 ? alloca(L_8) : NULL);
memset(L_9, 0, L_8);
V_2 = (uint8_t*)(L_9);
uintptr_t L_10 = ((uintptr_t)4);
int8_t* L_11 = (int8_t*) (L_10 ? alloca(L_10) : NULL);
memset(L_11, 0, L_10);
V_3 = (uint8_t*)(L_11);
uintptr_t L_12 = ((uintptr_t)4);
int8_t* L_13 = (int8_t*) (L_12 ? alloca(L_12) : NULL);
memset(L_13, 0, L_12);
V_4 = (uint8_t*)(L_13);
uint8_t* L_14 = V_0;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_14, ((int32_t)16), NULL);
uint8_t* L_15 = V_1;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_15, ((int32_t)16), NULL);
uint8_t* L_16 = V_2;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_16, 4, NULL);
uint8_t* L_17 = V_3;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_17, 4, NULL);
uint8_t* L_18 = V_4;
SimpleCollator_ClearBuffer_m4DC9B335D3EC5471AD7E6A2267B8AEB272A74726(__this, L_18, 4, NULL);
int32_t L_19 = ___4_opt;
uint8_t* L_20 = V_0;
uint8_t* L_21 = V_1;
uint8_t* L_22 = V_3;
uint8_t* L_23 = V_4;
Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A((&V_5), L_19, L_20, L_21, L_22, L_23, (uint8_t*)((uintptr_t)0), NULL);
String_t* L_24 = ___0_s;
String_t* L_25 = ___1_target;
int32_t L_26 = ___2_start;
int32_t L_27 = ___3_length;
uint8_t* L_28 = V_2;
int32_t L_29;
L_29 = SimpleCollator_LastIndexOf_m488C8D25A2AB765863F915C6DB76AB6EE0F06720(__this, L_24, L_25, L_26, L_27, L_28, (&V_5), NULL);
return L_29;
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOfOrdinal(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOfOrdinal_m322FE1FF86BFDE367B003E70455FD7B3C39B3196 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
{
String_t* L_0 = ___1_target;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
int32_t L_2 = ___2_start;
return L_2;
}
IL_000a:
{
String_t* L_3 = ___0_s;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
String_t* L_5 = ___1_target;
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_0022;
}
}
{
String_t* L_7 = ___1_target;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
int32_t L_9 = ___3_length;
if ((((int32_t)L_8) <= ((int32_t)L_9)))
{
goto IL_0024;
}
}
IL_0022:
{
return (-1);
}
IL_0024:
{
int32_t L_10 = ___2_start;
int32_t L_11 = ___3_length;
String_t* L_12 = ___1_target;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), L_13)), 1));
String_t* L_14 = ___1_target;
String_t* L_15 = ___1_target;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
NullCheck(L_14);
Il2CppChar L_17;
L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, ((int32_t)il2cpp_codegen_subtract(L_16, 1)), NULL);
V_1 = L_17;
int32_t L_18 = ___2_start;
V_2 = L_18;
goto IL_009d;
}
IL_0045:
{
String_t* L_19 = ___0_s;
int32_t L_20 = V_2;
NullCheck(L_19);
Il2CppChar L_21;
L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_19, L_20, NULL);
Il2CppChar L_22 = V_1;
if ((((int32_t)L_21) == ((int32_t)L_22)))
{
goto IL_0055;
}
}
{
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_23, 1));
goto IL_009d;
}
IL_0055:
{
int32_t L_24 = V_2;
String_t* L_25 = ___1_target;
NullCheck(L_25);
int32_t L_26;
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
V_3 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_24, L_26)), 1));
int32_t L_27 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_27, 1));
V_4 = (bool)0;
String_t* L_28 = ___1_target;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
V_5 = ((int32_t)il2cpp_codegen_subtract(L_29, 2));
goto IL_0092;
}
IL_0073:
{
String_t* L_30 = ___0_s;
int32_t L_31 = V_3;
int32_t L_32 = V_5;
NullCheck(L_30);
Il2CppChar L_33;
L_33 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_30, ((int32_t)il2cpp_codegen_add(L_31, L_32)), NULL);
String_t* L_34 = ___1_target;
int32_t L_35 = V_5;
NullCheck(L_34);
Il2CppChar L_36;
L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_34, L_35, NULL);
if ((((int32_t)L_33) == ((int32_t)L_36)))
{
goto IL_008c;
}
}
{
V_4 = (bool)1;
goto IL_0097;
}
IL_008c:
{
int32_t L_37 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_37, 1));
}
IL_0092:
{
int32_t L_38 = V_5;
if ((((int32_t)L_38) >= ((int32_t)0)))
{
goto IL_0073;
}
}
IL_0097:
{
bool L_39 = V_4;
if (L_39)
{
goto IL_009d;
}
}
{
int32_t L_40 = V_3;
return L_40;
}
IL_009d:
{
int32_t L_41 = V_2;
int32_t L_42 = V_0;
if ((((int32_t)L_41) > ((int32_t)L_42)))
{
goto IL_0045;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOfSortKey(System.String,System.Int32,System.Int32,System.Int32,System.Byte*,System.Int32,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOfSortKey_mF2FE6FAA26A35DA855DC31B896359E439794B759 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t ___1_start, int32_t ___2_orgStart, int32_t ___3_length, uint8_t* ___4_sortkey, int32_t ___5_ti, bool ___6_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___7_ctx, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___1_start;
int32_t L_1 = ___3_length;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, L_1));
int32_t L_2 = ___1_start;
V_1 = L_2;
goto IL_0022;
}
IL_0009:
{
int32_t L_3 = V_1;
V_2 = L_3;
String_t* L_4 = ___0_s;
int32_t L_5 = V_0;
int32_t L_6 = ___2_orgStart;
int32_t L_7 = ___5_ti;
uint8_t* L_8 = ___4_sortkey;
bool L_9 = ___6_noLv4;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_10 = ___7_ctx;
bool L_11;
L_11 = SimpleCollator_MatchesBackward_m9AC1281E6D19130EBA20AC6886E266BDE4BF0C8D(__this, L_4, (&V_1), L_5, L_6, L_7, L_8, L_9, L_10, NULL);
if (!L_11)
{
goto IL_0022;
}
}
{
int32_t L_12 = V_2;
return L_12;
}
IL_0022:
{
int32_t L_13 = V_1;
int32_t L_14 = V_0;
if ((((int32_t)L_13) > ((int32_t)L_14)))
{
goto IL_0009;
}
}
{
return (-1);
}
}
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Byte*,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_m488C8D25A2AB765863F915C6DB76AB6EE0F06720 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, String_t* ___1_target, int32_t ___2_start, int32_t ___3_length, uint8_t* ___4_targetSortKey, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___5_ctx, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_3 = NULL;
String_t* V_4 = NULL;
uint8_t* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_10 = NULL;
String_t* G_B11_0 = NULL;
uintptr_t G_B14_0;
memset((&G_B14_0), 0, sizeof(G_B14_0));
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_0 = ___5_ctx;
int32_t L_1 = L_0->___Option_0;
V_0 = L_1;
int32_t L_2 = ___2_start;
V_1 = L_2;
V_2 = 0;
goto IL_0021;
}
IL_000e:
{
String_t* L_3 = ___1_target;
int32_t L_4 = V_2;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL);
int32_t L_6 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_7;
L_7 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_5, L_6, NULL);
if (!L_7)
{
goto IL_002a;
}
}
{
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0021:
{
int32_t L_9 = V_2;
String_t* L_10 = ___1_target;
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_000e;
}
}
IL_002a:
{
int32_t L_12 = V_2;
String_t* L_13 = ___1_target;
NullCheck(L_13);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)L_14))))
{
goto IL_0053;
}
}
{
String_t* L_15 = ___1_target;
String_t* L_16 = ___1_target;
NullCheck(L_16);
int32_t L_17;
L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL);
int32_t L_18;
L_18 = SimpleCollator_IndexOfOrdinal_mAC77E8D165ABA6EC71A06BFCC1D7299E333811C7(__this, L_15, 0, 0, L_17, NULL);
if ((((int32_t)L_18) >= ((int32_t)0)))
{
goto IL_0047;
}
}
{
int32_t L_19 = ___2_start;
return L_19;
}
IL_0047:
{
String_t* L_20 = ___0_s;
String_t* L_21 = ___1_target;
int32_t L_22 = ___2_start;
int32_t L_23 = ___3_length;
int32_t L_24;
L_24 = SimpleCollator_LastIndexOfOrdinal_m322FE1FF86BFDE367B003E70455FD7B3C39B3196(__this, L_20, L_21, L_22, L_23, NULL);
return L_24;
}
IL_0053:
{
String_t* L_25 = ___1_target;
int32_t L_26 = V_2;
String_t* L_27 = ___1_target;
NullCheck(L_27);
int32_t L_28;
L_28 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_27, NULL);
int32_t L_29 = V_2;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_30;
L_30 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_25, L_26, ((int32_t)il2cpp_codegen_subtract(L_28, L_29)), NULL);
V_3 = L_30;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_31 = V_3;
if (L_31)
{
goto IL_006a;
}
}
{
G_B11_0 = ((String_t*)(NULL));
goto IL_0070;
}
IL_006a:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_32 = V_3;
NullCheck(L_32);
String_t* L_33 = L_32->___Replacement_2;
G_B11_0 = L_33;
}
IL_0070:
{
V_4 = G_B11_0;
String_t* L_34 = V_4;
if (!L_34)
{
goto IL_007a;
}
}
{
G_B14_0 = ((uintptr_t)0);
goto IL_007c;
}
IL_007a:
{
uint8_t* L_35 = ___4_targetSortKey;
G_B14_0 = ((uintptr_t)(intptr_t)(L_35));
}
IL_007c:
{
V_5 = (uint8_t*)G_B14_0;
V_6 = (bool)1;
V_7 = (-1);
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_36 = V_3;
if (!L_36)
{
goto IL_00b5;
}
}
{
uint8_t* L_37 = V_5;
if ((((intptr_t)L_37) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00b5;
}
}
{
V_8 = 0;
goto IL_00a7;
}
IL_0092:
{
uint8_t* L_38 = V_5;
int32_t L_39 = V_8;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_40 = V_3;
NullCheck(L_40);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = L_40->___SortKey_3;
int32_t L_42 = V_8;
NullCheck(L_41);
int32_t L_43 = L_42;
uint8_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_38, L_39))) = (int8_t)L_44;
int32_t L_45 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_45, 1));
}
IL_00a7:
{
int32_t L_46 = V_8;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_47 = V_3;
NullCheck(L_47);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_48 = L_47->___SortKey_3;
NullCheck(L_48);
if ((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))))
{
goto IL_0092;
}
}
{
goto IL_010f;
}
IL_00b5:
{
uint8_t* L_49 = V_5;
if ((((intptr_t)L_49) == ((intptr_t)((uintptr_t)0))))
{
goto IL_010f;
}
}
{
String_t* L_50 = ___1_target;
int32_t L_51 = V_2;
NullCheck(L_50);
Il2CppChar L_52;
L_52 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_50, L_51, NULL);
int32_t L_53 = V_0;
int32_t L_54;
L_54 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_52, L_53, NULL);
V_7 = L_54;
uint8_t* L_55 = V_5;
int32_t L_56 = V_7;
uint8_t L_57;
L_57 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_56, NULL);
*((int8_t*)L_55) = (int8_t)L_57;
uint8_t* L_58 = V_5;
int32_t L_59 = V_7;
uint8_t L_60;
L_60 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_59, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_58, 1))) = (int8_t)L_60;
int32_t L_61 = V_0;
if (((int32_t)((int32_t)L_61&2)))
{
goto IL_00f6;
}
}
{
uint8_t* L_62 = V_5;
int32_t L_63 = V_7;
uint8_t L_64;
L_64 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_63, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_62, 2))) = (int8_t)L_64;
}
IL_00f6:
{
uint8_t* L_65 = V_5;
int32_t L_66 = V_7;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_67;
L_67 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_66, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_65, 3))) = (int8_t)L_67;
int32_t L_68 = V_7;
bool L_69;
L_69 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_68), NULL);
V_6 = (bool)((((int32_t)L_69) == ((int32_t)0))? 1 : 0);
}
IL_010f:
{
uint8_t* L_70 = V_5;
if ((((intptr_t)L_70) == ((intptr_t)((uintptr_t)0))))
{
goto IL_015f;
}
}
{
int32_t L_71 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_71, 1));
goto IL_0156;
}
IL_011b:
{
String_t* L_72 = ___1_target;
int32_t L_73 = V_2;
NullCheck(L_72);
Il2CppChar L_74;
L_74 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_72, L_73, NULL);
uint8_t L_75;
L_75 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_74, NULL);
if ((!(((uint32_t)L_75) == ((uint32_t)1))))
{
goto IL_015f;
}
}
{
uint8_t* L_76 = V_5;
int32_t L_77 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_76, 2)));
if (L_77)
{
goto IL_0138;
}
}
{
uint8_t* L_78 = V_5;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_78, 2))) = (int8_t)2;
}
IL_0138:
{
uint8_t* L_79 = V_5;
uint8_t* L_80 = V_5;
int32_t L_81 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_80, 2)));
String_t* L_82 = ___1_target;
int32_t L_83 = V_2;
NullCheck(L_82);
Il2CppChar L_84;
L_84 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_82, L_83, NULL);
uint8_t L_85;
L_85 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_84, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_79, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_81, (int32_t)L_85)));
int32_t L_86 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_86, 1));
}
IL_0156:
{
int32_t L_87 = V_2;
String_t* L_88 = ___1_target;
NullCheck(L_88);
int32_t L_89;
L_89 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_88, NULL);
if ((((int32_t)L_87) < ((int32_t)L_89)))
{
goto IL_011b;
}
}
IL_015f:
{
V_9 = 0;
String_t* L_90 = V_4;
if (!L_90)
{
goto IL_017a;
}
}
{
String_t* L_91 = ___0_s;
String_t* L_92 = V_4;
int32_t L_93 = ___2_start;
int32_t L_94 = ___3_length;
uint8_t* L_95 = ___4_targetSortKey;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_96 = ___5_ctx;
int32_t L_97;
L_97 = SimpleCollator_LastIndexOf_m488C8D25A2AB765863F915C6DB76AB6EE0F06720(__this, L_91, L_92, L_93, L_94, L_95, L_96, NULL);
V_9 = L_97;
goto IL_018f;
}
IL_017a:
{
String_t* L_98 = ___0_s;
int32_t L_99 = ___2_start;
int32_t L_100 = V_1;
int32_t L_101 = ___3_length;
uint8_t* L_102 = V_5;
int32_t L_103 = V_7;
bool L_104 = V_6;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_105 = ___5_ctx;
int32_t L_106;
L_106 = SimpleCollator_LastIndexOfSortKey_mF2FE6FAA26A35DA855DC31B896359E439794B759(__this, L_98, L_99, L_100, L_101, L_102, L_103, L_104, L_105, NULL);
V_9 = L_106;
}
IL_018f:
{
int32_t L_107 = V_9;
if ((((int32_t)L_107) >= ((int32_t)0)))
{
goto IL_0196;
}
}
{
return (-1);
}
IL_0196:
{
int32_t L_108 = ___3_length;
int32_t L_109 = ___2_start;
int32_t L_110 = V_9;
___3_length = ((int32_t)il2cpp_codegen_subtract(L_108, ((int32_t)il2cpp_codegen_subtract(L_109, L_110))));
int32_t L_111 = V_9;
___2_start = L_111;
String_t* L_112 = ___0_s;
String_t* L_113 = ___1_target;
int32_t L_114 = V_9;
int32_t L_115 = V_1;
int32_t L_116 = V_9;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_117 = ___5_ctx;
bool L_118;
L_118 = SimpleCollator_IsPrefix_mA60DF9D84E40E774783313C812198E41460BA4CF(__this, L_112, L_113, L_114, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_115, L_116)), 1)), (bool)0, L_117, NULL);
if (!L_118)
{
goto IL_01d8;
}
}
{
goto IL_01d0;
}
IL_01ba:
{
String_t* L_119 = ___0_s;
int32_t L_120 = V_9;
NullCheck(L_119);
Il2CppChar L_121;
L_121 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_119, L_120, NULL);
int32_t L_122 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_123;
L_123 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_121, L_122, NULL);
if (!L_123)
{
goto IL_01d5;
}
}
{
int32_t L_124 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_124, 1));
}
IL_01d0:
{
int32_t L_125 = V_9;
int32_t L_126 = V_1;
if ((((int32_t)L_125) < ((int32_t)L_126)))
{
goto IL_01ba;
}
}
IL_01d5:
{
int32_t L_127 = V_9;
return L_127;
}
IL_01d8:
{
String_t* L_128 = ___0_s;
int32_t L_129 = V_9;
int32_t L_130 = V_1;
int32_t L_131 = V_9;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_132;
L_132 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_128, L_129, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_130, L_131)), 1)), NULL);
V_10 = L_132;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_133 = V_10;
if (!L_133)
{
goto IL_020a;
}
}
{
int32_t L_134 = ___2_start;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_135 = V_10;
NullCheck(L_135);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_136 = L_135->___Source_1;
NullCheck(L_136);
___2_start = ((int32_t)il2cpp_codegen_subtract(L_134, ((int32_t)(((RuntimeArray*)L_136)->max_length))));
int32_t L_137 = ___3_length;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_138 = V_10;
NullCheck(L_138);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_139 = L_138->___Source_1;
NullCheck(L_139);
___3_length = ((int32_t)il2cpp_codegen_subtract(L_137, ((int32_t)(((RuntimeArray*)L_139)->max_length))));
goto IL_0215;
}
IL_020a:
{
int32_t L_140 = ___2_start;
___2_start = ((int32_t)il2cpp_codegen_subtract(L_140, 1));
int32_t L_141 = ___3_length;
___3_length = ((int32_t)il2cpp_codegen_subtract(L_141, 1));
}
IL_0215:
{
int32_t L_142 = ___3_length;
if ((((int32_t)L_142) > ((int32_t)0)))
{
goto IL_015f;
}
}
{
return (-1);
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesForward(System.String,System.Int32&,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesForward_m8CA755E21AD13E1BF8DD83078F133730D33E4536 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_ti, uint8_t* ___4_sortkey, bool ___5_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___6_ctx, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_2 = NULL;
{
String_t* L_0 = ___0_s;
int32_t* L_1 = ___1_idx;
int32_t L_2 = *((int32_t*)L_1);
NullCheck(L_0);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_2, NULL);
V_0 = L_3;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_4 = ___6_ctx;
uint8_t* L_5 = L_4->___AlwaysMatchFlags_2;
if ((((intptr_t)L_5) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0035;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) >= ((int32_t)((int32_t)128))))
{
goto IL_0035;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_7 = ___6_ctx;
uint8_t* L_8 = L_7->___AlwaysMatchFlags_2;
int32_t L_9 = V_0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, ((int32_t)(L_9/8)))));
int32_t L_11 = V_0;
if (!((int32_t)(L_10&((int32_t)(1<<((int32_t)(((int32_t)(L_11%8))&((int32_t)31))))))))
{
goto IL_0035;
}
}
{
return (bool)1;
}
IL_0035:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_12 = ___6_ctx;
uint8_t* L_13 = L_12->___NeverMatchFlags_1;
if ((((intptr_t)L_13) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0067;
}
}
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) >= ((int32_t)((int32_t)128))))
{
goto IL_0067;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_15 = ___6_ctx;
uint8_t* L_16 = L_15->___NeverMatchFlags_1;
int32_t L_17 = V_0;
int32_t L_18 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, ((int32_t)(L_17/8)))));
int32_t L_19 = V_0;
if (!((int32_t)(L_18&((int32_t)(1<<((int32_t)(((int32_t)(L_19%8))&((int32_t)31))))))))
{
goto IL_0067;
}
}
{
int32_t* L_20 = ___1_idx;
int32_t* L_21 = ___1_idx;
int32_t L_22 = *((int32_t*)L_21);
*((int32_t*)L_20) = (int32_t)((int32_t)il2cpp_codegen_add(L_22, 1));
return (bool)0;
}
IL_0067:
{
String_t* L_23 = ___0_s;
int32_t* L_24 = ___1_idx;
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);
int32_t L_27;
L_27 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_26, NULL);
V_1 = L_27;
V_2 = (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
String_t* L_28 = ___0_s;
int32_t* L_29 = ___1_idx;
int32_t L_30 = ___2_end;
int32_t L_31 = ___3_ti;
uint8_t* L_32 = ___4_sortkey;
bool L_33 = ___5_noLv4;
int32_t L_34 = V_1;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_35 = ___6_ctx;
bool L_36;
L_36 = SimpleCollator_MatchesForwardCore_mA6CDEC5DC46755C2A778408FE4DA8F28D929F4EC(__this, L_28, L_29, L_30, L_31, L_32, L_33, L_34, (&V_2), L_35, NULL);
if (!L_36)
{
goto IL_00c2;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_37 = ___6_ctx;
uint8_t* L_38 = L_37->___AlwaysMatchFlags_2;
if ((((intptr_t)L_38) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00c0;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_39 = V_2;
if (L_39)
{
goto IL_00c0;
}
}
{
int32_t L_40 = V_1;
if (L_40)
{
goto IL_00c0;
}
}
{
int32_t L_41 = V_0;
if ((((int32_t)L_41) >= ((int32_t)((int32_t)128))))
{
goto IL_00c0;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_42 = ___6_ctx;
uint8_t* L_43 = L_42->___AlwaysMatchFlags_2;
int32_t L_44 = V_0;
uint8_t* L_45 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, ((int32_t)(L_44/8))));
int32_t L_46 = *((uint8_t*)L_45);
int32_t L_47 = V_0;
*((int8_t*)L_45) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_46|((int32_t)(uint8_t)((int32_t)(1<<((int32_t)(((int32_t)(L_47%8))&((int32_t)31)))))))));
}
IL_00c0:
{
return (bool)1;
}
IL_00c2:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_48 = ___6_ctx;
uint8_t* L_49 = L_48->___NeverMatchFlags_1;
if ((((intptr_t)L_49) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00f4;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_50 = V_2;
if (L_50)
{
goto IL_00f4;
}
}
{
int32_t L_51 = V_1;
if (L_51)
{
goto IL_00f4;
}
}
{
int32_t L_52 = V_0;
if ((((int32_t)L_52) >= ((int32_t)((int32_t)128))))
{
goto IL_00f4;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_53 = ___6_ctx;
uint8_t* L_54 = L_53->___NeverMatchFlags_1;
int32_t L_55 = V_0;
uint8_t* L_56 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_54, ((int32_t)(L_55/8))));
int32_t L_57 = *((uint8_t*)L_56);
int32_t L_58 = V_0;
*((int8_t*)L_56) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_57|((int32_t)(uint8_t)((int32_t)(1<<((int32_t)(((int32_t)(L_58%8))&((int32_t)31)))))))));
}
IL_00f4:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesForwardCore(System.String,System.Int32&,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,Mono.Globalization.Unicode.Contraction&,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesForwardCore_mA6CDEC5DC46755C2A778408FE4DA8F28D929F4EC (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_ti, uint8_t* ___4_sortkey, bool ___5_noLv4, int32_t ___6_ext, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** ___7_ct, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___8_ctx, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
bool V_6 = false;
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_0 = ___8_ctx;
int32_t L_1 = L_0->___Option_0;
V_0 = L_1;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_2 = ___8_ctx;
uint8_t* L_3 = L_2->___Buffer1_3;
V_1 = L_3;
int32_t L_4 = V_0;
V_2 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_4&2))) <= ((uint32_t)0)))? 1 : 0);
V_3 = (-1);
int32_t L_5 = ___6_ext;
if (L_5)
{
goto IL_002c;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_6 = ___7_ct;
String_t* L_7 = ___0_s;
int32_t* L_8 = ___1_idx;
int32_t L_9 = *((int32_t*)L_8);
int32_t L_10 = ___2_end;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_11;
L_11 = SimpleCollator_GetContraction_mDF3596DA78670F18CBFB344E7456FB0E84AD5795(__this, L_7, L_9, L_10, NULL);
*((RuntimeObject**)L_6) = (RuntimeObject*)L_11;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)L_11);
goto IL_0064;
}
IL_002c:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_12 = ___8_ctx;
int32_t L_13 = L_12->___PrevCode_5;
if ((((int32_t)L_13) >= ((int32_t)0)))
{
goto IL_0053;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_14 = ___8_ctx;
uint8_t* L_15 = L_14->___PrevSortKey_6;
if ((!(((uintptr_t)L_15) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0049;
}
}
{
int32_t* L_16 = ___1_idx;
int32_t* L_17 = ___1_idx;
int32_t L_18 = *((int32_t*)L_17);
*((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add(L_18, 1));
return (bool)0;
}
IL_0049:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_19 = ___8_ctx;
uint8_t* L_20 = L_19->___PrevSortKey_6;
V_1 = L_20;
goto IL_0064;
}
IL_0053:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_21 = ___8_ctx;
int32_t L_22 = L_21->___PrevCode_5;
int32_t L_23 = ___6_ext;
int32_t L_24 = V_0;
int32_t L_25;
L_25 = SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65(__this, L_22, L_23, L_24, NULL);
V_3 = L_25;
}
IL_0064:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_26 = ___7_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_27 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_26);
if (!L_27)
{
goto IL_00e1;
}
}
{
int32_t* L_28 = ___1_idx;
int32_t* L_29 = ___1_idx;
int32_t L_30 = *((int32_t*)L_29);
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_31 = ___7_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_32 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_31);
NullCheck(L_32);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = L_32->___Source_1;
NullCheck(L_33);
*((int32_t*)L_28) = (int32_t)((int32_t)il2cpp_codegen_add(L_30, ((int32_t)(((RuntimeArray*)L_33)->max_length))));
bool L_34 = ___5_noLv4;
if (L_34)
{
goto IL_007e;
}
}
{
return (bool)0;
}
IL_007e:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_35 = ___7_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_36 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_35);
NullCheck(L_36);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = L_36->___SortKey_3;
if (!L_37)
{
goto IL_00b8;
}
}
{
V_4 = 0;
goto IL_009e;
}
IL_008d:
{
uint8_t* L_38 = V_1;
int32_t L_39 = V_4;
uint8_t* L_40 = ___4_sortkey;
int32_t L_41 = V_4;
int32_t L_42 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_40, L_41)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_38, L_39))) = (int8_t)L_42;
int32_t L_43 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_43, 1));
}
IL_009e:
{
int32_t L_44 = V_4;
if ((((int32_t)L_44) < ((int32_t)4)))
{
goto IL_008d;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_45 = ___8_ctx;
L_45->___PrevCode_5 = (-1);
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_46 = ___8_ctx;
uint8_t* L_47 = V_1;
L_46->___PrevSortKey_6 = L_47;
goto IL_01bc;
}
IL_00b8:
{
V_5 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_48 = ___7_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_49 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_48);
NullCheck(L_49);
String_t* L_50 = L_49->___Replacement_2;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_51 = ___7_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_52 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_51);
NullCheck(L_52);
String_t* L_53 = L_52->___Replacement_2;
NullCheck(L_53);
int32_t L_54;
L_54 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_53, NULL);
int32_t L_55 = ___3_ti;
uint8_t* L_56 = ___4_sortkey;
bool L_57 = ___5_noLv4;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_58 = ___8_ctx;
bool L_59;
L_59 = SimpleCollator_MatchesForward_m8CA755E21AD13E1BF8DD83078F133730D33E4536(__this, L_50, (&V_5), L_54, L_55, L_56, L_57, L_58, NULL);
return L_59;
}
IL_00e1:
{
int32_t L_60 = V_3;
if ((((int32_t)L_60) >= ((int32_t)0)))
{
goto IL_00f5;
}
}
{
String_t* L_61 = ___0_s;
int32_t* L_62 = ___1_idx;
int32_t L_63 = *((int32_t*)L_62);
NullCheck(L_61);
Il2CppChar L_64;
L_64 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_61, L_63, NULL);
int32_t L_65 = V_0;
int32_t L_66;
L_66 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_64, L_65, NULL);
V_3 = L_66;
}
IL_00f5:
{
int32_t* L_67 = ___1_idx;
int32_t* L_68 = ___1_idx;
int32_t L_69 = *((int32_t*)L_68);
*((int32_t*)L_67) = (int32_t)((int32_t)il2cpp_codegen_add(L_69, 1));
uint8_t* L_70 = V_1;
int32_t L_71 = V_3;
uint8_t L_72;
L_72 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_71, NULL);
*((int8_t*)L_70) = (int8_t)L_72;
V_6 = (bool)0;
uint8_t* L_73 = ___4_sortkey;
int32_t L_74 = *((uint8_t*)L_73);
uint8_t* L_75 = V_1;
int32_t L_76 = *((uint8_t*)L_75);
if ((!(((uint32_t)L_74) == ((uint32_t)L_76))))
{
goto IL_011b;
}
}
{
uint8_t* L_77 = V_1;
int32_t L_78 = V_3;
uint8_t L_79;
L_79 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_78, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_77, 1))) = (int8_t)L_79;
goto IL_011e;
}
IL_011b:
{
V_6 = (bool)1;
}
IL_011e:
{
bool L_80 = V_2;
if (L_80)
{
goto IL_013b;
}
}
{
uint8_t* L_81 = ___4_sortkey;
int32_t L_82 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_81, 1)));
uint8_t* L_83 = V_1;
int32_t L_84 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_83, 1)));
if ((!(((uint32_t)L_82) == ((uint32_t)L_84))))
{
goto IL_013b;
}
}
{
uint8_t* L_85 = V_1;
int32_t L_86 = V_3;
int32_t L_87 = ___6_ext;
uint8_t L_88;
L_88 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_86, L_87, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_85, 2))) = (int8_t)L_88;
goto IL_0141;
}
IL_013b:
{
bool L_89 = V_2;
if (L_89)
{
goto IL_0141;
}
}
{
V_6 = (bool)1;
}
IL_0141:
{
bool L_90 = V_6;
if (!L_90)
{
goto IL_0165;
}
}
{
goto IL_015e;
}
IL_0147:
{
String_t* L_91 = ___0_s;
int32_t* L_92 = ___1_idx;
int32_t L_93 = *((int32_t*)L_92);
NullCheck(L_91);
Il2CppChar L_94;
L_94 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_91, L_93, NULL);
uint8_t L_95;
L_95 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_94, NULL);
if ((!(((uint32_t)L_95) == ((uint32_t)1))))
{
goto IL_0163;
}
}
{
int32_t* L_96 = ___1_idx;
int32_t* L_97 = ___1_idx;
int32_t L_98 = *((int32_t*)L_97);
*((int32_t*)L_96) = (int32_t)((int32_t)il2cpp_codegen_add(L_98, 1));
}
IL_015e:
{
int32_t* L_99 = ___1_idx;
int32_t L_100 = *((int32_t*)L_99);
int32_t L_101 = ___2_end;
if ((((int32_t)L_100) < ((int32_t)L_101)))
{
goto IL_0147;
}
}
IL_0163:
{
return (bool)0;
}
IL_0165:
{
uint8_t* L_102 = V_1;
int32_t L_103 = V_3;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_104;
L_104 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_103, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_102, 3))) = (int8_t)L_104;
uint8_t* L_105 = V_1;
int32_t L_106 = *((uint8_t*)L_105);
if ((((int32_t)L_106) == ((int32_t)1)))
{
goto IL_01bc;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_107 = ___8_ctx;
int32_t L_108 = V_3;
L_107->___PrevCode_5 = L_108;
goto IL_01bc;
}
IL_017e:
{
String_t* L_109 = ___0_s;
int32_t* L_110 = ___1_idx;
int32_t L_111 = *((int32_t*)L_110);
NullCheck(L_109);
Il2CppChar L_112;
L_112 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_109, L_111, NULL);
uint8_t L_113;
L_113 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_112, NULL);
if ((!(((uint32_t)L_113) == ((uint32_t)1))))
{
goto IL_01c1;
}
}
{
bool L_114 = V_2;
if (L_114)
{
goto IL_01b6;
}
}
{
uint8_t* L_115 = V_1;
int32_t L_116 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_115, 2)));
if (L_116)
{
goto IL_019d;
}
}
{
uint8_t* L_117 = V_1;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_117, 2))) = (int8_t)2;
}
IL_019d:
{
uint8_t* L_118 = V_1;
uint8_t* L_119 = V_1;
int32_t L_120 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_119, 2)));
String_t* L_121 = ___0_s;
int32_t* L_122 = ___1_idx;
int32_t L_123 = *((int32_t*)L_122);
NullCheck(L_121);
Il2CppChar L_124;
L_124 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_121, L_123, NULL);
uint8_t L_125;
L_125 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_124, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_118, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_120, (int32_t)L_125)));
}
IL_01b6:
{
int32_t* L_126 = ___1_idx;
int32_t* L_127 = ___1_idx;
int32_t L_128 = *((int32_t*)L_127);
*((int32_t*)L_126) = (int32_t)((int32_t)il2cpp_codegen_add(L_128, 1));
}
IL_01bc:
{
int32_t* L_129 = ___1_idx;
int32_t L_130 = *((int32_t*)L_129);
int32_t L_131 = ___2_end;
if ((((int32_t)L_130) < ((int32_t)L_131)))
{
goto IL_017e;
}
}
IL_01c1:
{
int32_t L_132 = V_0;
uint8_t* L_133 = V_1;
int32_t L_134 = V_3;
int32_t L_135 = ___6_ext;
uint8_t* L_136 = ___4_sortkey;
int32_t L_137 = ___3_ti;
bool L_138 = ___5_noLv4;
bool L_139;
L_139 = SimpleCollator_MatchesPrimitive_m561EAF65597A2D0896CAA2DCF33992A2531A490E(__this, L_132, L_133, L_134, L_135, L_136, L_137, L_138, NULL);
return L_139;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesPrimitive(System.Globalization.CompareOptions,System.Byte*,System.Int32,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesPrimitive_m561EAF65597A2D0896CAA2DCF33992A2531A490E (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, int32_t ___0_opt, uint8_t* ___1_source, int32_t ___2_si, int32_t ___3_ext, uint8_t* ___4_target, int32_t ___5_ti, bool ___6_noLv4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___0_opt;
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&2))) <= ((uint32_t)0)))? 1 : 0);
uint8_t* L_1 = ___1_source;
int32_t L_2 = *((uint8_t*)L_1);
uint8_t* L_3 = ___4_target;
int32_t L_4 = *((uint8_t*)L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)L_4))))
{
goto IL_0032;
}
}
{
uint8_t* L_5 = ___1_source;
int32_t L_6 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 1)));
uint8_t* L_7 = ___4_target;
int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 1)));
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
{
goto IL_0032;
}
}
{
bool L_9 = V_0;
if (L_9)
{
goto IL_0027;
}
}
{
uint8_t* L_10 = ___1_source;
int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, 2)));
uint8_t* L_12 = ___4_target;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, 2)));
if ((!(((uint32_t)L_11) == ((uint32_t)L_13))))
{
goto IL_0032;
}
}
IL_0027:
{
uint8_t* L_14 = ___1_source;
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, 3)));
uint8_t* L_16 = ___4_target;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 3)));
if ((((int32_t)L_15) == ((int32_t)L_17)))
{
goto IL_0034;
}
}
IL_0032:
{
return (bool)0;
}
IL_0034:
{
bool L_18 = ___6_noLv4;
if (!L_18)
{
goto IL_0047;
}
}
{
int32_t L_19 = ___2_si;
if ((((int32_t)L_19) < ((int32_t)0)))
{
goto IL_0045;
}
}
{
int32_t L_20 = ___2_si;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_21;
L_21 = MSCompatUnicodeTable_HasSpecialWeight_mE205A091AF6DF903438315ED44D4A2195A6E90E5(((int32_t)(uint16_t)L_20), NULL);
if (L_21)
{
goto IL_0047;
}
}
IL_0045:
{
return (bool)1;
}
IL_0047:
{
bool L_22 = ___6_noLv4;
if (!L_22)
{
goto IL_004d;
}
}
{
return (bool)0;
}
IL_004d:
{
bool L_23 = V_0;
if (L_23)
{
goto IL_0057;
}
}
{
int32_t L_24 = ___3_ext;
if ((!(((uint32_t)L_24) == ((uint32_t)3))))
{
goto IL_0057;
}
}
{
return (bool)0;
}
IL_0057:
{
int32_t L_25 = ___2_si;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_26;
L_26 = MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A(((int32_t)(uint16_t)L_25), NULL);
int32_t L_27 = ___5_ti;
bool L_28;
L_28 = MSCompatUnicodeTable_IsJapaneseSmallLetter_m2FCB0285CB9DC56CC0CEF4C43445A1B1E34F1D2A(((int32_t)(uint16_t)L_27), NULL);
if ((!(((uint32_t)L_26) == ((uint32_t)L_28))))
{
goto IL_00a3;
}
}
{
int32_t L_29 = ___3_ext;
int32_t L_30 = ___0_opt;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
uint8_t L_31;
L_31 = SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC(L_29, L_30, NULL);
int32_t L_32 = ___0_opt;
uint8_t L_33;
L_33 = SimpleCollator_ToDashTypeValue_mE79BBAAF642CDC8914E5687E7168A94C7B4E1AEC(0, L_32, NULL);
if ((!(((uint32_t)L_31) == ((uint32_t)L_33))))
{
goto IL_00a3;
}
}
{
int32_t L_34 = ___2_si;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_35;
L_35 = MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7(((int32_t)(uint16_t)L_34), NULL);
int32_t L_36 = ___5_ti;
bool L_37;
L_37 = MSCompatUnicodeTable_IsHiragana_m2CC48465148CF3A85712A10426CFFC689D2BC4D7(((int32_t)(uint16_t)L_36), NULL);
if ((!(((uint32_t)((((int32_t)L_35) == ((int32_t)0))? 1 : 0)) == ((uint32_t)((((int32_t)L_37) == ((int32_t)0))? 1 : 0)))))
{
goto IL_00a3;
}
}
{
int32_t L_38 = ___2_si;
int32_t L_39 = ___0_opt;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_40;
L_40 = SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35(((int32_t)(uint16_t)L_38), L_39, NULL);
int32_t L_41 = ___5_ti;
int32_t L_42 = ___0_opt;
bool L_43;
L_43 = SimpleCollator_IsHalfKana_mBE7B9D82197EB83129D9E39198164DB5C0012A35(((int32_t)(uint16_t)L_41), L_42, NULL);
if ((((int32_t)L_40) == ((int32_t)L_43)))
{
goto IL_00a5;
}
}
IL_00a3:
{
return (bool)0;
}
IL_00a5:
{
return (bool)1;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesBackward(System.String,System.Int32&,System.Int32,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesBackward_m9AC1281E6D19130EBA20AC6886E266BDE4BF0C8D (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_orgStart, int32_t ___4_ti, uint8_t* ___5_sortkey, bool ___6_noLv4, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___7_ctx, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* V_2 = NULL;
{
String_t* L_0 = ___0_s;
int32_t* L_1 = ___1_idx;
int32_t L_2 = *((int32_t*)L_1);
NullCheck(L_0);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_2, NULL);
V_0 = L_3;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_4 = ___7_ctx;
uint8_t* L_5 = L_4->___AlwaysMatchFlags_2;
if ((((intptr_t)L_5) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0035;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) >= ((int32_t)((int32_t)128))))
{
goto IL_0035;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_7 = ___7_ctx;
uint8_t* L_8 = L_7->___AlwaysMatchFlags_2;
int32_t L_9 = V_0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, ((int32_t)(L_9/8)))));
int32_t L_11 = V_0;
if (!((int32_t)(L_10&((int32_t)(1<<((int32_t)(((int32_t)(L_11%8))&((int32_t)31))))))))
{
goto IL_0035;
}
}
{
return (bool)1;
}
IL_0035:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_12 = ___7_ctx;
uint8_t* L_13 = L_12->___NeverMatchFlags_1;
if ((((intptr_t)L_13) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0067;
}
}
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) >= ((int32_t)((int32_t)128))))
{
goto IL_0067;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_15 = ___7_ctx;
uint8_t* L_16 = L_15->___NeverMatchFlags_1;
int32_t L_17 = V_0;
int32_t L_18 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, ((int32_t)(L_17/8)))));
int32_t L_19 = V_0;
if (!((int32_t)(L_18&((int32_t)(1<<((int32_t)(((int32_t)(L_19%8))&((int32_t)31))))))))
{
goto IL_0067;
}
}
{
int32_t* L_20 = ___1_idx;
int32_t* L_21 = ___1_idx;
int32_t L_22 = *((int32_t*)L_21);
*((int32_t*)L_20) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_22, 1));
return (bool)0;
}
IL_0067:
{
String_t* L_23 = ___0_s;
int32_t* L_24 = ___1_idx;
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);
int32_t L_27;
L_27 = SimpleCollator_GetExtenderType_mDCC56E8E80B230652C5C342BE1BCCF94C71025E8(__this, L_26, NULL);
V_1 = L_27;
V_2 = (Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540*)NULL;
String_t* L_28 = ___0_s;
int32_t* L_29 = ___1_idx;
int32_t L_30 = ___2_end;
int32_t L_31 = ___3_orgStart;
int32_t L_32 = ___4_ti;
uint8_t* L_33 = ___5_sortkey;
bool L_34 = ___6_noLv4;
int32_t L_35 = V_1;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_36 = ___7_ctx;
bool L_37;
L_37 = SimpleCollator_MatchesBackwardCore_m060643AEAF22958885C7CE7E2D0436CC51A39188(__this, L_28, L_29, L_30, L_31, L_32, L_33, L_34, L_35, (&V_2), L_36, NULL);
if (!L_37)
{
goto IL_00c4;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_38 = ___7_ctx;
uint8_t* L_39 = L_38->___AlwaysMatchFlags_2;
if ((((intptr_t)L_39) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00c2;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_40 = V_2;
if (L_40)
{
goto IL_00c2;
}
}
{
int32_t L_41 = V_1;
if (L_41)
{
goto IL_00c2;
}
}
{
int32_t L_42 = V_0;
if ((((int32_t)L_42) >= ((int32_t)((int32_t)128))))
{
goto IL_00c2;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_43 = ___7_ctx;
uint8_t* L_44 = L_43->___AlwaysMatchFlags_2;
int32_t L_45 = V_0;
uint8_t* L_46 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, ((int32_t)(L_45/8))));
int32_t L_47 = *((uint8_t*)L_46);
int32_t L_48 = V_0;
*((int8_t*)L_46) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_47|((int32_t)(uint8_t)((int32_t)(1<<((int32_t)(((int32_t)(L_48%8))&((int32_t)31)))))))));
}
IL_00c2:
{
return (bool)1;
}
IL_00c4:
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_49 = ___7_ctx;
uint8_t* L_50 = L_49->___NeverMatchFlags_1;
if ((((intptr_t)L_50) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00f6;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_51 = V_2;
if (L_51)
{
goto IL_00f6;
}
}
{
int32_t L_52 = V_1;
if (L_52)
{
goto IL_00f6;
}
}
{
int32_t L_53 = V_0;
if ((((int32_t)L_53) >= ((int32_t)((int32_t)128))))
{
goto IL_00f6;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_54 = ___7_ctx;
uint8_t* L_55 = L_54->___NeverMatchFlags_1;
int32_t L_56 = V_0;
uint8_t* L_57 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_55, ((int32_t)(L_56/8))));
int32_t L_58 = *((uint8_t*)L_57);
int32_t L_59 = V_0;
*((int8_t*)L_57) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_58|((int32_t)(uint8_t)((int32_t)(1<<((int32_t)(((int32_t)(L_59%8))&((int32_t)31)))))))));
}
IL_00f6:
{
return (bool)0;
}
}
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::MatchesBackwardCore(System.String,System.Int32&,System.Int32,System.Int32,System.Int32,System.Byte*,System.Boolean,Mono.Globalization.Unicode.SimpleCollator/ExtenderType,Mono.Globalization.Unicode.Contraction&,Mono.Globalization.Unicode.SimpleCollator/Context&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_MatchesBackwardCore_m060643AEAF22958885C7CE7E2D0436CC51A39188 (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* __this, String_t* ___0_s, int32_t* ___1_idx, int32_t ___2_end, int32_t ___3_orgStart, int32_t ___4_ti, uint8_t* ___5_sortkey, bool ___6_noLv4, int32_t ___7_ext, Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** ___8_ct, Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* ___9_ctx, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
uint8_t V_5 = 0x0;
int32_t V_6 = 0;
int32_t V_7 = 0;
uint8_t V_8 = 0x0;
int32_t V_9 = 0;
int32_t V_10 = 0;
bool V_11 = false;
int32_t V_12 = 0;
uint8_t* G_B13_0 = NULL;
uint8_t* G_B12_0 = NULL;
int32_t G_B14_0 = 0;
uint8_t* G_B14_1 = NULL;
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_0 = ___9_ctx;
int32_t L_1 = L_0->___Option_0;
V_0 = L_1;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_2 = ___9_ctx;
uint8_t* L_3 = L_2->___Buffer1_3;
V_1 = L_3;
int32_t L_4 = V_0;
V_2 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_4&2))) <= ((uint32_t)0)))? 1 : 0);
int32_t* L_5 = ___1_idx;
int32_t L_6 = *((int32_t*)L_5);
V_3 = L_6;
V_4 = (-1);
int32_t L_7 = ___7_ext;
if (!L_7)
{
goto IL_00da;
}
}
{
V_5 = (uint8_t)0;
int32_t* L_8 = ___1_idx;
int32_t L_9 = *((int32_t*)L_8);
V_6 = L_9;
}
IL_002b:
{
int32_t L_10 = V_6;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0032;
}
}
{
return (bool)0;
}
IL_0032:
{
String_t* L_11 = ___0_s;
int32_t L_12 = V_6;
NullCheck(L_11);
Il2CppChar L_13;
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_11, L_12, NULL);
int32_t L_14 = V_0;
il2cpp_codegen_runtime_class_init_inline(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
bool L_15;
L_15 = SimpleCollator_IsIgnorable_mBE39D4394EB3A2A5FC141AC2189274500954D691(L_13, L_14, NULL);
if (L_15)
{
goto IL_00c9;
}
}
{
String_t* L_16 = ___0_s;
int32_t L_17 = V_6;
NullCheck(L_16);
Il2CppChar L_18;
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_16, L_17, NULL);
int32_t L_19 = V_0;
int32_t L_20;
L_20 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_18, L_19, NULL);
V_7 = L_20;
int32_t L_21 = V_7;
uint8_t L_22;
L_22 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_21, NULL);
V_8 = L_22;
uint8_t L_23 = V_8;
if ((!(((uint32_t)L_23) == ((uint32_t)1))))
{
goto IL_0072;
}
}
{
int32_t L_24 = V_7;
uint8_t L_25;
L_25 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_24, 0, NULL);
V_5 = L_25;
goto IL_00c9;
}
IL_0072:
{
int32_t L_26 = V_7;
int32_t L_27 = ___7_ext;
int32_t L_28 = V_0;
int32_t L_29;
L_29 = SimpleCollator_FilterExtender_mAB7448D68BB6D66289428602916BA8265EBBAF65(__this, L_26, L_27, L_28, NULL);
V_4 = L_29;
uint8_t* L_30 = V_1;
uint8_t L_31 = V_8;
*((int8_t*)L_30) = (int8_t)L_31;
uint8_t* L_32 = V_1;
int32_t L_33 = V_4;
uint8_t L_34;
L_34 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_33, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, 1))) = (int8_t)L_34;
bool L_35 = V_2;
if (L_35)
{
goto IL_00a0;
}
}
{
uint8_t* L_36 = V_1;
int32_t L_37 = V_4;
int32_t L_38 = ___7_ext;
uint8_t L_39;
L_39 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_37, L_38, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, 2))) = (int8_t)L_39;
}
IL_00a0:
{
uint8_t* L_40 = V_1;
int32_t L_41 = V_4;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_42;
L_42 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_41, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_40, 3))) = (int8_t)L_42;
int32_t L_43 = ___7_ext;
if ((((int32_t)L_43) == ((int32_t)3)))
{
goto IL_00d4;
}
}
{
uint8_t L_44 = V_5;
if (!L_44)
{
goto IL_00d4;
}
}
{
uint8_t* L_45 = V_1;
uint8_t* L_46 = V_1;
int32_t L_47 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, 2)));
G_B12_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_45, 2));
if (!L_47)
{
G_B13_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_45, 2));
goto IL_00c1;
}
}
{
uint8_t L_48 = V_5;
G_B14_0 = ((int32_t)(L_48));
G_B14_1 = G_B12_0;
goto IL_00c6;
}
IL_00c1:
{
uint8_t L_49 = V_5;
G_B14_0 = ((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, 2)));
G_B14_1 = G_B13_0;
}
IL_00c6:
{
*((int8_t*)G_B14_1) = (int8_t)G_B14_0;
goto IL_00d4;
}
IL_00c9:
{
int32_t L_50 = V_6;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_50, 1));
goto IL_002b;
}
IL_00d4:
{
int32_t* L_51 = ___1_idx;
int32_t* L_52 = ___1_idx;
int32_t L_53 = *((int32_t*)L_52);
*((int32_t*)L_51) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_53, 1));
}
IL_00da:
{
int32_t L_54 = ___7_ext;
if (L_54)
{
goto IL_00eb;
}
}
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_55 = ___8_ct;
String_t* L_56 = ___0_s;
int32_t* L_57 = ___1_idx;
int32_t L_58 = *((int32_t*)L_57);
int32_t L_59 = ___2_end;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_60;
L_60 = SimpleCollator_GetTailContraction_m9C3AD899404EEB2A61C0DA596E97CF81E62F4BC1(__this, L_56, L_58, L_59, NULL);
*((RuntimeObject**)L_55) = (RuntimeObject*)L_60;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_55, (void*)(RuntimeObject*)L_60);
}
IL_00eb:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_61 = ___8_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_62 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_61);
if (!L_62)
{
goto IL_0181;
}
}
{
int32_t* L_63 = ___1_idx;
int32_t* L_64 = ___1_idx;
int32_t L_65 = *((int32_t*)L_64);
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_66 = ___8_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_67 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_66);
NullCheck(L_67);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68 = L_67->___Source_1;
NullCheck(L_68);
*((int32_t*)L_63) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_65, ((int32_t)(((RuntimeArray*)L_68)->max_length))));
bool L_69 = ___6_noLv4;
if (L_69)
{
goto IL_0108;
}
}
{
return (bool)0;
}
IL_0108:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_70 = ___8_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_71 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_70);
NullCheck(L_71);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_72 = L_71->___SortKey_3;
if (!L_72)
{
goto IL_0142;
}
}
{
V_9 = 0;
goto IL_0128;
}
IL_0117:
{
uint8_t* L_73 = V_1;
int32_t L_74 = V_9;
uint8_t* L_75 = ___5_sortkey;
int32_t L_76 = V_9;
int32_t L_77 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_75, L_76)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_73, L_74))) = (int8_t)L_77;
int32_t L_78 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_78, 1));
}
IL_0128:
{
int32_t L_79 = V_9;
if ((((int32_t)L_79) < ((int32_t)4)))
{
goto IL_0117;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_80 = ___9_ctx;
L_80->___PrevCode_5 = (-1);
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_81 = ___9_ctx;
uint8_t* L_82 = V_1;
L_81->___PrevSortKey_6 = L_82;
goto IL_020c;
}
IL_0142:
{
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_83 = ___8_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_84 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_83);
NullCheck(L_84);
String_t* L_85 = L_84->___Replacement_2;
NullCheck(L_85);
int32_t L_86;
L_86 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_85, NULL);
V_10 = ((int32_t)il2cpp_codegen_subtract(L_86, 1));
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_87 = ___8_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_88 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_87);
NullCheck(L_88);
String_t* L_89 = L_88->___Replacement_2;
int32_t L_90 = V_10;
int32_t L_91 = V_10;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540** L_92 = ___8_ct;
Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540* L_93 = *((Contraction_tAF10226C6FA2A0D9BE367AA4354E0145837F0540**)L_92);
NullCheck(L_93);
String_t* L_94 = L_93->___Replacement_2;
NullCheck(L_94);
int32_t L_95;
L_95 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_94, NULL);
uint8_t* L_96 = ___5_sortkey;
int32_t L_97 = ___4_ti;
bool L_98 = ___6_noLv4;
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_99 = ___9_ctx;
int32_t L_100;
L_100 = SimpleCollator_LastIndexOfSortKey_mF2FE6FAA26A35DA855DC31B896359E439794B759(__this, L_89, L_90, L_91, L_95, L_96, L_97, L_98, L_99, NULL);
return (bool)((((int32_t)((((int32_t)0) > ((int32_t)L_100))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0181:
{
int32_t L_101 = ___7_ext;
if (L_101)
{
goto IL_020c;
}
}
{
int32_t L_102 = V_4;
if ((((int32_t)L_102) >= ((int32_t)0)))
{
goto IL_019e;
}
}
{
String_t* L_103 = ___0_s;
int32_t* L_104 = ___1_idx;
int32_t L_105 = *((int32_t*)L_104);
NullCheck(L_103);
Il2CppChar L_106;
L_106 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_103, L_105, NULL);
int32_t L_107 = V_0;
int32_t L_108;
L_108 = SimpleCollator_FilterOptions_mE92B378C251252A64051EDB933B71BE24EE52CE2(__this, L_106, L_107, NULL);
V_4 = L_108;
}
IL_019e:
{
int32_t* L_109 = ___1_idx;
int32_t* L_110 = ___1_idx;
int32_t L_111 = *((int32_t*)L_110);
*((int32_t*)L_109) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_111, 1));
V_11 = (bool)0;
uint8_t* L_112 = V_1;
int32_t L_113 = V_4;
uint8_t L_114;
L_114 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_113, NULL);
*((int8_t*)L_112) = (int8_t)L_114;
uint8_t* L_115 = V_1;
int32_t L_116 = *((uint8_t*)L_115);
uint8_t* L_117 = ___5_sortkey;
int32_t L_118 = *((uint8_t*)L_117);
if ((!(((uint32_t)L_116) == ((uint32_t)L_118))))
{
goto IL_01c6;
}
}
{
uint8_t* L_119 = V_1;
int32_t L_120 = V_4;
uint8_t L_121;
L_121 = SimpleCollator_Level1_m4008243B3E16594F5B3384E35D9413D8A82459C7(__this, L_120, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_119, 1))) = (int8_t)L_121;
goto IL_01c9;
}
IL_01c6:
{
V_11 = (bool)1;
}
IL_01c9:
{
bool L_122 = V_2;
if (L_122)
{
goto IL_01e7;
}
}
{
uint8_t* L_123 = V_1;
int32_t L_124 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_123, 1)));
uint8_t* L_125 = ___5_sortkey;
int32_t L_126 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_125, 1)));
if ((!(((uint32_t)L_124) == ((uint32_t)L_126))))
{
goto IL_01e7;
}
}
{
uint8_t* L_127 = V_1;
int32_t L_128 = V_4;
int32_t L_129 = ___7_ext;
uint8_t L_130;
L_130 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_128, L_129, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_127, 2))) = (int8_t)L_130;
goto IL_01ed;
}
IL_01e7:
{
bool L_131 = V_2;
if (L_131)
{
goto IL_01ed;
}
}
{
V_11 = (bool)1;
}
IL_01ed:
{
bool L_132 = V_11;
if (!L_132)
{
goto IL_01f3;
}
}
{
return (bool)0;
}
IL_01f3:
{
uint8_t* L_133 = V_1;
int32_t L_134 = V_4;
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
uint8_t L_135;
L_135 = MSCompatUnicodeTable_Level3_m7519532BBA21DB48ED74A40A55E8514CAEFB8624(L_134, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_133, 3))) = (int8_t)L_135;
uint8_t* L_136 = V_1;
int32_t L_137 = *((uint8_t*)L_136);
if ((((int32_t)L_137) == ((int32_t)1)))
{
goto IL_020c;
}
}
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* L_138 = ___9_ctx;
int32_t L_139 = V_4;
L_138->___PrevCode_5 = L_139;
}
IL_020c:
{
int32_t L_140 = ___7_ext;
if (L_140)
{
goto IL_025b;
}
}
{
int32_t L_141 = V_3;
V_12 = ((int32_t)il2cpp_codegen_add(L_141, 1));
goto IL_0255;
}
IL_0217:
{
String_t* L_142 = ___0_s;
int32_t L_143 = V_12;
NullCheck(L_142);
Il2CppChar L_144;
L_144 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_142, L_143, NULL);
uint8_t L_145;
L_145 = SimpleCollator_Category_m22903A606A470F92300513060587DF33ECB95309(__this, L_144, NULL);
if ((!(((uint32_t)L_145) == ((uint32_t)1))))
{
goto IL_025b;
}
}
{
bool L_146 = V_2;
if (L_146)
{
goto IL_024f;
}
}
{
uint8_t* L_147 = V_1;
int32_t L_148 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_147, 2)));
if (L_148)
{
goto IL_0236;
}
}
{
uint8_t* L_149 = V_1;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_149, 2))) = (int8_t)2;
}
IL_0236:
{
uint8_t* L_150 = V_1;
uint8_t* L_151 = V_1;
int32_t L_152 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_151, 2)));
String_t* L_153 = ___0_s;
int32_t L_154 = V_12;
NullCheck(L_153);
Il2CppChar L_155;
L_155 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_153, L_154, NULL);
uint8_t L_156;
L_156 = SimpleCollator_Level2_m6354F0CA1939D40CC1E400494382D7D3CE219EBC(__this, L_155, 0, NULL);
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_150, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_152, (int32_t)L_156)));
}
IL_024f:
{
int32_t L_157 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add(L_157, 1));
}
IL_0255:
{
int32_t L_158 = V_12;
int32_t L_159 = ___3_orgStart;
if ((((int32_t)L_158) < ((int32_t)L_159)))
{
goto IL_0217;
}
}
IL_025b:
{
int32_t L_160 = V_0;
uint8_t* L_161 = V_1;
int32_t L_162 = V_4;
int32_t L_163 = ___7_ext;
uint8_t* L_164 = ___5_sortkey;
int32_t L_165 = ___4_ti;
bool L_166 = ___6_noLv4;
bool L_167;
L_167 = SimpleCollator_MatchesPrimitive_m561EAF65597A2D0896CAA2DCF33992A2531A490E(__this, L_160, L_161, L_162, L_163, L_164, L_165, L_166, NULL);
return L_167;
}
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator__cctor_m90A223B858B09C7BD9615B882A9A31BBA2966BAC (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*)&SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_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);
SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D* L_1 = (SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D*)il2cpp_codegen_object_new(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var);
NullCheck(L_1);
SimpleCollator__ctor_m457B2E914BEC0BB426FFE60448571037A0F3C499(L_1, L_0, NULL);
((SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_StaticFields*)il2cpp_codegen_static_fields_for(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var))->___invariant_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_StaticFields*)il2cpp_codegen_static_fields_for(SimpleCollator_t701E438CB72A78D06CCC83F129BCF57769A5939D_il2cpp_TypeInfo_var))->___invariant_0), (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 Mono.Globalization.Unicode.SimpleCollator/Context::.ctor(System.Globalization.CompareOptions,System.Byte*,System.Byte*,System.Byte*,System.Byte*,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A (Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* __this, int32_t ___0_opt, uint8_t* ___1_alwaysMatchFlags, uint8_t* ___2_neverMatchFlags, uint8_t* ___3_buffer1, uint8_t* ___4_buffer2, uint8_t* ___5_prev1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_opt;
__this->___Option_0 = L_0;
uint8_t* L_1 = ___1_alwaysMatchFlags;
__this->___AlwaysMatchFlags_2 = L_1;
uint8_t* L_2 = ___2_neverMatchFlags;
__this->___NeverMatchFlags_1 = L_2;
uint8_t* L_3 = ___3_buffer1;
__this->___Buffer1_3 = L_3;
uint8_t* L_4 = ___4_buffer2;
__this->___Buffer2_4 = L_4;
uint8_t* L_5 = ___5_prev1;
__this->___PrevSortKey_6 = L_5;
__this->___PrevCode_5 = (-1);
return;
}
}
IL2CPP_EXTERN_C void Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_opt, uint8_t* ___1_alwaysMatchFlags, uint8_t* ___2_neverMatchFlags, uint8_t* ___3_buffer1, uint8_t* ___4_buffer2, uint8_t* ___5_prev1, const RuntimeMethod* method)
{
Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Context_tD15AE54D147D83573FFCE185D3D3A64A3C75E7BE*>(__this + _offset);
Context__ctor_m70A4A39D3B8B6ED37176CABC4DD2C026FDF97B5A(_thisAdjusted, ___0_opt, ___1_alwaysMatchFlags, ___2_neverMatchFlags, ___3_buffer1, ___4_buffer2, ___5_prev1, 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 Mono.Globalization.Unicode.SimpleCollator/PreviousInfo::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PreviousInfo__ctor_m78ED776E41CA06EB8EBAB9C0997C04B8D22AB18E (PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103* __this, bool ___0_dummy, const RuntimeMethod* method)
{
{
__this->___Code_0 = (-1);
__this->___SortKey_1 = (uint8_t*)((uintptr_t)0);
return;
}
}
IL2CPP_EXTERN_C void PreviousInfo__ctor_m78ED776E41CA06EB8EBAB9C0997C04B8D22AB18E_AdjustorThunk (RuntimeObject* __this, bool ___0_dummy, const RuntimeMethod* method)
{
PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<PreviousInfo_t4E178296147ACBF0CEBE0A60D25D2AF0C9D5A103*>(__this + _offset);
PreviousInfo__ctor_m78ED776E41CA06EB8EBAB9C0997C04B8D22AB18E(_thisAdjusted, ___0_dummy, 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
// Conversion methods for marshalling of: Mono.Globalization.Unicode.SimpleCollator/Escape
IL2CPP_EXTERN_C void Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshal_pinvoke(const Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178& unmarshaled, Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_pinvoke& marshaled)
{
marshaled.___Source_0 = il2cpp_codegen_marshal_string(unmarshaled.___Source_0);
marshaled.___Index_1 = unmarshaled.___Index_1;
marshaled.___Start_2 = unmarshaled.___Start_2;
marshaled.___End_3 = unmarshaled.___End_3;
marshaled.___Optional_4 = unmarshaled.___Optional_4;
}
IL2CPP_EXTERN_C void Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshal_pinvoke_back(const Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_pinvoke& marshaled, Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178& unmarshaled)
{
unmarshaled.___Source_0 = il2cpp_codegen_marshal_string_result(marshaled.___Source_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Source_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___Source_0));
int32_t unmarshaledIndex_temp_1 = 0;
unmarshaledIndex_temp_1 = marshaled.___Index_1;
unmarshaled.___Index_1 = unmarshaledIndex_temp_1;
int32_t unmarshaledStart_temp_2 = 0;
unmarshaledStart_temp_2 = marshaled.___Start_2;
unmarshaled.___Start_2 = unmarshaledStart_temp_2;
int32_t unmarshaledEnd_temp_3 = 0;
unmarshaledEnd_temp_3 = marshaled.___End_3;
unmarshaled.___End_3 = unmarshaledEnd_temp_3;
int32_t unmarshaledOptional_temp_4 = 0;
unmarshaledOptional_temp_4 = marshaled.___Optional_4;
unmarshaled.___Optional_4 = unmarshaledOptional_temp_4;
}
// Conversion method for clean up from marshalling of: Mono.Globalization.Unicode.SimpleCollator/Escape
IL2CPP_EXTERN_C void Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshal_pinvoke_cleanup(Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___Source_0);
marshaled.___Source_0 = NULL;
}
// Conversion methods for marshalling of: Mono.Globalization.Unicode.SimpleCollator/Escape
IL2CPP_EXTERN_C void Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshal_com(const Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178& unmarshaled, Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_com& marshaled)
{
marshaled.___Source_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___Source_0);
marshaled.___Index_1 = unmarshaled.___Index_1;
marshaled.___Start_2 = unmarshaled.___Start_2;
marshaled.___End_3 = unmarshaled.___End_3;
marshaled.___Optional_4 = unmarshaled.___Optional_4;
}
IL2CPP_EXTERN_C void Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshal_com_back(const Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_com& marshaled, Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178& unmarshaled)
{
unmarshaled.___Source_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___Source_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Source_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___Source_0));
int32_t unmarshaledIndex_temp_1 = 0;
unmarshaledIndex_temp_1 = marshaled.___Index_1;
unmarshaled.___Index_1 = unmarshaledIndex_temp_1;
int32_t unmarshaledStart_temp_2 = 0;
unmarshaledStart_temp_2 = marshaled.___Start_2;
unmarshaled.___Start_2 = unmarshaledStart_temp_2;
int32_t unmarshaledEnd_temp_3 = 0;
unmarshaledEnd_temp_3 = marshaled.___End_3;
unmarshaled.___End_3 = unmarshaledEnd_temp_3;
int32_t unmarshaledOptional_temp_4 = 0;
unmarshaledOptional_temp_4 = marshaled.___Optional_4;
unmarshaled.___Optional_4 = unmarshaledOptional_temp_4;
}
// Conversion method for clean up from marshalling of: Mono.Globalization.Unicode.SimpleCollator/Escape
IL2CPP_EXTERN_C void Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshal_com_cleanup(Escape_tBDF8B9DE3CB50EC7389A1FCAD8AE65F6AA289178_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___Source_0);
marshaled.___Source_0 = NULL;
}
#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 Mono.Globalization.Unicode.SortKeyBuffer::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer__ctor_m44124385B07E9C713EE6C0CEECA51C4A4200E6FE (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, int32_t ___0_lcid, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_Reset_mAE7016EB08B676BDA41F9B85ACB485E4CE9B7BF1 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = 0;
V_0 = L_0;
__this->___l5_16 = L_0;
int32_t L_1 = V_0;
int32_t L_2 = L_1;
V_0 = L_2;
__this->___l4w_15 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = L_3;
V_0 = L_4;
__this->___l4k_14 = L_4;
int32_t L_5 = V_0;
int32_t L_6 = L_5;
V_0 = L_6;
__this->___l4t_13 = L_6;
int32_t L_7 = V_0;
int32_t L_8 = L_7;
V_0 = L_8;
__this->___l4s_12 = L_8;
int32_t L_9 = V_0;
int32_t L_10 = L_9;
V_0 = L_10;
__this->___l3_11 = L_10;
int32_t L_11 = V_0;
int32_t L_12 = L_11;
V_0 = L_12;
__this->___l2_10 = L_12;
int32_t L_13 = V_0;
__this->___l1_9 = L_13;
__this->___frenchSorted_21 = (bool)0;
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::Initialize(System.Globalization.CompareOptions,System.Int32,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_Initialize_m4F998BC86CA746C8C3DEAC8D47D17FD2B5537C39 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, int32_t ___0_options, int32_t ___1_lcid, String_t* ___2_s, bool ___3_frenchSort, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___2_s;
__this->___source_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___source_8), (void*)L_0);
int32_t L_1 = ___1_lcid;
__this->___lcid_17 = L_1;
int32_t L_2 = ___0_options;
__this->___options_18 = L_2;
String_t* L_3 = ___2_s;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
V_0 = L_4;
int32_t L_5 = ___0_options;
__this->___processLevel2_19 = (bool)((((int32_t)((int32_t)((int32_t)L_5&2))) == ((int32_t)0))? 1 : 0);
bool L_6 = ___3_frenchSort;
__this->___frenchSort_20 = L_6;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___l1b_0;
if (!L_7)
{
goto IL_0043;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___l1b_0;
NullCheck(L_8);
int32_t L_9 = V_0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))) >= ((int32_t)L_9)))
{
goto IL_0054;
}
}
IL_0043:
{
int32_t L_10 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_10, 2)), ((int32_t)10))));
__this->___l1b_0 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l1b_0), (void*)L_11);
}
IL_0054:
{
bool L_12 = __this->___processLevel2_19;
if (!L_12)
{
goto IL_007e;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->___l2b_1;
if (!L_13)
{
goto IL_006f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->___l2b_1;
NullCheck(L_14);
int32_t L_15 = V_0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length))) >= ((int32_t)L_15)))
{
goto IL_007e;
}
}
IL_006f:
{
int32_t L_16 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_16, ((int32_t)10))));
__this->___l2b_1 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l2b_1), (void*)L_17);
}
IL_007e:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = __this->___l3b_2;
if (!L_18)
{
goto IL_0091;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = __this->___l3b_2;
NullCheck(L_19);
int32_t L_20 = V_0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))) >= ((int32_t)L_20)))
{
goto IL_00a0;
}
}
IL_0091:
{
int32_t L_21 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_21, ((int32_t)10))));
__this->___l3b_2 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l3b_2), (void*)L_22);
}
IL_00a0:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = __this->___l4sb_3;
if (L_23)
{
goto IL_00b5;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___l4sb_3 = L_24;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l4sb_3), (void*)L_24);
}
IL_00b5:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = __this->___l4tb_4;
if (L_25)
{
goto IL_00ca;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___l4tb_4 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l4tb_4), (void*)L_26);
}
IL_00ca:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = __this->___l4kb_5;
if (L_27)
{
goto IL_00df;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___l4kb_5 = L_28;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l4kb_5), (void*)L_28);
}
IL_00df:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = __this->___l4wb_6;
if (L_29)
{
goto IL_00f4;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___l4wb_6 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l4wb_6), (void*)L_30);
}
IL_00f4:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_31 = __this->___l5b_7;
if (L_31)
{
goto IL_0109;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___l5b_7 = L_32;
Il2CppCodeGenWriteBarrier((void**)(&__this->___l5b_7), (void*)L_32);
}
IL_0109:
{
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendCJKExtension(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendCJKExtension_m64F33BC8021B4D895B765F7BC34723B1341F0A15 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_lv1msb, uint8_t ___1_lv1lsb, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_0 = (&__this->___l1b_0);
int32_t* L_1 = (&__this->___l1_9);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, (uint8_t)((int32_t)254), L_0, L_1, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_2 = (&__this->___l1b_0);
int32_t* L_3 = (&__this->___l1_9);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, (uint8_t)((int32_t)255), L_2, L_3, NULL);
uint8_t L_4 = ___0_lv1msb;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_5 = (&__this->___l1b_0);
int32_t* L_6 = (&__this->___l1_9);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_4, L_5, L_6, NULL);
uint8_t L_7 = ___1_lv1lsb;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_8 = (&__this->___l1b_0);
int32_t* L_9 = (&__this->___l1_9);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_7, L_8, L_9, NULL);
bool L_10 = __this->___processLevel2_19;
if (!L_10)
{
goto IL_006f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_11 = (&__this->___l2b_1);
int32_t* L_12 = (&__this->___l2_10);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, (uint8_t)2, L_11, L_12, NULL);
}
IL_006f:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_13 = (&__this->___l3b_2);
int32_t* L_14 = (&__this->___l3_11);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, (uint8_t)2, L_13, L_14, NULL);
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendKana(System.Byte,System.Byte,System.Byte,System.Byte,System.Boolean,System.Byte,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendKana_m18A005FE17B519E36265D20FD12EFFE99E5132F9 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_category, uint8_t ___1_lv1, uint8_t ___2_lv2, uint8_t ___3_lv3, bool ___4_isSmallKana, uint8_t ___5_markType, bool ___6_isKatakana, bool ___7_isHalfWidth, const RuntimeMethod* method)
{
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B2_0 = NULL;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B3_1 = NULL;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B5_0 = NULL;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B4_0 = NULL;
int32_t G_B6_0 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B6_1 = NULL;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B8_0 = NULL;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B7_0 = NULL;
int32_t G_B9_0 = 0;
SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* G_B9_1 = NULL;
{
uint8_t L_0 = ___0_category;
uint8_t L_1 = ___1_lv1;
uint8_t L_2 = ___2_lv2;
uint8_t L_3 = ___3_lv3;
SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4(__this, L_0, L_1, L_2, L_3, NULL);
bool L_4 = ___4_isSmallKana;
G_B1_0 = __this;
if (L_4)
{
G_B2_0 = __this;
goto IL_0017;
}
}
{
G_B3_0 = ((int32_t)228);
G_B3_1 = G_B1_0;
goto IL_001c;
}
IL_0017:
{
G_B3_0 = ((int32_t)196);
G_B3_1 = G_B2_0;
}
IL_001c:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_5 = (&__this->___l4sb_3);
int32_t* L_6 = (&__this->___l4s_12);
NullCheck(G_B3_1);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(G_B3_1, (uint8_t)((int32_t)(uint8_t)G_B3_0), L_5, L_6, NULL);
uint8_t L_7 = ___5_markType;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_8 = (&__this->___l4tb_4);
int32_t* L_9 = (&__this->___l4t_13);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_7, L_8, L_9, NULL);
bool L_10 = ___6_isKatakana;
G_B4_0 = __this;
if (L_10)
{
G_B5_0 = __this;
goto IL_004e;
}
}
{
G_B6_0 = ((int32_t)228);
G_B6_1 = G_B4_0;
goto IL_0053;
}
IL_004e:
{
G_B6_0 = ((int32_t)196);
G_B6_1 = G_B5_0;
}
IL_0053:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_11 = (&__this->___l4kb_5);
int32_t* L_12 = (&__this->___l4k_14);
NullCheck(G_B6_1);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(G_B6_1, (uint8_t)((int32_t)(uint8_t)G_B6_0), L_11, L_12, NULL);
bool L_13 = ___7_isHalfWidth;
G_B7_0 = __this;
if (L_13)
{
G_B8_0 = __this;
goto IL_0071;
}
}
{
G_B9_0 = ((int32_t)228);
G_B9_1 = G_B7_0;
goto IL_0076;
}
IL_0071:
{
G_B9_0 = ((int32_t)196);
G_B9_1 = G_B8_0;
}
IL_0076:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_14 = (&__this->___l4wb_6);
int32_t* L_15 = (&__this->___l4w_15);
NullCheck(G_B9_1);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(G_B9_1, (uint8_t)((int32_t)(uint8_t)G_B9_0), L_14, L_15, NULL);
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendNormal(System.Byte,System.Byte,System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendNormal_m27FD4478DCD42D4978D63021B5AF164B22D73AE4 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_category, uint8_t ___1_lv1, uint8_t ___2_lv2, uint8_t ___3_lv3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
uint8_t L_0 = ___2_lv2;
if (L_0)
{
goto IL_0006;
}
}
{
___2_lv2 = (uint8_t)2;
}
IL_0006:
{
uint8_t L_1 = ___3_lv3;
if (L_1)
{
goto IL_000d;
}
}
{
___3_lv3 = (uint8_t)2;
}
IL_000d:
{
uint8_t L_2 = ___0_category;
if ((!(((uint32_t)L_2) == ((uint32_t)6))))
{
goto IL_0028;
}
}
{
int32_t L_3 = __this->___options_18;
if (((int32_t)((int32_t)L_3&((int32_t)536870912))))
{
goto IL_0028;
}
}
{
uint8_t L_4 = ___0_category;
uint8_t L_5 = ___1_lv1;
SortKeyBuffer_AppendLevel5_m43A602E98AD77ECF099203FFBD5EB25150A97263(__this, L_4, L_5, NULL);
return;
}
IL_0028:
{
bool L_6 = __this->___processLevel2_19;
if (!L_6)
{
goto IL_0074;
}
}
{
uint8_t L_7 = ___0_category;
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_0074;
}
}
{
int32_t L_8 = __this->___l1_9;
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_0074;
}
}
{
uint8_t L_9 = ___2_lv2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->___l2b_1;
int32_t L_11 = __this->___l2_10;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
int32_t L_12 = V_0;
__this->___l2_10 = L_12;
int32_t L_13 = V_0;
NullCheck(L_10);
int32_t L_14 = L_13;
uint8_t L_15 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
___2_lv2 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_15)));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = __this->___l3b_2;
int32_t L_17 = __this->___l3_11;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
int32_t L_18 = V_0;
__this->___l3_11 = L_18;
int32_t L_19 = V_0;
NullCheck(L_16);
int32_t L_20 = L_19;
uint8_t L_21 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
___3_lv3 = L_21;
}
IL_0074:
{
uint8_t L_22 = ___0_category;
if ((((int32_t)L_22) == ((int32_t)1)))
{
goto IL_009e;
}
}
{
uint8_t L_23 = ___0_category;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_24 = (&__this->___l1b_0);
int32_t* L_25 = (&__this->___l1_9);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_23, L_24, L_25, NULL);
uint8_t L_26 = ___1_lv1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_27 = (&__this->___l1b_0);
int32_t* L_28 = (&__this->___l1_9);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_26, L_27, L_28, NULL);
}
IL_009e:
{
bool L_29 = __this->___processLevel2_19;
if (!L_29)
{
goto IL_00b9;
}
}
{
uint8_t L_30 = ___2_lv2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_31 = (&__this->___l2b_1);
int32_t* L_32 = (&__this->___l2_10);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_30, L_31, L_32, NULL);
}
IL_00b9:
{
uint8_t L_33 = ___3_lv3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_34 = (&__this->___l3b_2);
int32_t* L_35 = (&__this->___l3_11);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_33, L_34, L_35, NULL);
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendLevel5(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendLevel5_m43A602E98AD77ECF099203FFBD5EB25150A97263 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_category, uint8_t ___1_lv1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___l2_10;
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_0, 1))%((int32_t)8192)));
int32_t L_1 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_2 = (&__this->___l5b_7);
int32_t* L_3 = (&__this->___l5_16);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_1/((int32_t)64))), ((int32_t)128)))), L_2, L_3, NULL);
int32_t L_4 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_5 = (&__this->___l5b_7);
int32_t* L_6 = (&__this->___l5_16);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)(L_4%((int32_t)64))), 4)), 3))), L_5, L_6, NULL);
uint8_t L_7 = ___0_category;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_8 = (&__this->___l5b_7);
int32_t* L_9 = (&__this->___l5_16);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_7, L_8, L_9, NULL);
uint8_t L_10 = ___1_lv1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_11 = (&__this->___l5b_7);
int32_t* L_12 = (&__this->___l5_16);
SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99(__this, L_10, L_11, L_12, NULL);
return;
}
}
// System.Void Mono.Globalization.Unicode.SortKeyBuffer::AppendBufferPrimitive(System.Byte,System.Byte[]&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKeyBuffer_AppendBufferPrimitive_mE7C5844B149DE19732C96F5540CD43B4B166BB99 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, uint8_t ___0_value, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___1_buf, int32_t* ___2_bidx, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_0 = ___1_buf;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_0);
int32_t* L_2 = ___2_bidx;
int32_t* L_3 = ___2_bidx;
int32_t L_4 = *((int32_t*)L_3);
V_0 = L_4;
int32_t L_5 = V_0;
*((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_add(L_5, 1));
int32_t L_6 = V_0;
uint8_t L_7 = ___0_value;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint8_t)L_7);
int32_t* L_8 = ___2_bidx;
int32_t L_9 = *((int32_t*)L_8);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_10 = ___1_buf;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_10);
NullCheck(L_11);
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))))))
{
goto IL_002e;
}
}
{
int32_t* L_12 = ___2_bidx;
int32_t L_13 = *((int32_t*)L_12);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_13, 2)));
V_1 = L_14;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_15 = ___1_buf;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_15);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_18 = ___1_buf;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_18);
NullCheck(L_19);
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_16, (RuntimeArray*)L_17, ((int32_t)(((RuntimeArray*)L_19)->max_length)), NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_20 = ___1_buf;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = V_1;
*((RuntimeObject**)L_20) = (RuntimeObject*)L_21;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_21);
}
IL_002e:
{
return;
}
}
// System.Globalization.SortKey Mono.Globalization.Unicode.SortKeyBuffer::GetResultAndReset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SortKeyBuffer_GetResultAndReset_m3F0C22EAE5F965F5B9E82649F754847BF5593AFD (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, const RuntimeMethod* method)
{
{
SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* L_0;
L_0 = SortKeyBuffer_GetResult_m30B9014A75D75E2FEFA2957089E273851C493794(__this, NULL);
SortKeyBuffer_Reset_mAE7016EB08B676BDA41F9B85ACB485E4CE9B7BF1(__this, NULL);
return L_0;
}
}
// System.Int32 Mono.Globalization.Unicode.SortKeyBuffer::GetOptimizedLength(System.Byte[],System.Int32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_len, uint8_t ___2_defaultValue, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = (-1);
V_1 = 0;
goto IL_0012;
}
IL_0006:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data;
int32_t L_1 = V_1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
uint8_t L_4 = ___2_defaultValue;
if ((((int32_t)L_3) == ((int32_t)L_4)))
{
goto IL_000e;
}
}
{
int32_t L_5 = V_1;
V_0 = L_5;
}
IL_000e:
{
int32_t L_6 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
}
IL_0012:
{
int32_t L_7 = V_1;
int32_t L_8 = ___1_len;
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0006;
}
}
{
int32_t L_9 = V_0;
return ((int32_t)il2cpp_codegen_add(L_9, 1));
}
}
// System.Globalization.SortKey Mono.Globalization.Unicode.SortKeyBuffer::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* SortKeyBuffer_GetResult_m30B9014A75D75E2FEFA2957089E273851C493794 (SortKeyBuffer_t1B22E86F4DDDE0CED3278657DDCAA823469E524A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t G_B12_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B14_0 = 0;
int32_t G_B13_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B15_0 = 0;
{
String_t* L_0 = __this->___source_8;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_0033;
}
}
{
int32_t L_2 = __this->___lcid_17;
String_t* L_3 = __this->___source_8;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)0);
int32_t L_5 = __this->___options_18;
SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* L_6 = (SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740*)il2cpp_codegen_object_new(SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740_il2cpp_TypeInfo_var);
NullCheck(L_6);
SortKey__ctor_m17EC2276AE294AA8397E51FDCC4B89BF367EC7A5(L_6, L_2, L_3, L_4, L_5, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
return L_6;
}
IL_0033:
{
bool L_7 = __this->___frenchSort_20;
if (!L_7)
{
goto IL_0082;
}
}
{
bool L_8 = __this->___frenchSorted_21;
if (L_8)
{
goto IL_0082;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___l2b_1;
if (!L_9)
{
goto IL_0082;
}
}
{
V_4 = 0;
goto IL_0061;
}
IL_0050:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->___l2b_1;
int32_t L_11 = V_4;
NullCheck(L_10);
int32_t L_12 = L_11;
uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
if (!L_13)
{
goto IL_006d;
}
}
{
int32_t L_14 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0061:
{
int32_t L_15 = V_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = __this->___l2b_1;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0050;
}
}
IL_006d:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___l2b_1;
int32_t L_18 = V_4;
Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE(L_17, 0, L_18, Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m259DE31308F37526EF40E73D7C36AB5DDC896CBE_RuntimeMethod_var);
__this->___frenchSorted_21 = (bool)1;
}
IL_0082:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = __this->___l2b_1;
int32_t L_20 = __this->___l2_10;
int32_t L_21;
L_21 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_19, L_20, (uint8_t)2, NULL);
__this->___l2_10 = L_21;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = __this->___l3b_2;
int32_t L_23 = __this->___l3_11;
int32_t L_24;
L_24 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_22, L_23, (uint8_t)2, NULL);
__this->___l3_11 = L_24;
int32_t L_25 = __this->___l4s_12;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = __this->___l4sb_3;
int32_t L_27 = __this->___l4s_12;
int32_t L_28;
L_28 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_26, L_27, (uint8_t)((int32_t)228), NULL);
__this->___l4s_12 = L_28;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = __this->___l4tb_4;
int32_t L_30 = __this->___l4t_13;
int32_t L_31;
L_31 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_29, L_30, (uint8_t)3, NULL);
__this->___l4t_13 = L_31;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = __this->___l4kb_5;
int32_t L_33 = __this->___l4k_14;
int32_t L_34;
L_34 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_32, L_33, (uint8_t)((int32_t)228), NULL);
__this->___l4k_14 = L_34;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = __this->___l4wb_6;
int32_t L_36 = __this->___l4w_15;
int32_t L_37;
L_37 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_35, L_36, (uint8_t)((int32_t)228), NULL);
__this->___l4w_15 = L_37;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_38 = __this->___l5b_7;
int32_t L_39 = __this->___l5_16;
int32_t L_40;
L_40 = SortKeyBuffer_GetOptimizedLength_mEB37B3DAFE55CE8199DD8B14DC3198249D93EC95(__this, L_38, L_39, (uint8_t)2, NULL);
__this->___l5_16 = L_40;
int32_t L_41 = __this->___l1_9;
int32_t L_42 = __this->___l2_10;
int32_t L_43 = __this->___l3_11;
int32_t L_44 = __this->___l5_16;
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_41, L_42)), L_43)), L_44)), 5));
int32_t L_45 = __this->___l4s_12;
int32_t L_46 = __this->___l4t_13;
int32_t L_47 = __this->___l4k_14;
int32_t L_48 = __this->___l4w_15;
V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_45, L_46)), L_47)), L_48));
int32_t L_49 = ((((int32_t)L_25) > ((int32_t)0))? 1 : 0);
G_B11_0 = L_49;
if (!L_49)
{
G_B12_0 = L_49;
goto IL_0189;
}
}
{
int32_t L_50 = V_0;
int32_t L_51 = V_1;
V_0 = ((int32_t)il2cpp_codegen_add(L_50, ((int32_t)il2cpp_codegen_add(L_51, 4))));
G_B12_0 = G_B11_0;
}
IL_0189:
{
int32_t L_52 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_53 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_52);
V_2 = L_53;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_54 = __this->___l1b_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_55 = V_2;
int32_t L_56 = __this->___l1_9;
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_54, (RuntimeArray*)L_55, L_56, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_57 = V_2;
int32_t L_58 = __this->___l1_9;
NullCheck(L_57);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(L_58), (uint8_t)1);
int32_t L_59 = __this->___l1_9;
V_3 = ((int32_t)il2cpp_codegen_add(L_59, 1));
int32_t L_60 = __this->___l2_10;
G_B13_0 = G_B12_0;
if ((((int32_t)L_60) <= ((int32_t)0)))
{
G_B14_0 = G_B12_0;
goto IL_01d1;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_61 = __this->___l2b_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_62 = V_2;
int32_t L_63 = V_3;
int32_t L_64 = __this->___l2_10;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_61, 0, (RuntimeArray*)L_62, L_63, L_64, NULL);
G_B14_0 = G_B13_0;
}
IL_01d1:
{
int32_t L_65 = V_3;
int32_t L_66 = __this->___l2_10;
V_3 = ((int32_t)il2cpp_codegen_add(L_65, L_66));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_67 = V_2;
int32_t L_68 = V_3;
int32_t L_69 = L_68;
V_3 = ((int32_t)il2cpp_codegen_add(L_69, 1));
NullCheck(L_67);
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(L_69), (uint8_t)1);
int32_t L_70 = __this->___l3_11;
G_B15_0 = G_B14_0;
if ((((int32_t)L_70) <= ((int32_t)0)))
{
G_B16_0 = G_B14_0;
goto IL_01ff;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_71 = __this->___l3b_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_72 = V_2;
int32_t L_73 = V_3;
int32_t L_74 = __this->___l3_11;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_71, 0, (RuntimeArray*)L_72, L_73, L_74, NULL);
G_B16_0 = G_B15_0;
}
IL_01ff:
{
int32_t L_75 = V_3;
int32_t L_76 = __this->___l3_11;
V_3 = ((int32_t)il2cpp_codegen_add(L_75, L_76));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_77 = V_2;
int32_t L_78 = V_3;
int32_t L_79 = L_78;
V_3 = ((int32_t)il2cpp_codegen_add(L_79, 1));
NullCheck(L_77);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(L_79), (uint8_t)1);
if (!G_B16_0)
{
goto IL_02b5;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_80 = __this->___l4sb_3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_81 = V_2;
int32_t L_82 = V_3;
int32_t L_83 = __this->___l4s_12;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_80, 0, (RuntimeArray*)L_81, L_82, L_83, NULL);
int32_t L_84 = V_3;
int32_t L_85 = __this->___l4s_12;
V_3 = ((int32_t)il2cpp_codegen_add(L_84, L_85));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_86 = V_2;
int32_t L_87 = V_3;
int32_t L_88 = L_87;
V_3 = ((int32_t)il2cpp_codegen_add(L_88, 1));
NullCheck(L_86);
(L_86)->SetAt(static_cast<il2cpp_array_size_t>(L_88), (uint8_t)((int32_t)255));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_89 = __this->___l4tb_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_90 = V_2;
int32_t L_91 = V_3;
int32_t L_92 = __this->___l4t_13;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_89, 0, (RuntimeArray*)L_90, L_91, L_92, NULL);
int32_t L_93 = V_3;
int32_t L_94 = __this->___l4t_13;
V_3 = ((int32_t)il2cpp_codegen_add(L_93, L_94));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_95 = V_2;
int32_t L_96 = V_3;
int32_t L_97 = L_96;
V_3 = ((int32_t)il2cpp_codegen_add(L_97, 1));
NullCheck(L_95);
(L_95)->SetAt(static_cast<il2cpp_array_size_t>(L_97), (uint8_t)2);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_98 = __this->___l4kb_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_99 = V_2;
int32_t L_100 = V_3;
int32_t L_101 = __this->___l4k_14;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_98, 0, (RuntimeArray*)L_99, L_100, L_101, NULL);
int32_t L_102 = V_3;
int32_t L_103 = __this->___l4k_14;
V_3 = ((int32_t)il2cpp_codegen_add(L_102, L_103));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_104 = V_2;
int32_t L_105 = V_3;
int32_t L_106 = L_105;
V_3 = ((int32_t)il2cpp_codegen_add(L_106, 1));
NullCheck(L_104);
(L_104)->SetAt(static_cast<il2cpp_array_size_t>(L_106), (uint8_t)((int32_t)255));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_107 = __this->___l4wb_6;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_108 = V_2;
int32_t L_109 = V_3;
int32_t L_110 = __this->___l4w_15;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_107, 0, (RuntimeArray*)L_108, L_109, L_110, NULL);
int32_t L_111 = V_3;
int32_t L_112 = __this->___l4w_15;
V_3 = ((int32_t)il2cpp_codegen_add(L_111, L_112));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_113 = V_2;
int32_t L_114 = V_3;
int32_t L_115 = L_114;
V_3 = ((int32_t)il2cpp_codegen_add(L_115, 1));
NullCheck(L_113);
(L_113)->SetAt(static_cast<il2cpp_array_size_t>(L_115), (uint8_t)((int32_t)255));
}
IL_02b5:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_116 = V_2;
int32_t L_117 = V_3;
int32_t L_118 = L_117;
V_3 = ((int32_t)il2cpp_codegen_add(L_118, 1));
NullCheck(L_116);
(L_116)->SetAt(static_cast<il2cpp_array_size_t>(L_118), (uint8_t)1);
int32_t L_119 = __this->___l5_16;
if ((((int32_t)L_119) <= ((int32_t)0)))
{
goto IL_02da;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_120 = __this->___l5b_7;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_121 = V_2;
int32_t L_122 = V_3;
int32_t L_123 = __this->___l5_16;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_120, 0, (RuntimeArray*)L_121, L_122, L_123, NULL);
}
IL_02da:
{
int32_t L_124 = V_3;
int32_t L_125 = __this->___l5_16;
V_3 = ((int32_t)il2cpp_codegen_add(L_124, L_125));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_126 = V_2;
int32_t L_127 = V_3;
int32_t L_128 = L_127;
V_3 = ((int32_t)il2cpp_codegen_add(L_128, 1));
NullCheck(L_126);
(L_126)->SetAt(static_cast<il2cpp_array_size_t>(L_128), (uint8_t)0);
int32_t L_129 = __this->___lcid_17;
String_t* L_130 = __this->___source_8;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_131 = V_2;
int32_t L_132 = __this->___options_18;
int32_t L_133 = __this->___l1_9;
int32_t L_134 = __this->___l2_10;
int32_t L_135 = __this->___l3_11;
int32_t L_136 = __this->___l4s_12;
int32_t L_137 = __this->___l4t_13;
int32_t L_138 = __this->___l4k_14;
int32_t L_139 = __this->___l4w_15;
int32_t L_140 = __this->___l5_16;
SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740* L_141 = (SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740*)il2cpp_codegen_object_new(SortKey_tFE5594FAAAFF330066735114D1021DB0D5273740_il2cpp_TypeInfo_var);
NullCheck(L_141);
SortKey__ctor_m17EC2276AE294AA8397E51FDCC4B89BF367EC7A5(L_141, L_129, L_130, L_131, L_132, L_133, L_134, L_135, L_136, L_137, L_138, L_139, L_140, NULL);
return L_141;
}
}
#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[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverterLE_GetUIntBytes_m063CB14AF929A412B13A41B78A6F78476926227F (uint8_t* ___0_bytes, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var))->___IsLittleEndian_0;
if (!L_0)
{
goto IL_0028;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = L_1;
uint8_t* L_3 = ___0_bytes;
int32_t L_4 = *((uint8_t*)L_3);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = L_2;
uint8_t* L_6 = ___0_bytes;
int32_t L_7 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 1)));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_5;
uint8_t* L_9 = ___0_bytes;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, 2)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_10);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_8;
uint8_t* L_12 = ___0_bytes;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, 3)));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_13);
return L_11;
}
IL_0028:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = L_14;
uint8_t* L_16 = ___0_bytes;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 3)));
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_17);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = L_15;
uint8_t* L_19 = ___0_bytes;
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, 2)));
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_20);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_18;
uint8_t* L_22 = ___0_bytes;
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, 1)));
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_23);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = L_21;
uint8_t* L_25 = ___0_bytes;
int32_t L_26 = *((uint8_t*)L_25);
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_26);
return L_24;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetULongBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverterLE_GetULongBytes_mAC7F39560BA9C9C7D3041E2A527A7BBA09E0F418 (uint8_t* ___0_bytes, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var))->___IsLittleEndian_0;
if (!L_0)
{
goto IL_0044;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = L_1;
uint8_t* L_3 = ___0_bytes;
int32_t L_4 = *((uint8_t*)L_3);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = L_2;
uint8_t* L_6 = ___0_bytes;
int32_t L_7 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 1)));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_5;
uint8_t* L_9 = ___0_bytes;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, 2)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_10);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_8;
uint8_t* L_12 = ___0_bytes;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, 3)));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_13);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = L_11;
uint8_t* L_15 = ___0_bytes;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, 4)));
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)L_16);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = L_14;
uint8_t* L_18 = ___0_bytes;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, 5)));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)L_19);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = L_17;
uint8_t* L_21 = ___0_bytes;
int32_t L_22 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, 6)));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)L_22);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = L_20;
uint8_t* L_24 = ___0_bytes;
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, 7)));
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)L_25);
return L_23;
}
IL_0044:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = L_26;
uint8_t* L_28 = ___0_bytes;
int32_t L_29 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_28, 7)));
NullCheck(L_27);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_29);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = L_27;
uint8_t* L_31 = ___0_bytes;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, 6)));
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_32);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = L_30;
uint8_t* L_34 = ___0_bytes;
int32_t L_35 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, 5)));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_35);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36 = L_33;
uint8_t* L_37 = ___0_bytes;
int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, 4)));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_38);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_39 = L_36;
uint8_t* L_40 = ___0_bytes;
int32_t L_41 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_40, 3)));
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)L_41);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_42 = L_39;
uint8_t* L_43 = ___0_bytes;
int32_t L_44 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, 2)));
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)L_44);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_45 = L_42;
uint8_t* L_46 = ___0_bytes;
int32_t L_47 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, 1)));
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)L_47);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_48 = L_45;
uint8_t* L_49 = ___0_bytes;
int32_t L_50 = *((uint8_t*)L_49);
NullCheck(L_48);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)L_50);
return L_48;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverterLE_GetBytes_m1F182B4F848326D45D35E4CFC303867178F99C9E (float ___0_value, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
L_0 = BitConverterLE_GetUIntBytes_m063CB14AF929A412B13A41B78A6F78476926227F((uint8_t*)((uintptr_t)(&___0_value)), NULL);
return L_0;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverterLE_GetBytes_mC6B3B7A7F53591B7E9199AFB694DE6F3D6AFE048 (double ___0_value, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
L_0 = BitConverterLE_GetULongBytes_mAC7F39560BA9C9C7D3041E2A527A7BBA09E0F418((uint8_t*)((uintptr_t)(&___0_value)), NULL);
return L_0;
}
}
// System.Void Mono.Security.BitConverterLE::UIntFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UIntFromBytes_m2CB2D9D380235CBEFF14FF76FCBF7ED0F316F92A (uint8_t* ___0_dst, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_src, int32_t ___2_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;
}
{
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var))->___IsLittleEndian_0;
if (!L_0)
{
goto IL_0028;
}
}
{
uint8_t* L_1 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___1_src;
int32_t L_3 = ___2_startIndex;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
*((int8_t*)L_1) = (int8_t)L_5;
uint8_t* L_6 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___1_src;
int32_t L_8 = ___2_startIndex;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_8, 1));
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 1))) = (int8_t)L_10;
uint8_t* L_11 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___1_src;
int32_t L_13 = ___2_startIndex;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_add(L_13, 2));
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 2))) = (int8_t)L_15;
uint8_t* L_16 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ___1_src;
int32_t L_18 = ___2_startIndex;
NullCheck(L_17);
int32_t L_19 = ((int32_t)il2cpp_codegen_add(L_18, 3));
uint8_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 3))) = (int8_t)L_20;
return;
}
IL_0028:
{
uint8_t* L_21 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = ___1_src;
int32_t L_23 = ___2_startIndex;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_add(L_23, 3));
uint8_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
*((int8_t*)L_21) = (int8_t)L_25;
uint8_t* L_26 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = ___1_src;
int32_t L_28 = ___2_startIndex;
NullCheck(L_27);
int32_t L_29 = ((int32_t)il2cpp_codegen_add(L_28, 2));
uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, 1))) = (int8_t)L_30;
uint8_t* L_31 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = ___1_src;
int32_t L_33 = ___2_startIndex;
NullCheck(L_32);
int32_t L_34 = ((int32_t)il2cpp_codegen_add(L_33, 1));
uint8_t L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, 2))) = (int8_t)L_35;
uint8_t* L_36 = ___0_dst;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = ___1_src;
int32_t L_38 = ___2_startIndex;
NullCheck(L_37);
int32_t L_39 = L_38;
uint8_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, 3))) = (int8_t)L_40;
return;
}
}
// System.Void Mono.Security.BitConverterLE::ULongFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_ULongFromBytes_m34888A39C976DFD3CFC64C4BC034A7947DB3699F (uint8_t* ___0_dst, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_src, int32_t ___2_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;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var))->___IsLittleEndian_0;
if (!L_0)
{
goto IL_001d;
}
}
{
V_0 = 0;
goto IL_0018;
}
IL_000b:
{
uint8_t* L_1 = ___0_dst;
int32_t L_2 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___1_src;
int32_t L_4 = ___2_startIndex;
int32_t L_5 = V_0;
NullCheck(L_3);
int32_t L_6 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
uint8_t L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, L_2))) = (int8_t)L_7;
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0018:
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) < ((int32_t)8)))
{
goto IL_000b;
}
}
{
return;
}
IL_001d:
{
V_1 = 0;
goto IL_0030;
}
IL_0021:
{
uint8_t* L_10 = ___0_dst;
int32_t L_11 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___1_src;
int32_t L_13 = ___2_startIndex;
int32_t L_14 = V_1;
NullCheck(L_12);
int32_t L_15 = ((int32_t)il2cpp_codegen_add(L_13, ((int32_t)il2cpp_codegen_subtract(7, L_14))));
uint8_t L_16 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11))) = (int8_t)L_16;
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0030:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) < ((int32_t)8)))
{
goto IL_0021;
}
}
{
return;
}
}
// System.Single Mono.Security.BitConverterLE::ToSingle(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BitConverterLE_ToSingle_m5321E3E0AA55B5E0610EABC85EA8945583DA644B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
BitConverterLE_UIntFromBytes_m2CB2D9D380235CBEFF14FF76FCBF7ED0F316F92A((uint8_t*)((uintptr_t)(&V_0)), L_0, L_1, NULL);
float L_2 = V_0;
return L_2;
}
}
// System.Double Mono.Security.BitConverterLE::ToDouble(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverterLE_ToDouble_m9FF6BA0B6DB5E9F5A4E62EA095D3BAB613A437FA (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method)
{
double V_0 = 0.0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
BitConverterLE_ULongFromBytes_m34888A39C976DFD3CFC64C4BC034A7947DB3699F((uint8_t*)((uintptr_t)(&V_0)), L_0, L_1, NULL);
double L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String Microsoft.Win32.Win32Native::GetMessage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Win32Native_GetMessage_m1EE5BE889F1BB4F4ABA06C2B7543BF5E672409FA (int32_t ___0_hr, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80905910A78441C04EDCE26C733491EBE4B06012);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&___0_hr), NULL);
String_t* L_1;
L_1 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral80905910A78441C04EDCE26C733491EBE4B06012, L_0, NULL);
return L_1;
}
}
// System.Int32 Microsoft.Win32.Win32Native::MakeHRFromErrorCode(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Win32Native_MakeHRFromErrorCode_m612DCDA5F785E832AD273F76B2F91FEA110B3551 (int32_t ___0_errorCode, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_errorCode;
return ((int32_t)(((int32_t)-2147024896)|L_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 Microsoft.Win32.SafeHandles.SafeFileHandle::.ctor(System.IntPtr,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeFileHandle__ctor_mDF2AFEC596DE2F6BD8FBB977135DAC23703213A2 (SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* __this, intptr_t ___0_preexistingHandle, bool ___1_ownsHandle, const RuntimeMethod* method)
{
{
bool L_0 = ___1_ownsHandle;
SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89(__this, L_0, NULL);
intptr_t L_1 = ___0_preexistingHandle;
SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline(__this, L_1, NULL);
return;
}
}
// System.Boolean Microsoft.Win32.SafeHandles.SafeFileHandle::ReleaseHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SafeFileHandle_ReleaseHandle_mFB3F634215C1C3DE1FA55BEE1BB005489CCB6BC9 (SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
intptr_t L_0 = ((SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7*)__this)->___handle_0;
il2cpp_codegen_runtime_class_init_inline(MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var);
bool L_1;
L_1 = MonoIO_Close_m0EF5E4613FDD2FAC98D5C41CA660EB0B328CB5F0(L_0, (&V_0), NULL);
int32_t L_2 = V_0;
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 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 Microsoft.Win32.SafeHandles.SafeWaitHandle::.ctor(System.IntPtr,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeWaitHandle__ctor_m6CA082DF779C0BAAA7EEDE99BB2ECF1ECDB579DA (SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* __this, intptr_t ___0_existingHandle, bool ___1_ownsHandle, const RuntimeMethod* method)
{
{
bool L_0 = ___1_ownsHandle;
SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89(__this, L_0, NULL);
intptr_t L_1 = ___0_existingHandle;
SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline(__this, L_1, NULL);
return;
}
}
// System.Boolean Microsoft.Win32.SafeHandles.SafeWaitHandle::ReleaseHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SafeWaitHandle_ReleaseHandle_m859E29080535AB6992A97121C4EEACF9987304C1 (SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = ((SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7*)__this)->___handle_0;
NativeEventCalls_CloseEvent_internal_m57C81656144EBA5DEE8A55C09624CED5C338BDE9(L_0, NULL);
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89 (SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629* __this, bool ___0_ownsHandle, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
bool L_1 = ___0_ownsHandle;
SafeHandle__ctor_m23E44C94503043292DCD4E87818082CFC09A7F4B(__this, L_0, L_1, NULL);
return;
}
}
// System.Boolean Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid::get_IsInvalid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SafeHandleZeroOrMinusOneIsInvalid_get_IsInvalid_m919AE81CFBF4FE96353603BC43C8B5D83E862AFB (SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629* __this, const RuntimeMethod* method)
{
{
intptr_t* L_0 = (&((SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7*)__this)->___handle_0);
bool L_1;
L_1 = IntPtr_IsNull_m77D4FB137C442917D697E210C859523466B7B2CD(L_0, NULL);
if (L_1)
{
goto IL_001f;
}
}
{
intptr_t L_2 = ((SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7*)__this)->___handle_0;
intptr_t L_3;
memset((&L_3), 0, sizeof(L_3));
IntPtr__ctor_m20A566609A091311C734617C699E61F545250AC7((&L_3), (-1), /*hidden argument*/NULL);
bool L_4;
L_4 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271(L_2, L_3, NULL);
return L_4;
}
IL_001f:
{
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean Internal.Threading.Tasks.Tracing.TaskTrace::get_Enabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskTrace_get_Enabled_m1B9A1B709F512F05A3758DE01A2BAB11E4880BA8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* V_0 = NULL;
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_0 = ((TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_StaticFields*)il2cpp_codegen_static_fields_for(TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var))->___s_callbacks_0;
V_0 = L_0;
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_1 = V_0;
if (L_1)
{
goto IL_000b;
}
}
{
return (bool)0;
}
IL_000b:
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_2 = V_0;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean Internal.Runtime.Augments.TaskTraceCallbacks::get_Enabled() */, L_2);
if (L_3)
{
goto IL_0015;
}
}
{
return (bool)0;
}
IL_0015:
{
return (bool)1;
}
}
// System.Void Internal.Threading.Tasks.Tracing.TaskTrace::TaskWaitBegin_Asynchronous(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskTrace_TaskWaitBegin_Asynchronous_m1C7B282C8E67FD1E6E4BD9B83A7576CF8AFF9E3B (int32_t ___0_OriginatingTaskSchedulerID, int32_t ___1_OriginatingTaskID, int32_t ___2_TaskID, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* V_0 = NULL;
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_0 = ((TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_StaticFields*)il2cpp_codegen_static_fields_for(TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var))->___s_callbacks_0;
V_0 = L_0;
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_1 = V_0;
if (L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_2 = V_0;
int32_t L_3 = ___0_OriginatingTaskSchedulerID;
int32_t L_4 = ___1_OriginatingTaskID;
int32_t L_5 = ___2_TaskID;
NullCheck(L_2);
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(5 /* System.Void Internal.Runtime.Augments.TaskTraceCallbacks::TaskWaitBegin_Asynchronous(System.Int32,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5);
return;
}
}
// System.Void Internal.Threading.Tasks.Tracing.TaskTrace::TaskWaitBegin_Synchronous(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskTrace_TaskWaitBegin_Synchronous_m3C8CB224220F0F30372F404828A9D065AE5AFCEC (int32_t ___0_OriginatingTaskSchedulerID, int32_t ___1_OriginatingTaskID, int32_t ___2_TaskID, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* V_0 = NULL;
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_0 = ((TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_StaticFields*)il2cpp_codegen_static_fields_for(TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var))->___s_callbacks_0;
V_0 = L_0;
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_1 = V_0;
if (L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_2 = V_0;
int32_t L_3 = ___0_OriginatingTaskSchedulerID;
int32_t L_4 = ___1_OriginatingTaskID;
int32_t L_5 = ___2_TaskID;
NullCheck(L_2);
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(6 /* System.Void Internal.Runtime.Augments.TaskTraceCallbacks::TaskWaitBegin_Synchronous(System.Int32,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5);
return;
}
}
// System.Void Internal.Threading.Tasks.Tracing.TaskTrace::TaskWaitEnd(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskTrace_TaskWaitEnd_m91F3B2DD1C60F083C55268FDF16ACB1EF84FABBD (int32_t ___0_OriginatingTaskSchedulerID, int32_t ___1_OriginatingTaskID, int32_t ___2_TaskID, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* V_0 = NULL;
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_0 = ((TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_StaticFields*)il2cpp_codegen_static_fields_for(TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var))->___s_callbacks_0;
V_0 = L_0;
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_1 = V_0;
if (L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_2 = V_0;
int32_t L_3 = ___0_OriginatingTaskSchedulerID;
int32_t L_4 = ___1_OriginatingTaskID;
int32_t L_5 = ___2_TaskID;
NullCheck(L_2);
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(7 /* System.Void Internal.Runtime.Augments.TaskTraceCallbacks::TaskWaitEnd(System.Int32,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5);
return;
}
}
// System.Void Internal.Threading.Tasks.Tracing.TaskTrace::TaskScheduled(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskTrace_TaskScheduled_mCBE39BCE0286957A871B335546EA589A61B156BF (int32_t ___0_OriginatingTaskSchedulerID, int32_t ___1_OriginatingTaskID, int32_t ___2_TaskID, int32_t ___3_CreatingTaskID, int32_t ___4_TaskCreationOptions, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* V_0 = NULL;
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_0 = ((TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_StaticFields*)il2cpp_codegen_static_fields_for(TaskTrace_t2E91382D9ADD6AD4240AF014E8A53FEB5FBBD3EC_il2cpp_TypeInfo_var))->___s_callbacks_0;
V_0 = L_0;
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_1 = V_0;
if (L_1)
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
TaskTraceCallbacks_tD17B8D9DCCE22E4D578E7A307A6154CE1EA12B71* L_2 = V_0;
int32_t L_3 = ___0_OriginatingTaskSchedulerID;
int32_t L_4 = ___1_OriginatingTaskID;
int32_t L_5 = ___2_TaskID;
int32_t L_6 = ___3_CreatingTaskID;
int32_t L_7 = ___4_TaskCreationOptions;
NullCheck(L_2);
VirtualActionInvoker5< int32_t, int32_t, int32_t, int32_t, int32_t >::Invoke(8 /* System.Void Internal.Runtime.Augments.TaskTraceCallbacks::TaskScheduled(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5, L_6, L_7);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Internal.Runtime.Augments.RuntimeAugments::ReportUnhandledException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeAugments_ReportUnhandledException_mDA1D67D35DB365A65C77E47322A93D2FD78BE1CE (Exception_t* ___0_exception, const RuntimeMethod* method)
{
{
Exception_t* L_0 = ___0_exception;
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_1;
L_1 = ExceptionDispatchInfo_Capture_mC1C1C30D83DC04B2B7813DFCB67D07CCD4909803(L_0, NULL);
NullCheck(L_1);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_1, NULL);
return;
}
}
// Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks Internal.Runtime.Augments.RuntimeAugments::get_Callbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* RuntimeAugments_get_Callbacks_m82131CEA224DE6C92656F42582BFCB5D6D66D910 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var);
ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* L_0 = ((RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var))->___s_reflectionExecutionDomainCallbacks_0;
return L_0;
}
}
// System.Void Internal.Runtime.Augments.RuntimeAugments::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeAugments__cctor_mA360A573A98645848B7B929EFAD1B6A86693C03B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* L_0 = (ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC*)il2cpp_codegen_object_new(ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC_il2cpp_TypeInfo_var);
NullCheck(L_0);
ReflectionExecutionDomainCallbacks__ctor_mD35D07DCAD928708AE062BB0751223E052A672AC(L_0, NULL);
((RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var))->___s_reflectionExecutionDomainCallbacks_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeAugments_t3F19AB581B9319D789ED226BB7DCAD90C7A0BB14_il2cpp_TypeInfo_var))->___s_reflectionExecutionDomainCallbacks_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.Exception Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks::CreateMissingMetadataException(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ReflectionExecutionDomainCallbacks_CreateMissingMetadataException_mC718D8970C161B6D12F16397D38E617347CB9DF1 (ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* __this, Type_t* ___0_attributeType, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4* L_0 = (MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4*)il2cpp_codegen_object_new(MissingMetadataException_tA21BA3C1DACB682E66F4D285973CACA72E0A77B4_il2cpp_TypeInfo_var);
NullCheck(L_0);
MissingMetadataException__ctor_m400B8CFE17F45DF30DC27F70D329C132BF978F3B(L_0, NULL);
return L_0;
}
}
// System.Void Internal.Runtime.Augments.ReflectionExecutionDomainCallbacks::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionExecutionDomainCallbacks__ctor_mD35D07DCAD928708AE062BB0751223E052A672AC (ReflectionExecutionDomainCallbacks_t041256B96E629D0A3804BDC58BC3507FA140C1CC* __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 Internal.Runtime.Augments.RuntimeThread::.ctor(System.Threading.Thread)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeThread__ctor_m3E4B5BFB1292F2E43AE242D46AAD7E5BF3357B86 (RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D* __this, Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___0_t, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_0 = ___0_t;
__this->___thread_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___thread_1), (void*)L_0);
return;
}
}
// Internal.Runtime.Augments.RuntimeThread Internal.Runtime.Augments.RuntimeThread::Create(System.Threading.ParameterizedThreadStart,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D* RuntimeThread_Create_mE9C9FB63063DC026F336A4815A06D685430734D4 (ParameterizedThreadStart_tAA8FDC4E868056A7CB7CB2C4AB4986039B1D91E9* ___0_start, int32_t ___1_maxStackSize, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ParameterizedThreadStart_tAA8FDC4E868056A7CB7CB2C4AB4986039B1D91E9* L_0 = ___0_start;
int32_t L_1 = ___1_maxStackSize;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2 = (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)il2cpp_codegen_object_new(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
NullCheck(L_2);
Thread__ctor_m107278C895F976B9A23F48EE89D60D7C70C1AEA6(L_2, L_0, L_1, NULL);
RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D* L_3 = (RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D*)il2cpp_codegen_object_new(RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_il2cpp_TypeInfo_var);
NullCheck(L_3);
RuntimeThread__ctor_m3E4B5BFB1292F2E43AE242D46AAD7E5BF3357B86(L_3, L_2, NULL);
return L_3;
}
}
// System.Void Internal.Runtime.Augments.RuntimeThread::set_IsBackground(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeThread_set_IsBackground_m2C5DAC3C5BBA22ED48EF799EADF068BEB1BF01F8 (RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D* __this, bool ___0_value, const RuntimeMethod* method)
{
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_0 = __this->___thread_1;
bool L_1 = ___0_value;
NullCheck(L_0);
Thread_set_IsBackground_m45F00BD4C46F9B8A7C46A20A170B22BABB8FBA30(L_0, L_1, NULL);
return;
}
}
// System.Void Internal.Runtime.Augments.RuntimeThread::Start(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeThread_Start_m59C39517062E672ADE66821A93BC483D1915F71C (RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D* __this, RuntimeObject* ___0_state, const RuntimeMethod* method)
{
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_0 = __this->___thread_1;
RuntimeObject* L_1 = ___0_state;
NullCheck(L_0);
Thread_Start_m64E3F27883C3CCCE7209F5D2BD268A33D4C71566(L_0, L_1, NULL);
return;
}
}
// System.Void Internal.Runtime.Augments.RuntimeThread::Sleep(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeThread_Sleep_m045B45EF6673E55D7E51157C29FE6D05A2D6CBDA (int32_t ___0_millisecondsTimeout, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_millisecondsTimeout;
Thread_Sleep_m71DE163765BF465EC4A0163F2ED4D43143094549(L_0, NULL);
return;
}
}
// System.Boolean Internal.Runtime.Augments.RuntimeThread::Yield()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeThread_Yield_mB4903E8A1790112F3F7120F5AA5BEB837187E3BB (const RuntimeMethod* method)
{
{
bool L_0;
L_0 = Thread_Yield_m6610C7321B94ED0193582455A7606D0EAA705E9E(NULL);
return L_0;
}
}
// System.Boolean Internal.Runtime.Augments.RuntimeThread::SpinWait(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeThread_SpinWait_m207B0ED3CE280136135B45281FB19581B44015F3 (int32_t ___0_iterations, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_iterations;
Thread_SpinWait_mC14652A66AA1BF72ADC7E0BF702E9F0B8D7B64D7(L_0, NULL);
return (bool)1;
}
}
// System.Int32 Internal.Runtime.Augments.RuntimeThread::GetCurrentProcessorId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeThread_GetCurrentProcessorId_m4EFEA89BDAA7AF08C212CC402D2AFE63CA882BF8 (const RuntimeMethod* method)
{
{
return 1;
}
}
// System.Void Internal.Runtime.Augments.RuntimeThread::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeThread__cctor_mCF117C5A55DF8660DCB1B30FA929158EEA07033B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_il2cpp_TypeInfo_var))->___OptimalMaxSpinWaitsPerSpinIteration_0 = ((int32_t)64);
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.String::EqualsHelper(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7 (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strA;
NullCheck(L_0);
Il2CppChar* L_1;
L_1 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_0, NULL);
uint8_t* L_2;
L_2 = il2cpp_unsafe_as_ref<uint8_t>(L_1);
String_t* L_3 = ___1_strB;
NullCheck(L_3);
Il2CppChar* L_4;
L_4 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_3, NULL);
uint8_t* L_5;
L_5 = il2cpp_unsafe_as_ref<uint8_t>(L_4);
String_t* L_6 = ___0_strA;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
bool L_8;
L_8 = SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E(L_2, L_5, ((int64_t)il2cpp_codegen_multiply(((int64_t)L_7), ((int64_t)2))), NULL);
return L_8;
}
}
// System.Int32 System.String::CompareOrdinalHelper(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinalHelper_mD7287520C026662FDDC0BEADFAA38A63A42D8456 (String_t* ___0_strA, int32_t ___1_indexA, int32_t ___2_countA, String_t* ___3_strB, int32_t ___4_indexB, int32_t ___5_countB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strA;
NullCheck(L_0);
Il2CppChar* L_1;
L_1 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_0, NULL);
int32_t L_2 = ___1_indexA;
Il2CppChar* L_3;
L_3 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_1, L_2);
int32_t L_4 = ___2_countA;
String_t* L_5 = ___3_strB;
NullCheck(L_5);
Il2CppChar* L_6;
L_6 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_5, NULL);
int32_t L_7 = ___4_indexB;
Il2CppChar* L_8;
L_8 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_6, L_7);
int32_t L_9 = ___5_countB;
int32_t L_10;
L_10 = SpanHelpers_SequenceCompareTo_mD219EEDAF772A34D5C68FFBC11A1EDB8C92662A0(L_3, L_4, L_8, L_9, NULL);
return L_10;
}
}
// System.Int32 System.String::CompareOrdinalHelper(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinalHelper_m4E24CDC88C4FA94C5038E133148E69951E16EEBB (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
Il2CppChar* V_5 = NULL;
{
String_t* L_0 = ___0_strA;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
String_t* L_2 = ___1_strB;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_1, L_3, NULL);
V_0 = L_4;
String_t* L_5 = ___0_strA;
NullCheck(L_5);
Il2CppChar* L_6 = (&L_5->____firstChar_5);
V_1 = L_6;
Il2CppChar* L_7 = V_1;
String_t* L_8 = ___1_strB;
NullCheck(L_8);
Il2CppChar* L_9 = (&L_8->____firstChar_5);
V_3 = L_9;
Il2CppChar* L_10 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_10);
V_4 = (Il2CppChar*)((uintptr_t)L_7);
Il2CppChar* L_11 = V_2;
V_5 = L_11;
Il2CppChar* L_12 = V_4;
int32_t L_13 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, 2)));
Il2CppChar* L_14 = V_5;
int32_t L_15 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, 2)));
if ((!(((uint32_t)L_13) == ((uint32_t)L_15))))
{
goto IL_011e;
}
}
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_16, 2));
Il2CppChar* L_17 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
Il2CppChar* L_18 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_0099;
}
IL_0051:
{
Il2CppChar* L_19 = V_4;
int64_t L_20 = *((int64_t*)L_19);
Il2CppChar* L_21 = V_5;
int64_t L_22 = *((int64_t*)L_21);
if ((!(((uint64_t)L_20) == ((uint64_t)L_22))))
{
goto IL_00f4;
}
}
{
Il2CppChar* L_23 = V_4;
int64_t L_24 = *((int64_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2)))));
Il2CppChar* L_25 = V_5;
int64_t L_26 = *((int64_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2)))));
if ((!(((uint64_t)L_24) == ((uint64_t)L_26))))
{
goto IL_00e2;
}
}
{
Il2CppChar* L_27 = V_4;
int64_t L_28 = *((int64_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)8), 2)))));
Il2CppChar* L_29 = V_5;
int64_t L_30 = *((int64_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_29, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)8), 2)))));
if ((!(((uint64_t)L_28) == ((uint64_t)L_30))))
{
goto IL_00d0;
}
}
{
int32_t L_31 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_31, ((int32_t)12)));
Il2CppChar* L_32 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)12)), 2))));
Il2CppChar* L_33 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)12)), 2))));
}
IL_0099:
{
int32_t L_34 = V_0;
if ((((int32_t)L_34) >= ((int32_t)((int32_t)12))))
{
goto IL_0051;
}
}
{
goto IL_00be;
}
IL_00a0:
{
Il2CppChar* L_35 = V_4;
int32_t L_36 = *((int32_t*)L_35);
Il2CppChar* L_37 = V_5;
int32_t L_38 = *((int32_t*)L_37);
if ((!(((uint32_t)L_36) == ((uint32_t)L_38))))
{
goto IL_010e;
}
}
{
int32_t L_39 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_39, 2));
Il2CppChar* L_40 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_40, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
Il2CppChar* L_41 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_41, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
}
IL_00be:
{
int32_t L_42 = V_0;
if ((((int32_t)L_42) > ((int32_t)0)))
{
goto IL_00a0;
}
}
{
String_t* L_43 = ___0_strA;
NullCheck(L_43);
int32_t L_44;
L_44 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_43, NULL);
String_t* L_45 = ___1_strB;
NullCheck(L_45);
int32_t L_46;
L_46 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_45, NULL);
return ((int32_t)il2cpp_codegen_subtract(L_44, L_46));
}
IL_00d0:
{
Il2CppChar* L_47 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))));
Il2CppChar* L_48 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_48, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))));
}
IL_00e2:
{
Il2CppChar* L_49 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))));
Il2CppChar* L_50 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_50, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))));
}
IL_00f4:
{
Il2CppChar* L_51 = V_4;
int32_t L_52 = *((int32_t*)L_51);
Il2CppChar* L_53 = V_5;
int32_t L_54 = *((int32_t*)L_53);
if ((!(((uint32_t)L_52) == ((uint32_t)L_54))))
{
goto IL_010e;
}
}
{
Il2CppChar* L_55 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_55, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
Il2CppChar* L_56 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_56, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
}
IL_010e:
{
Il2CppChar* L_57 = V_4;
int32_t L_58 = *((uint16_t*)L_57);
Il2CppChar* L_59 = V_5;
int32_t L_60 = *((uint16_t*)L_59);
if ((((int32_t)L_58) == ((int32_t)L_60)))
{
goto IL_011e;
}
}
{
Il2CppChar* L_61 = V_4;
int32_t L_62 = *((uint16_t*)L_61);
Il2CppChar* L_63 = V_5;
int32_t L_64 = *((uint16_t*)L_63);
return ((int32_t)il2cpp_codegen_subtract(L_62, L_64));
}
IL_011e:
{
Il2CppChar* L_65 = V_4;
int32_t L_66 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, 2)));
Il2CppChar* L_67 = V_5;
int32_t L_68 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_67, 2)));
return ((int32_t)il2cpp_codegen_subtract(L_66, L_68));
}
}
// System.Int32 System.String::Compare(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mDD60C5A044BA55A136F7B84B48BBD99353F4EB4C (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strA;
String_t* L_1 = ___1_strB;
int32_t L_2;
L_2 = String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009(L_0, L_1, 0, NULL);
return L_2;
}
}
// System.Int32 System.String::Compare(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009 (String_t* ___0_strA, String_t* ___1_strB, int32_t ___2_comparisonType, 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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_strA;
String_t* L_1 = ___1_strB;
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_000c;
}
}
{
int32_t L_2 = ___2_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_2, NULL);
return 0;
}
IL_000c:
{
String_t* L_3 = ___0_strA;
if (L_3)
{
goto IL_0017;
}
}
{
int32_t L_4 = ___2_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_4, NULL);
return (-1);
}
IL_0017:
{
String_t* L_5 = ___1_strB;
if (L_5)
{
goto IL_0022;
}
}
{
int32_t L_6 = ___2_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_6, NULL);
return 1;
}
IL_0022:
{
int32_t L_7 = ___2_comparisonType;
switch (L_7)
{
case 0:
{
goto IL_0042;
}
case 1:
{
goto IL_0055;
}
case 2:
{
goto IL_0068;
}
case 3:
{
goto IL_0076;
}
case 4:
{
goto IL_0084;
}
case 5:
{
goto IL_00a8;
}
}
}
{
goto IL_00be;
}
IL_0042:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
L_8 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_8);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_9;
L_9 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_8);
String_t* L_10 = ___0_strA;
String_t* L_11 = ___1_strB;
NullCheck(L_9);
int32_t L_12;
L_12 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_9, L_10, L_11, 0);
return L_12;
}
IL_0055:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13;
L_13 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_13);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_14;
L_14 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_13);
String_t* L_15 = ___0_strA;
String_t* L_16 = ___1_strB;
NullCheck(L_14);
int32_t L_17;
L_17 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_14, L_15, L_16, 1);
return L_17;
}
IL_0068:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_18 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_19 = ___0_strA;
String_t* L_20 = ___1_strB;
NullCheck(L_18);
int32_t L_21;
L_21 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_18, L_19, L_20, 0);
return L_21;
}
IL_0076:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_22 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_23 = ___0_strA;
String_t* L_24 = ___1_strB;
NullCheck(L_22);
int32_t L_25;
L_25 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_22, L_23, L_24, 1);
return L_25;
}
IL_0084:
{
String_t* L_26 = ___0_strA;
NullCheck(L_26);
Il2CppChar L_27 = L_26->____firstChar_5;
String_t* L_28 = ___1_strB;
NullCheck(L_28);
Il2CppChar L_29 = L_28->____firstChar_5;
if ((((int32_t)L_27) == ((int32_t)L_29)))
{
goto IL_00a0;
}
}
{
String_t* L_30 = ___0_strA;
NullCheck(L_30);
Il2CppChar L_31 = L_30->____firstChar_5;
String_t* L_32 = ___1_strB;
NullCheck(L_32);
Il2CppChar L_33 = L_32->____firstChar_5;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_33));
}
IL_00a0:
{
String_t* L_34 = ___0_strA;
String_t* L_35 = ___1_strB;
int32_t L_36;
L_36 = String_CompareOrdinalHelper_m4E24CDC88C4FA94C5038E133148E69951E16EEBB(L_34, L_35, NULL);
return L_36;
}
IL_00a8:
{
String_t* L_37 = ___0_strA;
String_t* L_38 = ___0_strA;
NullCheck(L_38);
int32_t L_39;
L_39 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_38, NULL);
String_t* L_40 = ___1_strB;
String_t* L_41 = ___1_strB;
NullCheck(L_41);
int32_t L_42;
L_42 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_41, NULL);
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
int32_t L_43;
L_43 = CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4(L_37, 0, L_39, L_40, 0, L_42, NULL);
return L_43;
}
IL_00be:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_44 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_44);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_44, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009_RuntimeMethod_var)));
}
}
// System.Int32 System.String::Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m68FBA6075A0142439B0249D884863356D99090CF (String_t* ___0_strA, int32_t ___1_indexA, String_t* ___2_strB, int32_t ___3_indexB, int32_t ___4_length, int32_t ___5_comparisonType, 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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* G_B14_0 = NULL;
String_t* G_B20_0 = NULL;
{
int32_t L_0 = ___5_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_0, NULL);
String_t* L_1 = ___0_strA;
if (!L_1)
{
goto IL_000d;
}
}
{
String_t* L_2 = ___2_strB;
if (L_2)
{
goto IL_001a;
}
}
IL_000d:
{
String_t* L_3 = ___0_strA;
String_t* L_4 = ___2_strB;
if ((!(((RuntimeObject*)(String_t*)L_3) == ((RuntimeObject*)(String_t*)L_4))))
{
goto IL_0013;
}
}
{
return 0;
}
IL_0013:
{
String_t* L_5 = ___0_strA;
if (!L_5)
{
goto IL_0018;
}
}
{
return 1;
}
IL_0018:
{
return (-1);
}
IL_001a:
{
int32_t L_6 = ___4_length;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_002f;
}
}
{
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*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7C26512813CDF9F1A470756AB50D2C3272536A90)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Compare_m68FBA6075A0142439B0249D884863356D99090CF_RuntimeMethod_var)));
}
IL_002f:
{
int32_t L_8 = ___1_indexA;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_0037;
}
}
{
int32_t L_9 = ___3_indexB;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0052;
}
}
IL_0037:
{
int32_t L_10 = ___1_indexA;
if ((((int32_t)L_10) < ((int32_t)0)))
{
goto IL_0042;
}
}
{
G_B14_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92559341F2ABCC1B4508737CEFF7E200AAFFDBAF));
goto IL_0047;
}
IL_0042:
{
G_B14_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF2916BA870AAD63B1B4F4894D7E1D3D75B67C40));
}
IL_0047:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_11 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_11, G_B14_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Compare_m68FBA6075A0142439B0249D884863356D99090CF_RuntimeMethod_var)));
}
IL_0052:
{
String_t* L_12 = ___0_strA;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
int32_t L_14 = ___1_indexA;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_13, L_14))) < ((int32_t)0)))
{
goto IL_0068;
}
}
{
String_t* L_15 = ___2_strB;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
int32_t L_17 = ___3_indexB;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_16, L_17))) >= ((int32_t)0)))
{
goto IL_008a;
}
}
IL_0068:
{
String_t* L_18 = ___0_strA;
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
int32_t L_20 = ___1_indexA;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_19, L_20))) < ((int32_t)0)))
{
goto IL_007a;
}
}
{
G_B20_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92559341F2ABCC1B4508737CEFF7E200AAFFDBAF));
goto IL_007f;
}
IL_007a:
{
G_B20_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF2916BA870AAD63B1B4F4894D7E1D3D75B67C40));
}
IL_007f:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_21 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_21);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_21, G_B20_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Compare_m68FBA6075A0142439B0249D884863356D99090CF_RuntimeMethod_var)));
}
IL_008a:
{
int32_t L_22 = ___4_length;
if (!L_22)
{
goto IL_0096;
}
}
{
String_t* L_23 = ___0_strA;
String_t* L_24 = ___2_strB;
if ((!(((RuntimeObject*)(String_t*)L_23) == ((RuntimeObject*)(String_t*)L_24))))
{
goto IL_0098;
}
}
{
int32_t L_25 = ___1_indexA;
int32_t L_26 = ___3_indexB;
if ((!(((uint32_t)L_25) == ((uint32_t)L_26))))
{
goto IL_0098;
}
}
IL_0096:
{
return 0;
}
IL_0098:
{
int32_t L_27 = ___4_length;
String_t* L_28 = ___0_strA;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
int32_t L_30 = ___1_indexA;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_31;
L_31 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_27, ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
V_0 = L_31;
int32_t L_32 = ___4_length;
String_t* L_33 = ___2_strB;
NullCheck(L_33);
int32_t L_34;
L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_33, NULL);
int32_t L_35 = ___3_indexB;
int32_t L_36;
L_36 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_32, ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
V_1 = L_36;
int32_t L_37 = ___5_comparisonType;
switch (L_37)
{
case 0:
{
goto IL_00d9;
}
case 1:
{
goto IL_00f0;
}
case 2:
{
goto IL_0107;
}
case 3:
{
goto IL_0119;
}
case 4:
{
goto IL_012b;
}
case 5:
{
goto IL_0137;
}
}
}
{
goto IL_0143;
}
IL_00d9:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_38;
L_38 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_38);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_39;
L_39 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_38);
String_t* L_40 = ___0_strA;
int32_t L_41 = ___1_indexA;
int32_t L_42 = V_0;
String_t* L_43 = ___2_strB;
int32_t L_44 = ___3_indexB;
int32_t L_45 = V_1;
NullCheck(L_39);
int32_t L_46;
L_46 = VirtualFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_39, L_40, L_41, L_42, L_43, L_44, L_45, 0);
return L_46;
}
IL_00f0:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_47;
L_47 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_47);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_48;
L_48 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_47);
String_t* L_49 = ___0_strA;
int32_t L_50 = ___1_indexA;
int32_t L_51 = V_0;
String_t* L_52 = ___2_strB;
int32_t L_53 = ___3_indexB;
int32_t L_54 = V_1;
NullCheck(L_48);
int32_t L_55;
L_55 = VirtualFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_48, L_49, L_50, L_51, L_52, L_53, L_54, 1);
return L_55;
}
IL_0107:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_56 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_57 = ___0_strA;
int32_t L_58 = ___1_indexA;
int32_t L_59 = V_0;
String_t* L_60 = ___2_strB;
int32_t L_61 = ___3_indexB;
int32_t L_62 = V_1;
NullCheck(L_56);
int32_t L_63;
L_63 = VirtualFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_56, L_57, L_58, L_59, L_60, L_61, L_62, 0);
return L_63;
}
IL_0119:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_64 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_65 = ___0_strA;
int32_t L_66 = ___1_indexA;
int32_t L_67 = V_0;
String_t* L_68 = ___2_strB;
int32_t L_69 = ___3_indexB;
int32_t L_70 = V_1;
NullCheck(L_64);
int32_t L_71;
L_71 = VirtualFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_64, L_65, L_66, L_67, L_68, L_69, L_70, 1);
return L_71;
}
IL_012b:
{
String_t* L_72 = ___0_strA;
int32_t L_73 = ___1_indexA;
int32_t L_74 = V_0;
String_t* L_75 = ___2_strB;
int32_t L_76 = ___3_indexB;
int32_t L_77 = V_1;
int32_t L_78;
L_78 = String_CompareOrdinalHelper_mD7287520C026662FDDC0BEADFAA38A63A42D8456_inline(L_72, L_73, L_74, L_75, L_76, L_77, NULL);
return L_78;
}
IL_0137:
{
String_t* L_79 = ___0_strA;
int32_t L_80 = ___1_indexA;
int32_t L_81 = V_0;
String_t* L_82 = ___2_strB;
int32_t L_83 = ___3_indexB;
int32_t L_84 = V_1;
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
int32_t L_85;
L_85 = CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4(L_79, L_80, L_81, L_82, L_83, L_84, NULL);
return L_85;
}
IL_0143:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_86 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_86);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_86, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_86, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Compare_m68FBA6075A0142439B0249D884863356D99090CF_RuntimeMethod_var)));
}
}
// System.Int32 System.String::CompareOrdinal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_mC6F612DEA1F7B3BF24A44C79D17AF7F8C29C9D3C (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strA;
String_t* L_1 = ___1_strB;
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_0006;
}
}
{
return 0;
}
IL_0006:
{
String_t* L_2 = ___0_strA;
if (L_2)
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
String_t* L_3 = ___1_strB;
if (L_3)
{
goto IL_0010;
}
}
{
return 1;
}
IL_0010:
{
String_t* L_4 = ___0_strA;
NullCheck(L_4);
Il2CppChar L_5 = L_4->____firstChar_5;
String_t* L_6 = ___1_strB;
NullCheck(L_6);
Il2CppChar L_7 = L_6->____firstChar_5;
if ((((int32_t)L_5) == ((int32_t)L_7)))
{
goto IL_002c;
}
}
{
String_t* L_8 = ___0_strA;
NullCheck(L_8);
Il2CppChar L_9 = L_8->____firstChar_5;
String_t* L_10 = ___1_strB;
NullCheck(L_10);
Il2CppChar L_11 = L_10->____firstChar_5;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_11));
}
IL_002c:
{
String_t* L_12 = ___0_strA;
String_t* L_13 = ___1_strB;
int32_t L_14;
L_14 = String_CompareOrdinalHelper_m4E24CDC88C4FA94C5038E133148E69951E16EEBB(L_12, L_13, NULL);
return L_14;
}
}
// System.Int32 System.String::CompareOrdinal(System.ReadOnlySpan`1<System.Char>,System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m1AB0D7CC2C21E8A751BBC5CF68CC0E2826ACEA2B (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_strA, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_strB, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
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);
s_Il2CppMethodInitialized = true;
}
{
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_strA;
Il2CppChar* L_1;
L_1 = MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A(L_0, MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var);
int32_t L_2;
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_strA), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___1_strB;
Il2CppChar* L_4;
L_4 = MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A(L_3, MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var);
int32_t L_5;
L_5 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_strB), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
int32_t L_6;
L_6 = SpanHelpers_SequenceCompareTo_mD219EEDAF772A34D5C68FFBC11A1EDB8C92662A0(L_1, L_2, L_4, L_5, NULL);
return L_6;
}
}
// System.Int32 System.String::CompareOrdinal(System.String,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m8940CFAE90021ED8DA3F2DF8226941C9EEB2E32D (String_t* ___0_strA, int32_t ___1_indexA, String_t* ___2_strB, int32_t ___3_indexB, int32_t ___4_length, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* G_B14_0 = NULL;
String_t* G_B20_0 = NULL;
{
String_t* L_0 = ___0_strA;
if (!L_0)
{
goto IL_0006;
}
}
{
String_t* L_1 = ___2_strB;
if (L_1)
{
goto IL_0013;
}
}
IL_0006:
{
String_t* L_2 = ___0_strA;
String_t* L_3 = ___2_strB;
if ((!(((RuntimeObject*)(String_t*)L_2) == ((RuntimeObject*)(String_t*)L_3))))
{
goto IL_000c;
}
}
{
return 0;
}
IL_000c:
{
String_t* L_4 = ___0_strA;
if (!L_4)
{
goto IL_0011;
}
}
{
return 1;
}
IL_0011:
{
return (-1);
}
IL_0013:
{
int32_t L_5 = ___4_length;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0028;
}
}
{
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*)&_stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CompareOrdinal_m8940CFAE90021ED8DA3F2DF8226941C9EEB2E32D_RuntimeMethod_var)));
}
IL_0028:
{
int32_t L_7 = ___1_indexA;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0030;
}
}
{
int32_t L_8 = ___3_indexB;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_004b;
}
}
IL_0030:
{
int32_t L_9 = ___1_indexA;
if ((((int32_t)L_9) < ((int32_t)0)))
{
goto IL_003b;
}
}
{
G_B14_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92559341F2ABCC1B4508737CEFF7E200AAFFDBAF));
goto IL_0040;
}
IL_003b:
{
G_B14_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF2916BA870AAD63B1B4F4894D7E1D3D75B67C40));
}
IL_0040:
{
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, G_B14_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CompareOrdinal_m8940CFAE90021ED8DA3F2DF8226941C9EEB2E32D_RuntimeMethod_var)));
}
IL_004b:
{
int32_t L_11 = ___4_length;
String_t* L_12 = ___0_strA;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
int32_t L_14 = ___1_indexA;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_15;
L_15 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_11, ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), NULL);
V_0 = L_15;
int32_t L_16 = ___4_length;
String_t* L_17 = ___2_strB;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
int32_t L_19 = ___3_indexB;
int32_t L_20;
L_20 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_16, ((int32_t)il2cpp_codegen_subtract(L_18, L_19)), NULL);
V_1 = L_20;
int32_t L_21 = V_0;
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0073;
}
}
{
int32_t L_22 = V_1;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_008e;
}
}
IL_0073:
{
int32_t L_23 = V_0;
if ((((int32_t)L_23) < ((int32_t)0)))
{
goto IL_007e;
}
}
{
G_B20_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92559341F2ABCC1B4508737CEFF7E200AAFFDBAF));
goto IL_0083;
}
IL_007e:
{
G_B20_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF2916BA870AAD63B1B4F4894D7E1D3D75B67C40));
}
IL_0083:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_24 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_24);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_24, G_B20_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CompareOrdinal_m8940CFAE90021ED8DA3F2DF8226941C9EEB2E32D_RuntimeMethod_var)));
}
IL_008e:
{
int32_t L_25 = ___4_length;
if (!L_25)
{
goto IL_009a;
}
}
{
String_t* L_26 = ___0_strA;
String_t* L_27 = ___2_strB;
if ((!(((RuntimeObject*)(String_t*)L_26) == ((RuntimeObject*)(String_t*)L_27))))
{
goto IL_009c;
}
}
{
int32_t L_28 = ___1_indexA;
int32_t L_29 = ___3_indexB;
if ((!(((uint32_t)L_28) == ((uint32_t)L_29))))
{
goto IL_009c;
}
}
IL_009a:
{
return 0;
}
IL_009c:
{
String_t* L_30 = ___0_strA;
int32_t L_31 = ___1_indexA;
int32_t L_32 = V_0;
String_t* L_33 = ___2_strB;
int32_t L_34 = ___3_indexB;
int32_t L_35 = V_1;
int32_t L_36;
L_36 = String_CompareOrdinalHelper_mD7287520C026662FDDC0BEADFAA38A63A42D8456_inline(L_30, L_31, L_32, L_33, L_34, L_35, NULL);
return L_36;
}
}
// System.Int32 System.String::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareTo_mB3C343642248A69BB1250CFAD23C40436858F38E (String_t* __this, RuntimeObject* ___0_value, 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* V_0 = NULL;
{
RuntimeObject* L_0 = ___0_value;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject* L_1 = ___0_value;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (L_2)
{
goto IL_001a;
}
}
{
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_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF3843BE796C015B3DD186C8C01C34B6AFA715E0)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CompareTo_mB3C343642248A69BB1250CFAD23C40436858F38E_RuntimeMethod_var)));
}
IL_001a:
{
String_t* L_4 = V_0;
int32_t L_5;
L_5 = String_CompareTo_m32A3DFBEA443A4091053D53825DBB76E6EAFECCF(__this, L_4, NULL);
return L_5;
}
}
// System.Int32 System.String::CompareTo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareTo_m32A3DFBEA443A4091053D53825DBB76E6EAFECCF (String_t* __this, String_t* ___0_strB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strB;
int32_t L_1;
L_1 = String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009(__this, L_0, 0, NULL);
return L_1;
}
}
// System.Boolean System.String::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC (String_t* __this, String_t* ___0_value, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
bool L_1;
L_1 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(__this, L_0, 0, NULL);
return L_1;
}
}
// System.Boolean System.String::EndsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, 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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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*)&String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___0_value;
if ((!(((RuntimeObject*)(String_t*)__this) == ((RuntimeObject*)(String_t*)L_2))))
{
goto IL_001a;
}
}
{
int32_t L_3 = ___1_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_3, NULL);
return (bool)1;
}
IL_001a:
{
String_t* L_4 = ___0_value;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
if (L_5)
{
goto IL_002a;
}
}
{
int32_t L_6 = ___1_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_6, NULL);
return (bool)1;
}
IL_002a:
{
int32_t L_7 = ___1_comparisonType;
switch (L_7)
{
case 0:
{
goto IL_004d;
}
case 1:
{
goto IL_0060;
}
case 2:
{
goto IL_0073;
}
case 3:
{
goto IL_0081;
}
case 4:
{
goto IL_008f;
}
case 5:
{
goto IL_00c4;
}
}
}
{
goto IL_00f9;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
L_8 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_8);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_9;
L_9 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_8);
String_t* L_10 = ___0_value;
NullCheck(L_9);
bool L_11;
L_11 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(10 /* System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) */, L_9, __this, L_10, 0);
return L_11;
}
IL_0060:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_12);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_13;
L_13 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_12);
String_t* L_14 = ___0_value;
NullCheck(L_13);
bool L_15;
L_15 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(10 /* System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) */, L_13, __this, L_14, 1);
return L_15;
}
IL_0073:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_16 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_17 = ___0_value;
NullCheck(L_16);
bool L_18;
L_18 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(10 /* System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) */, L_16, __this, L_17, 0);
return L_18;
}
IL_0081:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_19 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_20 = ___0_value;
NullCheck(L_19);
bool L_21;
L_21 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(10 /* System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) */, L_19, __this, L_20, 1);
return L_21;
}
IL_008f:
{
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_23 = ___0_value;
NullCheck(L_23);
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL);
if ((((int32_t)L_22) < ((int32_t)L_24)))
{
goto IL_00c2;
}
}
{
int32_t L_25;
L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_26 = ___0_value;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
String_t* L_28 = ___0_value;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
String_t* L_30 = ___0_value;
String_t* L_31 = ___0_value;
NullCheck(L_31);
int32_t L_32;
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
int32_t L_33;
L_33 = String_CompareOrdinalHelper_mD7287520C026662FDDC0BEADFAA38A63A42D8456_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_25, L_27)), L_29, L_30, 0, L_32, NULL);
return (bool)((((int32_t)L_33) == ((int32_t)0))? 1 : 0);
}
IL_00c2:
{
return (bool)0;
}
IL_00c4:
{
int32_t L_34;
L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_35 = ___0_value;
NullCheck(L_35);
int32_t L_36;
L_36 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_35, NULL);
if ((((int32_t)L_34) < ((int32_t)L_36)))
{
goto IL_00f7;
}
}
{
int32_t L_37;
L_37 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_38 = ___0_value;
NullCheck(L_38);
int32_t L_39;
L_39 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_38, NULL);
String_t* L_40 = ___0_value;
NullCheck(L_40);
int32_t L_41;
L_41 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_40, NULL);
String_t* L_42 = ___0_value;
String_t* L_43 = ___0_value;
NullCheck(L_43);
int32_t L_44;
L_44 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_43, NULL);
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
int32_t L_45;
L_45 = CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4(__this, ((int32_t)il2cpp_codegen_subtract(L_37, L_39)), L_41, L_42, 0, L_44, NULL);
return (bool)((((int32_t)L_45) == ((int32_t)0))? 1 : 0);
}
IL_00f7:
{
return (bool)0;
}
IL_00f9:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_46 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_46);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_46, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075_RuntimeMethod_var)));
}
}
// 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)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
int32_t L_2 = V_0;
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), NULL);
Il2CppChar L_4 = ___0_value;
return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
}
IL_0017:
{
return (bool)0;
}
}
// System.Boolean System.String::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m77E4D008515E887793D190EA95C4E06EA97DD5C2 (String_t* __this, RuntimeObject* ___0_obj, 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* V_0 = NULL;
{
RuntimeObject* L_0 = ___0_obj;
if ((!(((RuntimeObject*)(String_t*)__this) == ((RuntimeObject*)(RuntimeObject*)L_0))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject* L_1 = ___0_obj;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (L_2)
{
goto IL_0012;
}
}
{
return (bool)0;
}
IL_0012:
{
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_4 = V_0;
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_0022;
}
}
{
return (bool)0;
}
IL_0022:
{
String_t* L_6 = V_0;
bool L_7;
L_7 = String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline(__this, L_6, NULL);
return L_7;
}
}
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___0_value, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
if ((!(((RuntimeObject*)(String_t*)__this) == ((RuntimeObject*)(String_t*)L_0))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
String_t* L_1 = ___0_value;
if (L_1)
{
goto IL_000b;
}
}
{
return (bool)0;
}
IL_000b:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_3 = ___0_value;
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_001b;
}
}
{
return (bool)0;
}
IL_001b:
{
String_t* L_5 = ___0_value;
bool L_6;
L_6 = String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline(__this, L_5, NULL);
return L_6;
}
}
// System.Boolean System.String::Equals(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m7BDFC0B951005B9DC2BAED464AFE68FF7E9ACE5A (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, 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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_value;
if ((!(((RuntimeObject*)(String_t*)__this) == ((RuntimeObject*)(String_t*)L_0))))
{
goto IL_000c;
}
}
{
int32_t L_1 = ___1_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_1, NULL);
return (bool)1;
}
IL_000c:
{
String_t* L_2 = ___0_value;
if (L_2)
{
goto IL_0017;
}
}
{
int32_t L_3 = ___1_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_3, NULL);
return (bool)0;
}
IL_0017:
{
int32_t L_4 = ___1_comparisonType;
switch (L_4)
{
case 0:
{
goto IL_003a;
}
case 1:
{
goto IL_0050;
}
case 2:
{
goto IL_0066;
}
case 3:
{
goto IL_0077;
}
case 4:
{
goto IL_0088;
}
case 5:
{
goto IL_00a0;
}
}
}
{
goto IL_00c9;
}
IL_003a:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
L_5 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_5);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_6;
L_6 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_5);
String_t* L_7 = ___0_value;
NullCheck(L_6);
int32_t L_8;
L_8 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_6, __this, L_7, 0);
return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
}
IL_0050:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_9;
L_9 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_9);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_10;
L_10 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_9);
String_t* L_11 = ___0_value;
NullCheck(L_10);
int32_t L_12;
L_12 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_10, __this, L_11, 1);
return (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
}
IL_0066:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_13 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_14 = ___0_value;
NullCheck(L_13);
int32_t L_15;
L_15 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_13, __this, L_14, 0);
return (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
}
IL_0077:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_16 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_17 = ___0_value;
NullCheck(L_16);
int32_t L_18;
L_18 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_16, __this, L_17, 1);
return (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
}
IL_0088:
{
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_20 = ___0_value;
NullCheck(L_20);
int32_t L_21;
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
if ((((int32_t)L_19) == ((int32_t)L_21)))
{
goto IL_0098;
}
}
{
return (bool)0;
}
IL_0098:
{
String_t* L_22 = ___0_value;
bool L_23;
L_23 = String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline(__this, L_22, NULL);
return L_23;
}
IL_00a0:
{
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_25 = ___0_value;
NullCheck(L_25);
int32_t L_26;
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
if ((((int32_t)L_24) == ((int32_t)L_26)))
{
goto IL_00b0;
}
}
{
return (bool)0;
}
IL_00b0:
{
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_28 = ___0_value;
String_t* L_29 = ___0_value;
NullCheck(L_29);
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
int32_t L_31;
L_31 = CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4(__this, 0, L_27, L_28, 0, L_30, NULL);
return (bool)((((int32_t)L_31) == ((int32_t)0))? 1 : 0);
}
IL_00c9:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_32 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_32);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_32, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Equals_m7BDFC0B951005B9DC2BAED464AFE68FF7E9ACE5A_RuntimeMethod_var)));
}
}
// System.Boolean System.String::Equals(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m3354EFE6393BED8DD6E18F69BEA131AAADCC622D (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_a;
String_t* L_1 = ___1_b;
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
String_t* L_2 = ___0_a;
if (!L_2)
{
goto IL_001a;
}
}
{
String_t* L_3 = ___1_b;
if (!L_3)
{
goto IL_001a;
}
}
{
String_t* L_4 = ___0_a;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
String_t* L_6 = ___1_b;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
if ((((int32_t)L_5) == ((int32_t)L_7)))
{
goto IL_001c;
}
}
IL_001a:
{
return (bool)0;
}
IL_001c:
{
String_t* L_8 = ___0_a;
String_t* L_9 = ___1_b;
bool L_10;
L_10 = String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline(L_8, L_9, NULL);
return L_10;
}
}
// 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)
{
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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___0_a;
String_t* L_1 = ___1_b;
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_000c;
}
}
{
int32_t L_2 = ___2_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_2, NULL);
return (bool)1;
}
IL_000c:
{
String_t* L_3 = ___0_a;
if (!L_3)
{
goto IL_0012;
}
}
{
String_t* L_4 = ___1_b;
if (L_4)
{
goto IL_001a;
}
}
IL_0012:
{
int32_t L_5 = ___2_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_5, NULL);
return (bool)0;
}
IL_001a:
{
int32_t L_6 = ___2_comparisonType;
switch (L_6)
{
case 0:
{
goto IL_003d;
}
case 1:
{
goto IL_0053;
}
case 2:
{
goto IL_0069;
}
case 3:
{
goto IL_007a;
}
case 4:
{
goto IL_008b;
}
case 5:
{
goto IL_00a3;
}
}
}
{
goto IL_00cc;
}
IL_003d:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_7;
L_7 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_7);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_8;
L_8 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_7);
String_t* L_9 = ___0_a;
String_t* L_10 = ___1_b;
NullCheck(L_8);
int32_t L_11;
L_11 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_8, L_9, L_10, 0);
return (bool)((((int32_t)L_11) == ((int32_t)0))? 1 : 0);
}
IL_0053:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_12);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_13;
L_13 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_12);
String_t* L_14 = ___0_a;
String_t* L_15 = ___1_b;
NullCheck(L_13);
int32_t L_16;
L_16 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_13, L_14, L_15, 1);
return (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
}
IL_0069:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_17 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_18 = ___0_a;
String_t* L_19 = ___1_b;
NullCheck(L_17);
int32_t L_20;
L_20 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_17, L_18, L_19, 0);
return (bool)((((int32_t)L_20) == ((int32_t)0))? 1 : 0);
}
IL_007a:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_21 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_22 = ___0_a;
String_t* L_23 = ___1_b;
NullCheck(L_21);
int32_t L_24;
L_24 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_21, L_22, L_23, 1);
return (bool)((((int32_t)L_24) == ((int32_t)0))? 1 : 0);
}
IL_008b:
{
String_t* L_25 = ___0_a;
NullCheck(L_25);
int32_t L_26;
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
String_t* L_27 = ___1_b;
NullCheck(L_27);
int32_t L_28;
L_28 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_27, NULL);
if ((((int32_t)L_26) == ((int32_t)L_28)))
{
goto IL_009b;
}
}
{
return (bool)0;
}
IL_009b:
{
String_t* L_29 = ___0_a;
String_t* L_30 = ___1_b;
bool L_31;
L_31 = String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline(L_29, L_30, NULL);
return L_31;
}
IL_00a3:
{
String_t* L_32 = ___0_a;
NullCheck(L_32);
int32_t L_33;
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
String_t* L_34 = ___1_b;
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_00b3;
}
}
{
return (bool)0;
}
IL_00b3:
{
String_t* L_36 = ___0_a;
String_t* L_37 = ___0_a;
NullCheck(L_37);
int32_t L_38;
L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
String_t* L_39 = ___1_b;
String_t* L_40 = ___1_b;
NullCheck(L_40);
int32_t L_41;
L_41 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_40, NULL);
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
int32_t L_42;
L_42 = CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4(L_36, 0, L_38, L_39, 0, L_41, NULL);
return (bool)((((int32_t)L_42) == ((int32_t)0))? 1 : 0);
}
IL_00cc:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_43 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_43);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_43, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Equals_mCC34895D0DB2AD440C9D8767032215BC86B5C48B_RuntimeMethod_var)));
}
}
// 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)
{
{
String_t* L_0 = ___0_a;
String_t* L_1 = ___1_b;
bool L_2;
L_2 = String_Equals_m3354EFE6393BED8DD6E18F69BEA131AAADCC622D(L_0, L_1, NULL);
return L_2;
}
}
// 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)
{
{
String_t* L_0 = ___0_a;
String_t* L_1 = ___1_b;
bool L_2;
L_2 = String_Equals_m3354EFE6393BED8DD6E18F69BEA131AAADCC622D(L_0, L_1, NULL);
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 System.String::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_GetHashCode_m07CD17F51E99357946BE51F79AF37AAC5C6C388A (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = String_GetLegacyNonRandomizedHashCode_m9A0C6441EF2B38DCED9C15D8715625FCF4C84F36(__this, NULL);
return L_0;
}
}
// System.Int32 System.String::GetLegacyNonRandomizedHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_GetLegacyNonRandomizedHashCode_m9A0C6441EF2B38DCED9C15D8715625FCF4C84F36 (String_t* __this, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Il2CppChar* V_4 = NULL;
{
Il2CppChar* L_0 = (&__this->____firstChar_5);
V_0 = L_0;
Il2CppChar* L_1 = V_0;
V_1 = ((int32_t)5381);
int32_t L_2 = V_1;
V_2 = L_2;
V_4 = (Il2CppChar*)((uintptr_t)L_1);
goto IL_0037;
}
IL_0015:
{
int32_t L_3 = V_1;
int32_t L_4 = V_1;
int32_t L_5 = V_3;
V_1 = ((int32_t)(((int32_t)il2cpp_codegen_add(((int32_t)(L_3<<5)), L_4))^L_5));
Il2CppChar* L_6 = V_4;
int32_t L_7 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, 2)));
V_3 = L_7;
int32_t L_8 = V_3;
if (!L_8)
{
goto IL_003e;
}
}
{
int32_t L_9 = V_2;
int32_t L_10 = V_2;
int32_t L_11 = V_3;
V_2 = ((int32_t)(((int32_t)il2cpp_codegen_add(((int32_t)(L_9<<5)), L_10))^L_11));
Il2CppChar* L_12 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
}
IL_0037:
{
Il2CppChar* L_13 = V_4;
int32_t L_14 = *((uint16_t*)L_13);
int32_t L_15 = L_14;
V_3 = L_15;
if (L_15)
{
goto IL_0015;
}
}
IL_003e:
{
int32_t L_16 = V_1;
int32_t L_17 = V_2;
return ((int32_t)il2cpp_codegen_add(L_16, ((int32_t)il2cpp_codegen_multiply(L_17, ((int32_t)1566083941)))));
}
}
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___0_value, 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*)&String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___0_value;
bool L_3;
L_3 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(__this, L_2, 0, NULL);
return L_3;
}
}
// 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)
{
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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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*)&String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___0_value;
if ((!(((RuntimeObject*)(String_t*)__this) == ((RuntimeObject*)(String_t*)L_2))))
{
goto IL_001a;
}
}
{
int32_t L_3 = ___1_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_3, NULL);
return (bool)1;
}
IL_001a:
{
String_t* L_4 = ___0_value;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
if (L_5)
{
goto IL_002a;
}
}
{
int32_t L_6 = ___1_comparisonType;
String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41(L_6, NULL);
return (bool)1;
}
IL_002a:
{
int32_t L_7 = ___1_comparisonType;
switch (L_7)
{
case 0:
{
goto IL_004d;
}
case 1:
{
goto IL_0060;
}
case 2:
{
goto IL_0073;
}
case 3:
{
goto IL_0081;
}
case 4:
{
goto IL_008f;
}
case 5:
{
goto IL_00de;
}
}
}
{
goto IL_0107;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
L_8 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_8);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_9;
L_9 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_8);
String_t* L_10 = ___0_value;
NullCheck(L_9);
bool L_11;
L_11 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_9, __this, L_10, 0);
return L_11;
}
IL_0060:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_12);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_13;
L_13 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_12);
String_t* L_14 = ___0_value;
NullCheck(L_13);
bool L_15;
L_15 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_13, __this, L_14, 1);
return L_15;
}
IL_0073:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_16 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_17 = ___0_value;
NullCheck(L_16);
bool L_18;
L_18 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_16, __this, L_17, 0);
return L_18;
}
IL_0081:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_19 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_20 = ___0_value;
NullCheck(L_19);
bool L_21;
L_21 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_19, __this, L_20, 1);
return L_21;
}
IL_008f:
{
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_23 = ___0_value;
NullCheck(L_23);
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL);
if ((((int32_t)L_22) < ((int32_t)L_24)))
{
goto IL_00ab;
}
}
{
Il2CppChar L_25 = __this->____firstChar_5;
String_t* L_26 = ___0_value;
NullCheck(L_26);
Il2CppChar L_27 = L_26->____firstChar_5;
if ((((int32_t)L_25) == ((int32_t)L_27)))
{
goto IL_00ad;
}
}
IL_00ab:
{
return (bool)0;
}
IL_00ad:
{
String_t* L_28 = ___0_value;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
if ((((int32_t)L_29) == ((int32_t)1)))
{
goto IL_00dc;
}
}
{
Il2CppChar* L_30;
L_30 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(__this, NULL);
uint8_t* L_31;
L_31 = il2cpp_unsafe_as_ref<uint8_t>(L_30);
String_t* L_32 = ___0_value;
NullCheck(L_32);
Il2CppChar* L_33;
L_33 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_32, NULL);
uint8_t* L_34;
L_34 = il2cpp_unsafe_as_ref<uint8_t>(L_33);
String_t* L_35 = ___0_value;
NullCheck(L_35);
int32_t L_36;
L_36 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_35, NULL);
bool L_37;
L_37 = SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E(L_31, L_34, ((int64_t)il2cpp_codegen_multiply(((int64_t)L_36), ((int64_t)2))), NULL);
return L_37;
}
IL_00dc:
{
return (bool)1;
}
IL_00de:
{
int32_t L_38;
L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_39 = ___0_value;
NullCheck(L_39);
int32_t L_40;
L_40 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_39, NULL);
if ((((int32_t)L_38) >= ((int32_t)L_40)))
{
goto IL_00ee;
}
}
{
return (bool)0;
}
IL_00ee:
{
String_t* L_41 = ___0_value;
NullCheck(L_41);
int32_t L_42;
L_42 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_41, NULL);
String_t* L_43 = ___0_value;
String_t* L_44 = ___0_value;
NullCheck(L_44);
int32_t L_45;
L_45 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_44, NULL);
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
int32_t L_46;
L_46 = CompareInfo_CompareOrdinalIgnoreCase_mE14A76E96DD89A8F1E35E20B0A5DA52C9FB4D2C4(__this, 0, L_42, L_43, 0, L_45, NULL);
return (bool)((((int32_t)L_46) == ((int32_t)0))? 1 : 0);
}
IL_0107:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_47 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_47);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_47, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264_RuntimeMethod_var)));
}
}
// System.Void System.String::CheckStringComparison(System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CheckStringComparison_m371C3E880F2FD08C36F503FCFFCFE355D350AE41 (int32_t ___0_comparisonType, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_comparisonType;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 0))) > ((uint32_t)5))))
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentException_m2143A5B72376233700B4842B05601BF9992D999E(((int32_t)49), ((int32_t)47), NULL);
}
IL_000f:
{
return;
}
}
// System.Void System.String::FillStringChecked(System.String,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62 (String_t* ___0_dest, int32_t ___1_destPos, String_t* ___2_src, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___2_src;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
String_t* L_2 = ___0_dest;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
int32_t L_4 = ___1_destPos;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4)))))
{
goto IL_0016;
}
}
{
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_5 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
NullCheck(L_5);
IndexOutOfRangeException__ctor_m270ED9671475CE680EEA8C62A7A43308AE4188EF(L_5, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62_RuntimeMethod_var)));
}
IL_0016:
{
String_t* L_6 = ___0_dest;
NullCheck(L_6);
Il2CppChar* L_7 = (&L_6->____firstChar_5);
V_0 = L_7;
Il2CppChar* L_8 = V_0;
String_t* L_9 = ___2_src;
NullCheck(L_9);
Il2CppChar* L_10 = (&L_9->____firstChar_5);
V_2 = L_10;
Il2CppChar* L_11 = V_2;
V_1 = (Il2CppChar*)((uintptr_t)L_11);
int32_t L_12 = ___1_destPos;
Il2CppChar* L_13 = V_1;
String_t* L_14 = ___2_src;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_8), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_12), 2)))), L_13, L_15, NULL);
V_2 = (Il2CppChar*)((uintptr_t)0);
V_0 = (Il2CppChar*)((uintptr_t)0);
return;
}
}
// System.String System.String::Concat(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9DF47FC6E1F8341012CA3FF02993D372AA7A96C9 (RuntimeObject* ___0_arg0, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, 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;
}
{
RuntimeObject* L_0 = ___0_arg0;
if (L_0)
{
goto IL_000a;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___0_arg0 = L_1;
}
IL_000a:
{
RuntimeObject* L_2 = ___1_arg1;
if (L_2)
{
goto IL_0014;
}
}
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___1_arg1 = L_3;
}
IL_0014:
{
RuntimeObject* L_4 = ___2_arg2;
if (L_4)
{
goto IL_001e;
}
}
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___2_arg2 = L_5;
}
IL_001e:
{
RuntimeObject* L_6 = ___0_arg0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6);
RuntimeObject* L_8 = ___1_arg1;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8);
RuntimeObject* L_10 = ___2_arg2;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10);
String_t* L_12;
L_12 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_7, L_9, L_11, NULL);
return L_12;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___0_str0;
bool L_1;
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
if (!L_1)
{
goto IL_0018;
}
}
{
String_t* L_2 = ___1_str1;
bool L_3;
L_3 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_2, NULL);
if (!L_3)
{
goto IL_0016;
}
}
{
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_4;
}
IL_0016:
{
String_t* L_5 = ___1_str1;
return L_5;
}
IL_0018:
{
String_t* L_6 = ___1_str1;
bool L_7;
L_7 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_6, NULL);
if (!L_7)
{
goto IL_0022;
}
}
{
String_t* L_8 = ___0_str0;
return L_8;
}
IL_0022:
{
String_t* L_9 = ___0_str0;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
V_0 = L_10;
int32_t L_11 = V_0;
String_t* L_12 = ___1_str1;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
String_t* L_14;
L_14 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)il2cpp_codegen_add(L_11, L_13)), NULL);
String_t* L_15 = L_14;
String_t* L_16 = ___0_str0;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_15, 0, L_16, NULL);
String_t* L_17 = L_15;
int32_t L_18 = V_0;
String_t* L_19 = ___1_str1;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_17, L_18, L_19, NULL);
return L_17;
}
}
// 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)
{
{
String_t* L_0 = ___0_str0;
bool L_1;
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
String_t* L_2 = ___1_str1;
String_t* L_3 = ___2_str2;
String_t* L_4;
L_4 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_2, L_3, NULL);
return L_4;
}
IL_0010:
{
String_t* L_5 = ___1_str1;
bool L_6;
L_6 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_5, NULL);
if (!L_6)
{
goto IL_0020;
}
}
{
String_t* L_7 = ___0_str0;
String_t* L_8 = ___2_str2;
String_t* L_9;
L_9 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_7, L_8, NULL);
return L_9;
}
IL_0020:
{
String_t* L_10 = ___2_str2;
bool L_11;
L_11 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_10, NULL);
if (!L_11)
{
goto IL_0030;
}
}
{
String_t* L_12 = ___0_str0;
String_t* L_13 = ___1_str1;
String_t* L_14;
L_14 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_12, L_13, NULL);
return L_14;
}
IL_0030:
{
String_t* L_15 = ___0_str0;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
String_t* L_17 = ___1_str1;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
String_t* L_19 = ___2_str2;
NullCheck(L_19);
int32_t L_20;
L_20 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_19, NULL);
String_t* L_21;
L_21 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_16, L_18)), L_20)), NULL);
String_t* L_22 = L_21;
String_t* L_23 = ___0_str0;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_22, 0, L_23, NULL);
String_t* L_24 = L_22;
String_t* L_25 = ___0_str0;
NullCheck(L_25);
int32_t L_26;
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
String_t* L_27 = ___1_str1;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_24, L_26, L_27, NULL);
String_t* L_28 = L_24;
String_t* L_29 = ___0_str0;
NullCheck(L_29);
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
String_t* L_31 = ___1_str1;
NullCheck(L_31);
int32_t L_32;
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
String_t* L_33 = ___2_str2;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_28, ((int32_t)il2cpp_codegen_add(L_30, L_32)), L_33, NULL);
return L_28;
}
}
// 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)
{
{
String_t* L_0 = ___0_str0;
bool L_1;
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
String_t* L_2 = ___1_str1;
String_t* L_3 = ___2_str2;
String_t* L_4 = ___3_str3;
String_t* L_5;
L_5 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_2, L_3, L_4, NULL);
return L_5;
}
IL_0011:
{
String_t* L_6 = ___1_str1;
bool L_7;
L_7 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_6, NULL);
if (!L_7)
{
goto IL_0022;
}
}
{
String_t* L_8 = ___0_str0;
String_t* L_9 = ___2_str2;
String_t* L_10 = ___3_str3;
String_t* L_11;
L_11 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_8, L_9, L_10, NULL);
return L_11;
}
IL_0022:
{
String_t* L_12 = ___2_str2;
bool L_13;
L_13 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_12, NULL);
if (!L_13)
{
goto IL_0033;
}
}
{
String_t* L_14 = ___0_str0;
String_t* L_15 = ___1_str1;
String_t* L_16 = ___3_str3;
String_t* L_17;
L_17 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_14, L_15, L_16, NULL);
return L_17;
}
IL_0033:
{
String_t* L_18 = ___3_str3;
bool L_19;
L_19 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_18, NULL);
if (!L_19)
{
goto IL_0044;
}
}
{
String_t* L_20 = ___0_str0;
String_t* L_21 = ___1_str1;
String_t* L_22 = ___2_str2;
String_t* L_23;
L_23 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_20, L_21, L_22, NULL);
return L_23;
}
IL_0044:
{
String_t* L_24 = ___0_str0;
NullCheck(L_24);
int32_t L_25;
L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL);
String_t* L_26 = ___1_str1;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
String_t* L_28 = ___2_str2;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
String_t* L_30 = ___3_str3;
NullCheck(L_30);
int32_t L_31;
L_31 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_30, NULL);
String_t* L_32;
L_32 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_25, L_27)), L_29)), L_31)), NULL);
String_t* L_33 = L_32;
String_t* L_34 = ___0_str0;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_33, 0, L_34, NULL);
String_t* L_35 = L_33;
String_t* L_36 = ___0_str0;
NullCheck(L_36);
int32_t L_37;
L_37 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_36, NULL);
String_t* L_38 = ___1_str1;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_35, L_37, L_38, NULL);
String_t* L_39 = L_35;
String_t* L_40 = ___0_str0;
NullCheck(L_40);
int32_t L_41;
L_41 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_40, NULL);
String_t* L_42 = ___1_str1;
NullCheck(L_42);
int32_t L_43;
L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
String_t* L_44 = ___2_str2;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_39, ((int32_t)il2cpp_codegen_add(L_41, L_43)), L_44, NULL);
String_t* L_45 = L_39;
String_t* L_46 = ___0_str0;
NullCheck(L_46);
int32_t L_47;
L_47 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_46, NULL);
String_t* L_48 = ___1_str1;
NullCheck(L_48);
int32_t L_49;
L_49 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_48, NULL);
String_t* L_50 = ___2_str2;
NullCheck(L_50);
int32_t L_51;
L_51 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_50, NULL);
String_t* L_52 = ___3_str3;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_45, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_49)), L_51)), L_52, NULL);
return L_45;
}
}
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
String_t* V_5 = NULL;
int32_t V_6 = 0;
String_t* V_7 = NULL;
int32_t V_8 = 0;
String_t* G_B7_0 = NULL;
String_t* G_B5_0 = NULL;
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___0_values;
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*)&_stringLiteralFBFED6DEA5A92748E7B7A0A236B4FBA1EFEF38C6)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A_RuntimeMethod_var)));
}
IL_000e:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = ___0_values;
NullCheck(L_2);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))) > ((int32_t)1)))
{
goto IL_002b;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ___0_values;
NullCheck(L_3);
if (!(((RuntimeArray*)L_3)->max_length))
{
goto IL_0025;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = ___0_values;
NullCheck(L_4);
int32_t L_5 = 0;
String_t* L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
String_t* L_7 = L_6;
G_B5_0 = L_7;
if (L_7)
{
G_B7_0 = L_7;
goto IL_002a;
}
}
{
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_8;
}
IL_0025:
{
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B7_0 = L_9;
}
IL_002a:
{
return G_B7_0;
}
IL_002b:
{
V_0 = ((int64_t)0);
V_4 = 0;
goto IL_004e;
}
IL_0033:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = ___0_values;
int32_t L_11 = V_4;
NullCheck(L_10);
int32_t L_12 = L_11;
String_t* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_5 = L_13;
String_t* L_14 = V_5;
if (!L_14)
{
goto IL_0048;
}
}
{
int64_t L_15 = V_0;
String_t* L_16 = V_5;
NullCheck(L_16);
int32_t L_17;
L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL);
V_0 = ((int64_t)il2cpp_codegen_add(L_15, ((int64_t)L_17)));
}
IL_0048:
{
int32_t L_18 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_004e:
{
int32_t L_19 = V_4;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = ___0_values;
NullCheck(L_20);
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
{
goto IL_0033;
}
}
{
int64_t L_21 = V_0;
if ((((int64_t)L_21) <= ((int64_t)((int64_t)((int32_t)2147483647LL)))))
{
goto IL_0064;
}
}
{
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_22 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
NullCheck(L_22);
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_22, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A_RuntimeMethod_var)));
}
IL_0064:
{
int64_t L_23 = V_0;
V_1 = ((int32_t)L_23);
int32_t L_24 = V_1;
if (L_24)
{
goto IL_0070;
}
}
{
String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_25;
}
IL_0070:
{
int32_t L_26 = V_1;
String_t* L_27;
L_27 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_26, NULL);
V_2 = L_27;
V_3 = 0;
V_6 = 0;
goto IL_00b5;
}
IL_007e:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = ___0_values;
int32_t L_29 = V_6;
NullCheck(L_28);
int32_t L_30 = L_29;
String_t* L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
V_7 = L_31;
String_t* L_32 = V_7;
bool L_33;
L_33 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_32, NULL);
if (L_33)
{
goto IL_00af;
}
}
{
String_t* L_34 = V_7;
NullCheck(L_34);
int32_t L_35;
L_35 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_34, NULL);
V_8 = L_35;
int32_t L_36 = V_8;
int32_t L_37 = V_1;
int32_t L_38 = V_3;
if ((((int32_t)L_36) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_37, L_38)))))
{
goto IL_00a1;
}
}
{
V_3 = (-1);
goto IL_00bc;
}
IL_00a1:
{
String_t* L_39 = V_2;
int32_t L_40 = V_3;
String_t* L_41 = V_7;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_39, L_40, L_41, NULL);
int32_t L_42 = V_3;
int32_t L_43 = V_8;
V_3 = ((int32_t)il2cpp_codegen_add(L_42, L_43));
}
IL_00af:
{
int32_t L_44 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_44, 1));
}
IL_00b5:
{
int32_t L_45 = V_6;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = ___0_values;
NullCheck(L_46);
if ((((int32_t)L_45) < ((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length)))))
{
goto IL_007e;
}
}
IL_00bc:
{
int32_t L_47 = V_3;
int32_t L_48 = V_1;
if ((((int32_t)L_47) == ((int32_t)L_48)))
{
goto IL_00d1;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_49 = ___0_values;
NullCheck((RuntimeArray*)L_49);
RuntimeObject* L_50;
L_50 = Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042((RuntimeArray*)L_49, NULL);
String_t* L_51;
L_51 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)Castclass((RuntimeObject*)L_50, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), NULL);
return L_51;
}
IL_00d1:
{
String_t* L_52 = V_2;
return L_52;
}
}
// 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)
{
{
String_t* L_0 = ___0_format;
RuntimeObject* L_1 = ___1_arg0;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_2;
memset((&L_2), 0, sizeof(L_2));
ParamsArray__ctor_m7009FCBF72C245324618CA23BF51BC430A32F872((&L_2), L_1, /*hidden argument*/NULL);
String_t* L_3;
L_3 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192((RuntimeObject*)NULL, L_0, L_2, NULL);
return L_3;
}
}
// 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)
{
{
String_t* L_0 = ___0_format;
RuntimeObject* L_1 = ___1_arg0;
RuntimeObject* L_2 = ___2_arg1;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_3;
memset((&L_3), 0, sizeof(L_3));
ParamsArray__ctor_mC2A3A6438294FA948BFA5FAB16B92B512CD77AEF((&L_3), L_1, L_2, /*hidden argument*/NULL);
String_t* L_4;
L_4 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192((RuntimeObject*)NULL, L_0, L_3, NULL);
return L_4;
}
}
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_format;
RuntimeObject* L_1 = ___1_arg0;
RuntimeObject* L_2 = ___2_arg1;
RuntimeObject* L_3 = ___3_arg2;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_4;
memset((&L_4), 0, sizeof(L_4));
ParamsArray__ctor_mA5536845A414E853711015FD87765D46E0032444((&L_4), L_1, L_2, L_3, /*hidden argument*/NULL);
String_t* L_5;
L_5 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192((RuntimeObject*)NULL, L_0, L_4, NULL);
return L_5;
}
}
// System.String System.String::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m918500C1EFB475181349A79989BB79BB36102894 (String_t* ___0_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method)
{
String_t* G_B4_0 = NULL;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___1_args;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = ___0_format;
if (!L_1)
{
goto IL_000d;
}
}
{
G_B4_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132));
goto IL_0012;
}
IL_000d:
{
G_B4_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA));
}
IL_0012:
{
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, G_B4_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Format_m918500C1EFB475181349A79989BB79BB36102894_RuntimeMethod_var)));
}
IL_0018:
{
String_t* L_3 = ___0_format;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___1_args;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_5;
memset((&L_5), 0, sizeof(L_5));
ParamsArray__ctor_m1237E599510FB74A8A1D237B0330676EDD161D5E((&L_5), L_4, /*hidden argument*/NULL);
String_t* L_6;
L_6 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192((RuntimeObject*)NULL, L_3, L_5, NULL);
return L_6;
}
}
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___0_provider;
String_t* L_1 = ___1_format;
RuntimeObject* L_2 = ___2_arg0;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_3;
memset((&L_3), 0, sizeof(L_3));
ParamsArray__ctor_m7009FCBF72C245324618CA23BF51BC430A32F872((&L_3), L_2, /*hidden argument*/NULL);
String_t* L_4;
L_4 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192(L_0, L_1, L_3, NULL);
return L_4;
}
}
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m44BF8BF44DC9B67D6CF265A1A2703A6D743F5C56 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, RuntimeObject* ___3_arg1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___0_provider;
String_t* L_1 = ___1_format;
RuntimeObject* L_2 = ___2_arg0;
RuntimeObject* L_3 = ___3_arg1;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_4;
memset((&L_4), 0, sizeof(L_4));
ParamsArray__ctor_mC2A3A6438294FA948BFA5FAB16B92B512CD77AEF((&L_4), L_2, L_3, /*hidden argument*/NULL);
String_t* L_5;
L_5 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192(L_0, L_1, L_4, NULL);
return L_5;
}
}
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF8E53122BE8F0F617357DFB75C3912D1242DE263 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, RuntimeObject* ___3_arg1, RuntimeObject* ___4_arg2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___0_provider;
String_t* L_1 = ___1_format;
RuntimeObject* L_2 = ___2_arg0;
RuntimeObject* L_3 = ___3_arg1;
RuntimeObject* L_4 = ___4_arg2;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_5;
memset((&L_5), 0, sizeof(L_5));
ParamsArray__ctor_mA5536845A414E853711015FD87765D46E0032444((&L_5), L_2, L_3, L_4, /*hidden argument*/NULL);
String_t* L_6;
L_6 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192(L_0, L_1, L_5, NULL);
return L_6;
}
}
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75 (RuntimeObject* ___0_provider, String_t* ___1_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method)
{
String_t* G_B4_0 = NULL;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___2_args;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = ___1_format;
if (!L_1)
{
goto IL_000d;
}
}
{
G_B4_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132));
goto IL_0012;
}
IL_000d:
{
G_B4_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA));
}
IL_0012:
{
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, G_B4_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75_RuntimeMethod_var)));
}
IL_0018:
{
RuntimeObject* L_3 = ___0_provider;
String_t* L_4 = ___1_format;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___2_args;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_6;
memset((&L_6), 0, sizeof(L_6));
ParamsArray__ctor_m1237E599510FB74A8A1D237B0330676EDD161D5E((&L_6), L_5, /*hidden argument*/NULL);
String_t* L_7;
L_7 = String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192(L_3, L_4, L_6, NULL);
return L_7;
}
}
// System.String System.String::FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192 (RuntimeObject* ___0_provider, String_t* ___1_format, ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C ___2_args, const RuntimeMethod* method)
{
{
String_t* L_0 = ___1_format;
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_FormatHelper_m9D0E826CCC406EADF91AF3B83FBC5DD012C81192_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___1_format;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
int32_t L_4;
L_4 = ParamsArray_get_Length_mB6EAB17F36570CC54B9505BFA2CB4FCAD326AE07((&___2_args), NULL);
StringBuilder_t* L_5;
L_5 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)il2cpp_codegen_add(L_3, ((int32_t)il2cpp_codegen_multiply(L_4, 8)))), NULL);
RuntimeObject* L_6 = ___0_provider;
String_t* L_7 = ___1_format;
ParamsArray_t2AE19F401652F4CBAB7A3CD4B0F195679FC16F1C L_8 = ___2_args;
NullCheck(L_5);
StringBuilder_t* L_9;
L_9 = StringBuilder_AppendFormatHelper_mB721541560403777C9190F76D162C918A9A840D1(L_5, L_6, L_7, L_8, NULL);
String_t* L_10;
L_10 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_9, NULL);
return L_10;
}
}
// System.String System.String::Insert(System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Insert_mA279E748F06514A6D0B9B680D651D6A6C6BB561A (String_t* __this, int32_t ___0_startIndex, String_t* ___1_value, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
Il2CppChar* V_5 = NULL;
Il2CppChar* V_6 = NULL;
{
String_t* L_0 = ___1_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*)&String_Insert_mA279E748F06514A6D0B9B680D651D6A6C6BB561A_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___0_startIndex;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001b;
}
}
{
int32_t L_3 = ___0_startIndex;
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0026;
}
}
IL_001b:
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Insert_mA279E748F06514A6D0B9B680D651D6A6C6BB561A_RuntimeMethod_var)));
}
IL_0026:
{
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = L_6;
String_t* L_7 = ___1_value;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
V_1 = L_8;
int32_t L_9 = V_0;
if (L_9)
{
goto IL_0039;
}
}
{
String_t* L_10 = ___1_value;
return L_10;
}
IL_0039:
{
int32_t L_11 = V_1;
if (L_11)
{
goto IL_003e;
}
}
{
return __this;
}
IL_003e:
{
int32_t L_12 = V_0;
int32_t L_13 = V_1;
String_t* L_14;
L_14 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)il2cpp_codegen_add(L_12, L_13)), NULL);
Il2CppChar* L_15 = (&__this->____firstChar_5);
V_3 = L_15;
Il2CppChar* L_16 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_16);
String_t* L_17 = ___1_value;
NullCheck(L_17);
Il2CppChar* L_18 = (&L_17->____firstChar_5);
V_5 = L_18;
Il2CppChar* L_19 = V_5;
V_4 = (Il2CppChar*)((uintptr_t)L_19);
String_t* L_20 = L_14;
NullCheck(L_20);
Il2CppChar* L_21 = (&L_20->____firstChar_5);
V_6 = L_21;
Il2CppChar* L_22 = V_6;
uintptr_t L_23 = ((uintptr_t)L_22);
Il2CppChar* L_24 = V_2;
int32_t L_25 = ___0_startIndex;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)L_23, L_24, L_25, NULL);
uintptr_t L_26 = L_23;
int32_t L_27 = ___0_startIndex;
Il2CppChar* L_28 = V_4;
int32_t L_29 = V_1;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((intptr_t)il2cpp_codegen_add((intptr_t)L_26, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_27), 2)))), L_28, L_29, NULL);
int32_t L_30 = ___0_startIndex;
int32_t L_31 = V_1;
Il2CppChar* L_32 = V_2;
int32_t L_33 = ___0_startIndex;
int32_t L_34 = V_0;
int32_t L_35 = ___0_startIndex;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((intptr_t)il2cpp_codegen_add(((intptr_t)il2cpp_codegen_add((intptr_t)L_26, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_30), 2)))), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_31), 2)))), ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_33), 2)))), ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
V_6 = (Il2CppChar*)((uintptr_t)0);
V_5 = (Il2CppChar*)((uintptr_t)0);
V_3 = (Il2CppChar*)((uintptr_t)0);
return L_20;
}
}
// System.String System.String::Join(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD (String_t* ___0_separator, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_value, const RuntimeMethod* method)
{
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___1_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*)&String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___0_separator;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ___1_value;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = ___1_value;
NullCheck(L_4);
String_t* L_5;
L_5 = String_Join_mF400595F57ED22F733823C1007043EA1D546F3AC(L_2, L_3, 0, ((int32_t)(((RuntimeArray*)L_4)->max_length)), NULL);
return L_5;
}
}
// System.String System.String::Join(System.String,System.Collections.Generic.IEnumerable`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m8159F953B3D62AA54A0853A6E9573CDC0F63E158 (String_t* ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
String_t* V_1 = NULL;
StringBuilder_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* G_B8_0 = NULL;
String_t* G_B7_0 = NULL;
{
RuntimeObject* L_0 = ___1_values;
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*)&_stringLiteralFBFED6DEA5A92748E7B7A0A236B4FBA1EFEF38C6)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Join_m8159F953B3D62AA54A0853A6E9573CDC0F63E158_RuntimeMethod_var)));
}
IL_000e:
{
RuntimeObject* L_2 = ___1_values;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.String>::GetEnumerator() */, IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var, L_2);
V_0 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0077:
{// begin finally (depth: 1)
{
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_0080;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
}
IL_0080:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
bool L_7;
L_7 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_6);
if (L_7)
{
goto IL_0025_1;
}
}
{
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_3 = L_8;
goto IL_0081;
}
IL_0025_1:
{
RuntimeObject* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.String>::get_Current() */, IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var, L_9);
V_1 = L_10;
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
if (L_12)
{
goto IL_0041_1;
}
}
{
String_t* L_13 = V_1;
String_t* L_14 = L_13;
G_B7_0 = L_14;
if (L_14)
{
G_B8_0 = L_14;
goto IL_003e_1;
}
}
{
String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B8_0 = L_15;
}
IL_003e_1:
{
V_3 = G_B8_0;
goto IL_0081;
}
IL_0041_1:
{
StringBuilder_t* L_16;
L_16 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)16), NULL);
V_2 = L_16;
StringBuilder_t* L_17 = V_2;
String_t* L_18 = V_1;
NullCheck(L_17);
StringBuilder_t* L_19;
L_19 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, L_18, NULL);
}
IL_0051_1:
{
StringBuilder_t* L_20 = V_2;
String_t* L_21 = ___0_separator;
NullCheck(L_20);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, L_21, NULL);
StringBuilder_t* L_23 = V_2;
RuntimeObject* L_24 = V_0;
NullCheck(L_24);
String_t* L_25;
L_25 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.String>::get_Current() */, IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var, L_24);
NullCheck(L_23);
StringBuilder_t* L_26;
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, L_25, NULL);
RuntimeObject* L_27 = V_0;
NullCheck(L_27);
bool L_28;
L_28 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_27);
if (L_28)
{
goto IL_0051_1;
}
}
{
StringBuilder_t* L_29 = V_2;
String_t* L_30;
L_30 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_29, NULL);
V_3 = L_30;
goto IL_0081;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0081:
{
String_t* L_31 = V_3;
return L_31;
}
}
// System.String System.String::Join(System.String,System.String[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_mF400595F57ED22F733823C1007043EA1D546F3AC (String_t* ___0_separator, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, 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;
}
Il2CppChar* V_0 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B1_0 = NULL;
{
String_t* L_0 = ___0_separator;
String_t* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000a;
}
}
{
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_000a:
{
___0_separator = G_B2_0;
String_t* L_3 = ___0_separator;
NullCheck(L_3);
Il2CppChar* L_4 = (&L_3->____firstChar_5);
V_0 = L_4;
Il2CppChar* L_5 = V_0;
String_t* L_6 = ___0_separator;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = ___1_value;
int32_t L_9 = ___2_startIndex;
int32_t L_10 = ___3_count;
String_t* L_11;
L_11 = String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49((Il2CppChar*)((uintptr_t)L_5), L_7, L_8, L_9, L_10, NULL);
return L_11;
}
}
// System.String System.String::JoinCore(System.Char*,System.Int32,System.String[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49 (Il2CppChar* ___0_separator, int32_t ___1_separatorLength, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___2_value, int32_t ___3_startIndex, int32_t ___4_count, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
String_t* V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
String_t* V_8 = NULL;
int32_t V_9 = 0;
Il2CppChar* V_10 = NULL;
Il2CppChar* V_11 = NULL;
String_t* G_B13_0 = NULL;
String_t* G_B11_0 = NULL;
int64_t G_B16_0 = 0;
int64_t G_B15_0 = 0;
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___2_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*)&String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___3_startIndex;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var)));
}
IL_0022:
{
int32_t L_4 = ___4_count;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0037;
}
}
{
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*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var)));
}
IL_0037:
{
int32_t L_6 = ___3_startIndex;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = ___2_value;
NullCheck(L_7);
int32_t L_8 = ___4_count;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8)))))
{
goto IL_0050;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral15F97E5D6378242ED54641B00B68E301623A0191)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var)));
}
IL_0050:
{
int32_t L_10 = ___4_count;
if ((((int32_t)L_10) > ((int32_t)1)))
{
goto IL_006c;
}
}
{
int32_t L_11 = ___4_count;
if (!L_11)
{
goto IL_0066;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = ___2_value;
int32_t L_13 = ___3_startIndex;
NullCheck(L_12);
int32_t L_14 = L_13;
String_t* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
String_t* L_16 = L_15;
G_B11_0 = L_16;
if (L_16)
{
G_B13_0 = L_16;
goto IL_006b;
}
}
{
String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_17;
}
IL_0066:
{
String_t* L_18 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B13_0 = L_18;
}
IL_006b:
{
return G_B13_0;
}
IL_006c:
{
int32_t L_19 = ___4_count;
int32_t L_20 = ___1_separatorLength;
int64_t L_21 = ((int64_t)il2cpp_codegen_multiply(((int64_t)((int32_t)il2cpp_codegen_subtract(L_19, 1))), ((int64_t)L_20)));
G_B15_0 = L_21;
if ((((int64_t)L_21) <= ((int64_t)((int64_t)((int32_t)2147483647LL)))))
{
G_B16_0 = L_21;
goto IL_0083;
}
}
{
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_22 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
NullCheck(L_22);
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_22, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var)));
}
IL_0083:
{
V_0 = ((int32_t)G_B16_0);
int32_t L_23 = ___3_startIndex;
V_3 = L_23;
int32_t L_24 = ___3_startIndex;
int32_t L_25 = ___4_count;
V_4 = ((int32_t)il2cpp_codegen_add(L_24, L_25));
goto IL_00b0;
}
IL_008f:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = ___2_value;
int32_t L_27 = V_3;
NullCheck(L_26);
int32_t L_28 = L_27;
String_t* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
V_5 = L_29;
String_t* L_30 = V_5;
if (!L_30)
{
goto IL_00ac;
}
}
{
int32_t L_31 = V_0;
String_t* L_32 = V_5;
NullCheck(L_32);
int32_t L_33;
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
V_0 = ((int32_t)il2cpp_codegen_add(L_31, L_33));
int32_t L_34 = V_0;
if ((((int32_t)L_34) >= ((int32_t)0)))
{
goto IL_00ac;
}
}
{
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_35 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
NullCheck(L_35);
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_35, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49_RuntimeMethod_var)));
}
IL_00ac:
{
int32_t L_36 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_36, 1));
}
IL_00b0:
{
int32_t L_37 = V_3;
int32_t L_38 = V_4;
if ((((int32_t)L_37) < ((int32_t)L_38)))
{
goto IL_008f;
}
}
{
int32_t L_39 = V_0;
String_t* L_40;
L_40 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_39, NULL);
V_1 = L_40;
V_2 = 0;
int32_t L_41 = ___3_startIndex;
V_6 = L_41;
int32_t L_42 = ___3_startIndex;
int32_t L_43 = ___4_count;
V_7 = ((int32_t)il2cpp_codegen_add(L_42, L_43));
goto IL_0136;
}
IL_00c9:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_44 = ___2_value;
int32_t L_45 = V_6;
NullCheck(L_44);
int32_t L_46 = L_45;
String_t* L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46));
V_8 = L_47;
String_t* L_48 = V_8;
if (!L_48)
{
goto IL_00f5;
}
}
{
String_t* L_49 = V_8;
NullCheck(L_49);
int32_t L_50;
L_50 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_49, NULL);
V_9 = L_50;
int32_t L_51 = V_9;
int32_t L_52 = V_0;
int32_t L_53 = V_2;
if ((((int32_t)L_51) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_52, L_53)))))
{
goto IL_00e7;
}
}
{
V_2 = (-1);
goto IL_013c;
}
IL_00e7:
{
String_t* L_54 = V_1;
int32_t L_55 = V_2;
String_t* L_56 = V_8;
String_FillStringChecked_m3413709C427A00C5AB0F94E659DB63E6B4816D62(L_54, L_55, L_56, NULL);
int32_t L_57 = V_2;
int32_t L_58 = V_9;
V_2 = ((int32_t)il2cpp_codegen_add(L_57, L_58));
}
IL_00f5:
{
int32_t L_59 = V_6;
int32_t L_60 = V_7;
if ((((int32_t)L_59) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_60, 1)))))
{
goto IL_0130;
}
}
{
String_t* L_61 = V_1;
NullCheck(L_61);
Il2CppChar* L_62 = (&L_61->____firstChar_5);
V_11 = L_62;
Il2CppChar* L_63 = V_11;
V_10 = (Il2CppChar*)((uintptr_t)L_63);
int32_t L_64 = ___1_separatorLength;
if ((!(((uint32_t)L_64) == ((uint32_t)1))))
{
goto IL_011a;
}
}
{
Il2CppChar* L_65 = V_10;
int32_t L_66 = V_2;
Il2CppChar* L_67 = ___0_separator;
int32_t L_68 = *((uint16_t*)L_67);
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_66), 2))))) = (int16_t)L_68;
goto IL_0128;
}
IL_011a:
{
Il2CppChar* L_69 = V_10;
int32_t L_70 = V_2;
Il2CppChar* L_71 = ___0_separator;
int32_t L_72 = ___1_separatorLength;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B(((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_69, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_70), 2)))), L_71, L_72, NULL);
}
IL_0128:
{
V_11 = (Il2CppChar*)((uintptr_t)0);
int32_t L_73 = V_2;
int32_t L_74 = ___1_separatorLength;
V_2 = ((int32_t)il2cpp_codegen_add(L_73, L_74));
}
IL_0130:
{
int32_t L_75 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_75, 1));
}
IL_0136:
{
int32_t L_76 = V_6;
int32_t L_77 = V_7;
if ((((int32_t)L_76) < ((int32_t)L_77)))
{
goto IL_00c9;
}
}
IL_013c:
{
int32_t L_78 = V_2;
int32_t L_79 = V_0;
if ((((int32_t)L_78) == ((int32_t)L_79)))
{
goto IL_0156;
}
}
{
Il2CppChar* L_80 = ___0_separator;
int32_t L_81 = ___1_separatorLength;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = ___2_value;
NullCheck((RuntimeArray*)L_82);
RuntimeObject* L_83;
L_83 = Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042((RuntimeArray*)L_82, NULL);
int32_t L_84 = ___3_startIndex;
int32_t L_85 = ___4_count;
String_t* L_86;
L_86 = String_JoinCore_m938A097A1564773F33F9E78453D616712726ED49(L_80, L_81, ((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)Castclass((RuntimeObject*)L_83, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), L_84, L_85, NULL);
return L_86;
}
IL_0156:
{
String_t* L_87 = V_1;
return L_87;
}
}
// System.String System.String::PadLeft(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_PadLeft_m99DDD242908E78B71E9631EE66331E8A130EB31F (String_t* __this, int32_t ___0_totalWidth, Il2CppChar ___1_paddingChar, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
int32_t V_5 = 0;
Il2CppChar* V_6 = NULL;
Il2CppChar* V_7 = NULL;
{
int32_t L_0 = ___0_totalWidth;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral58CD8557F6DA92AF6C70377C1199294381C92BE9)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_PadLeft_m99DDD242908E78B71E9631EE66331E8A130EB31F_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = L_2;
int32_t L_3 = ___0_totalWidth;
int32_t L_4 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_3, L_4));
int32_t L_5 = V_1;
if ((((int32_t)L_5) > ((int32_t)0)))
{
goto IL_0025;
}
}
{
return __this;
}
IL_0025:
{
int32_t L_6 = ___0_totalWidth;
String_t* L_7;
L_7 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_6, NULL);
V_2 = L_7;
String_t* L_8 = V_2;
NullCheck(L_8);
Il2CppChar* L_9 = (&L_8->____firstChar_5);
V_4 = L_9;
Il2CppChar* L_10 = V_4;
V_3 = (Il2CppChar*)((uintptr_t)L_10);
V_5 = 0;
goto IL_004c;
}
IL_003d:
{
Il2CppChar* L_11 = V_3;
int32_t L_12 = V_5;
Il2CppChar L_13 = ___1_paddingChar;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_12), 2))))) = (int16_t)L_13;
int32_t L_14 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_004c:
{
int32_t L_15 = V_5;
int32_t L_16 = V_1;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_003d;
}
}
{
Il2CppChar* L_17 = (&__this->____firstChar_5);
V_7 = L_17;
Il2CppChar* L_18 = V_7;
V_6 = (Il2CppChar*)((uintptr_t)L_18);
Il2CppChar* L_19 = V_3;
int32_t L_20 = V_1;
Il2CppChar* L_21 = V_6;
int32_t L_22 = V_0;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B(((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_20), 2)))), L_21, L_22, NULL);
V_7 = (Il2CppChar*)((uintptr_t)0);
V_4 = (Il2CppChar*)((uintptr_t)0);
String_t* L_23 = V_2;
return L_23;
}
}
// System.String System.String::PadRight(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_PadRight_m7C573780177B3246D67D860C2A75AEF5832C7543 (String_t* __this, int32_t ___0_totalWidth, Il2CppChar ___1_paddingChar, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
Il2CppChar* V_5 = NULL;
Il2CppChar* V_6 = NULL;
int32_t V_7 = 0;
{
int32_t L_0 = ___0_totalWidth;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral58CD8557F6DA92AF6C70377C1199294381C92BE9)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_PadRight_m7C573780177B3246D67D860C2A75AEF5832C7543_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = L_2;
int32_t L_3 = ___0_totalWidth;
int32_t L_4 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_3, L_4));
int32_t L_5 = V_1;
if ((((int32_t)L_5) > ((int32_t)0)))
{
goto IL_0025;
}
}
{
return __this;
}
IL_0025:
{
int32_t L_6 = ___0_totalWidth;
String_t* L_7;
L_7 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_6, NULL);
V_2 = L_7;
String_t* L_8 = V_2;
NullCheck(L_8);
Il2CppChar* L_9 = (&L_8->____firstChar_5);
V_4 = L_9;
Il2CppChar* L_10 = V_4;
V_3 = (Il2CppChar*)((uintptr_t)L_10);
Il2CppChar* L_11 = (&__this->____firstChar_5);
V_6 = L_11;
Il2CppChar* L_12 = V_6;
V_5 = (Il2CppChar*)((uintptr_t)L_12);
Il2CppChar* L_13 = V_3;
Il2CppChar* L_14 = V_5;
int32_t L_15 = V_0;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B(L_13, L_14, L_15, NULL);
V_6 = (Il2CppChar*)((uintptr_t)0);
V_7 = 0;
goto IL_0068;
}
IL_0057:
{
Il2CppChar* L_16 = V_3;
int32_t L_17 = V_0;
int32_t L_18 = V_7;
Il2CppChar L_19 = ___1_paddingChar;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_17, L_18))), 2))))) = (int16_t)L_19;
int32_t L_20 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_0068:
{
int32_t L_21 = V_7;
int32_t L_22 = V_1;
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_0057;
}
}
{
V_4 = (Il2CppChar*)((uintptr_t)0);
String_t* L_23 = V_2;
return L_23;
}
}
// System.String System.String::Remove(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Remove_m4D7A58E2124F8D0D8AE3EEDE74B6AD6A863ABA68 (String_t* __this, int32_t ___0_startIndex, int32_t ___1_count, 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;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
{
int32_t L_0 = ___0_startIndex;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Remove_m4D7A58E2124F8D0D8AE3EEDE74B6AD6A863ABA68_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___1_count;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0028;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Remove_m4D7A58E2124F8D0D8AE3EEDE74B6AD6A863ABA68_RuntimeMethod_var)));
}
IL_0028:
{
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = L_4;
int32_t L_5 = ___1_count;
int32_t L_6 = V_0;
int32_t L_7 = ___0_startIndex;
if ((((int32_t)L_5) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_6, L_7)))))
{
goto IL_0045;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8294A19DAAE7E1B519B6BFD2EDBE3F2DE6D2AC77)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Remove_m4D7A58E2124F8D0D8AE3EEDE74B6AD6A863ABA68_RuntimeMethod_var)));
}
IL_0045:
{
int32_t L_9 = ___1_count;
if (L_9)
{
goto IL_004a;
}
}
{
return __this;
}
IL_004a:
{
int32_t L_10 = V_0;
int32_t L_11 = ___1_count;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_10, L_11));
int32_t L_12 = V_1;
if (L_12)
{
goto IL_0057;
}
}
{
String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_13;
}
IL_0057:
{
int32_t L_14 = V_1;
String_t* L_15;
L_15 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_14, NULL);
Il2CppChar* L_16 = (&__this->____firstChar_5);
V_3 = L_16;
Il2CppChar* L_17 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_17);
String_t* L_18 = L_15;
NullCheck(L_18);
Il2CppChar* L_19 = (&L_18->____firstChar_5);
V_4 = L_19;
Il2CppChar* L_20 = V_4;
uintptr_t L_21 = ((uintptr_t)L_20);
Il2CppChar* L_22 = V_2;
int32_t L_23 = ___0_startIndex;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)L_21, L_22, L_23, NULL);
int32_t L_24 = ___0_startIndex;
Il2CppChar* L_25 = V_2;
int32_t L_26 = ___0_startIndex;
int32_t L_27 = ___1_count;
int32_t L_28 = V_1;
int32_t L_29 = ___0_startIndex;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((intptr_t)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_24), 2)))), ((Il2CppChar*)il2cpp_codegen_add((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_26), 2)))), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_27), 2)))), ((int32_t)il2cpp_codegen_subtract(L_28, L_29)), NULL);
V_4 = (Il2CppChar*)((uintptr_t)0);
V_3 = (Il2CppChar*)((uintptr_t)0);
return L_18;
}
}
// System.String System.String::Remove(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Remove_m8266E0BF5D8565D4CDC850F21E9178AE254C3E85 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method)
{
{
int32_t L_0 = ___0_startIndex;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Remove_m8266E0BF5D8565D4CDC850F21E9178AE254C3E85_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___0_startIndex;
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_002d;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC8FB6FC33F8E8609AC13CC4724E1B2EFB4372240)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Remove_m8266E0BF5D8565D4CDC850F21E9178AE254C3E85_RuntimeMethod_var)));
}
IL_002d:
{
int32_t L_5 = ___0_startIndex;
String_t* L_6;
L_6 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(__this, 0, L_5, NULL);
return L_6;
}
}
// System.String System.String::Replace(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF (String_t* __this, Il2CppChar ___0_oldChar, Il2CppChar ___1_newChar, const RuntimeMethod* method)
{
int32_t V_0 = 0;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
Il2CppChar* V_5 = NULL;
Il2CppChar* V_6 = NULL;
int32_t V_7 = 0;
Il2CppChar* V_8 = NULL;
Il2CppChar* V_9 = NULL;
Il2CppChar V_10 = 0x0;
{
Il2CppChar L_0 = ___0_oldChar;
Il2CppChar L_1 = ___1_newChar;
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0006;
}
}
{
return __this;
}
IL_0006:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = L_2;
Il2CppChar* L_3 = (&__this->____firstChar_5);
V_2 = L_3;
Il2CppChar* L_4 = V_2;
V_3 = (Il2CppChar*)((uintptr_t)L_4);
goto IL_0026;
}
IL_0019:
{
Il2CppChar* L_5 = V_3;
int32_t L_6 = *((uint16_t*)L_5);
Il2CppChar L_7 = ___0_oldChar;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_002a;
}
}
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
Il2CppChar* L_9 = V_3;
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, 2));
}
IL_0026:
{
int32_t L_10 = V_0;
if ((((int32_t)L_10) > ((int32_t)0)))
{
goto IL_0019;
}
}
IL_002a:
{
V_2 = (Il2CppChar*)((uintptr_t)0);
int32_t L_11 = V_0;
if (L_11)
{
goto IL_0032;
}
}
{
return __this;
}
IL_0032:
{
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_13;
L_13 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_12, NULL);
V_1 = L_13;
Il2CppChar* L_14 = (&__this->____firstChar_5);
V_2 = L_14;
Il2CppChar* L_15 = V_2;
V_4 = (Il2CppChar*)((uintptr_t)L_15);
String_t* L_16 = V_1;
NullCheck(L_16);
Il2CppChar* L_17 = (&L_16->____firstChar_5);
V_6 = L_17;
Il2CppChar* L_18 = V_6;
V_5 = (Il2CppChar*)((uintptr_t)L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_20 = V_0;
V_7 = ((int32_t)il2cpp_codegen_subtract(L_19, L_20));
int32_t L_21 = V_7;
if ((((int32_t)L_21) <= ((int32_t)0)))
{
goto IL_0070;
}
}
{
Il2CppChar* L_22 = V_5;
Il2CppChar* L_23 = V_4;
int32_t L_24 = V_7;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B(L_22, L_23, L_24, NULL);
}
IL_0070:
{
Il2CppChar* L_25 = V_4;
int32_t L_26 = V_7;
V_8 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_26), 2))));
Il2CppChar* L_27 = V_5;
int32_t L_28 = V_7;
V_9 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_28), 2))));
}
IL_0084:
{
Il2CppChar* L_29 = V_8;
int32_t L_30 = *((uint16_t*)L_29);
V_10 = L_30;
Il2CppChar L_31 = V_10;
Il2CppChar L_32 = ___0_oldChar;
if ((!(((uint32_t)L_31) == ((uint32_t)L_32))))
{
goto IL_0091;
}
}
{
Il2CppChar L_33 = ___1_newChar;
V_10 = L_33;
}
IL_0091:
{
Il2CppChar* L_34 = V_9;
Il2CppChar L_35 = V_10;
*((int16_t*)L_34) = (int16_t)L_35;
int32_t L_36 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_36, 1));
Il2CppChar* L_37 = V_8;
V_8 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, 2));
Il2CppChar* L_38 = V_9;
V_9 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_38, 2));
int32_t L_39 = V_0;
if ((((int32_t)L_39) > ((int32_t)0)))
{
goto IL_0084;
}
}
{
V_6 = (Il2CppChar*)((uintptr_t)0);
V_2 = (Il2CppChar*)((uintptr_t)0);
String_t* L_40 = V_1;
return L_40;
}
}
// System.String System.String::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166 (String_t* __this, String_t* ___0_oldValue, String_t* ___1_newValue, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 V_0;
memset((&V_0), 0, sizeof(V_0));
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B V_1;
memset((&V_1), 0, sizeof(V_1));
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
Il2CppChar* V_6 = NULL;
int32_t V_7 = 0;
{
String_t* L_0 = ___0_oldValue;
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*)&_stringLiteral5B6805FF35E9D5281B12A6FE89E20C33842F2B82)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___0_oldValue;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (L_3)
{
goto IL_0026;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7AA791C8152A98FFF08ACB38CDB66499C02C97D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B6805FF35E9D5281B12A6FE89E20C33842F2B82)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166_RuntimeMethod_var)));
}
IL_0026:
{
String_t* L_5 = ___1_newValue;
if (L_5)
{
goto IL_0030;
}
}
{
String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___1_newValue = L_6;
}
IL_0030:
{
uintptr_t L_7 = ((uintptr_t)((int32_t)512));
int8_t* L_8 = (int8_t*) (L_7 ? alloca(L_7) : NULL);
memset(L_8, 0, L_7);
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_9;
memset((&L_9), 0, sizeof(L_9));
Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline((&L_9), (void*)(L_8), ((int32_t)128), /*hidden argument*/Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
V_0 = L_9;
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_10 = V_0;
ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD((&V_1), L_10, ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_RuntimeMethod_var);
Il2CppChar* L_11 = (&__this->____firstChar_5);
V_3 = L_11;
Il2CppChar* L_12 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_12);
V_4 = 0;
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_14 = ___0_oldValue;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
V_5 = ((int32_t)il2cpp_codegen_subtract(L_13, L_15));
goto IL_00b6;
}
IL_0069:
{
Il2CppChar* L_16 = V_2;
int32_t L_17 = V_4;
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2))));
V_7 = 0;
goto IL_0090;
}
IL_0077:
{
Il2CppChar* L_18 = V_6;
int32_t L_19 = V_7;
int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_19), 2)))));
String_t* L_21 = ___0_oldValue;
int32_t L_22 = V_7;
NullCheck(L_21);
Il2CppChar L_23;
L_23 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_21, L_22, NULL);
if ((!(((uint32_t)L_20) == ((uint32_t)L_23))))
{
goto IL_00b0;
}
}
{
int32_t L_24 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0090:
{
int32_t L_25 = V_7;
String_t* L_26 = ___0_oldValue;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
if ((((int32_t)L_25) < ((int32_t)L_27)))
{
goto IL_0077;
}
}
{
int32_t L_28 = V_4;
ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline((&V_1), L_28, ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
int32_t L_29 = V_4;
String_t* L_30 = ___0_oldValue;
NullCheck(L_30);
int32_t L_31;
L_31 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_30, NULL);
V_4 = ((int32_t)il2cpp_codegen_add(L_29, L_31));
goto IL_00b6;
}
IL_00b0:
{
int32_t L_32 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_32, 1));
}
IL_00b6:
{
int32_t L_33 = V_4;
int32_t L_34 = V_5;
if ((((int32_t)L_33) <= ((int32_t)L_34)))
{
goto IL_0069;
}
}
{
V_3 = (Il2CppChar*)((uintptr_t)0);
int32_t L_35;
L_35 = ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_inline((&V_1), ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_RuntimeMethod_var);
if (L_35)
{
goto IL_00ca;
}
}
{
return __this;
}
IL_00ca:
{
String_t* L_36 = ___0_oldValue;
NullCheck(L_36);
int32_t L_37;
L_37 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_36, NULL);
String_t* L_38 = ___1_newValue;
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_39;
L_39 = ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D((&V_1), ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_RuntimeMethod_var);
String_t* L_40;
L_40 = String_ReplaceHelper_mBEF426D6843AA1AFFF1C10A1517F1CCC196DA8FE(__this, L_37, L_38, L_39, NULL);
ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_inline((&V_1), ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_RuntimeMethod_var);
return L_40;
}
}
// System.String System.String::ReplaceHelper(System.Int32,System.String,System.ReadOnlySpan`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ReplaceHelper_mBEF426D6843AA1AFFF1C10A1517F1CCC196DA8FE (String_t* __this, int32_t ___0_oldValueLength, String_t* ___1_newValue, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___2_indices, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D 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;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_6;
memset((&V_6), 0, sizeof(V_6));
int64_t G_B2_0 = 0;
int64_t G_B1_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_1 = ___1_newValue;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
int32_t L_3 = ___0_oldValueLength;
int32_t L_4;
L_4 = ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline((&___2_indices), ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
int64_t L_5 = ((int64_t)il2cpp_codegen_add(((int64_t)L_0), ((int64_t)il2cpp_codegen_multiply(((int64_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))), ((int64_t)L_4)))));
G_B1_0 = L_5;
if ((((int64_t)L_5) <= ((int64_t)((int64_t)((int32_t)2147483647LL)))))
{
G_B2_0 = L_5;
goto IL_0029;
}
}
{
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_6 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
NullCheck(L_6);
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_ReplaceHelper_mBEF426D6843AA1AFFF1C10A1517F1CCC196DA8FE_RuntimeMethod_var)));
}
IL_0029:
{
String_t* L_7;
L_7 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)G_B2_0), NULL);
V_0 = L_7;
String_t* L_8 = V_0;
NullCheck(L_8);
Il2CppChar* L_9;
L_9 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_8, NULL);
String_t* L_10 = V_0;
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_12;
memset((&L_12), 0, sizeof(L_12));
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_12), L_9, L_11, /*hidden argument*/Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_RuntimeMethod_var);
V_1 = L_12;
V_2 = 0;
V_3 = 0;
V_4 = 0;
goto IL_00a6;
}
IL_004b:
{
int32_t L_13 = V_4;
int32_t* L_14;
L_14 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___2_indices))->____pointer_0))->value, (L_13), ((&___2_indices))->____length_1);
int32_t L_15 = *((int32_t*)L_14);
int32_t L_16 = L_15;
int32_t L_17 = V_2;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
int32_t L_18 = V_5;
G_B4_0 = L_16;
if (!L_18)
{
G_B5_0 = L_16;
goto IL_007d;
}
}
{
int32_t L_19 = V_2;
int32_t L_20 = V_5;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_21;
L_21 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(__this, L_19, L_20, NULL);
V_6 = L_21;
int32_t L_22 = V_3;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_23;
L_23 = Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline((&V_1), L_22, Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030((&V_6), L_23, ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
int32_t L_24 = V_3;
int32_t L_25 = V_5;
V_3 = ((int32_t)il2cpp_codegen_add(L_24, L_25));
G_B5_0 = G_B4_0;
}
IL_007d:
{
int32_t L_26 = ___0_oldValueLength;
V_2 = ((int32_t)il2cpp_codegen_add(G_B5_0, L_26));
String_t* L_27 = ___1_newValue;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_28;
L_28 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_27, NULL);
V_6 = L_28;
int32_t L_29 = V_3;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_30;
L_30 = Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline((&V_1), L_29, Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030((&V_6), L_30, ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
int32_t L_31 = V_3;
String_t* L_32 = ___1_newValue;
NullCheck(L_32);
int32_t L_33;
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
V_3 = ((int32_t)il2cpp_codegen_add(L_31, L_33));
int32_t L_34 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_34, 1));
}
IL_00a6:
{
int32_t L_35 = V_4;
int32_t L_36;
L_36 = ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline((&___2_indices), ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_004b;
}
}
{
int32_t L_37 = V_2;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_38;
L_38 = MemoryExtensions_AsSpan_mCDA6B03F6605094C599D7865D23DFB6A04DEE3B6_inline(__this, L_37, NULL);
V_6 = L_38;
int32_t L_39 = V_3;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_40;
L_40 = Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline((&V_1), L_39, Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030((&V_6), L_40, ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
String_t* L_41 = V_0;
return L_41;
}
}
// System.String[] System.String::Split(System.Char,System.StringSplitOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4 (String_t* __this, Il2CppChar ___0_separator, int32_t ___1_options, 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 L_0;
memset((&L_0), 0, sizeof(L_0));
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_0), (&___0_separator), 1, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
int32_t L_1 = ___1_options;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2;
L_2 = String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83(__this, L_0, ((int32_t)2147483647LL), L_1, NULL);
return L_2;
}
}
// System.String[] System.String::Split(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_separator, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_separator;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
L_1 = ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B(L_0, ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2;
L_2 = String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83(__this, L_1, ((int32_t)2147483647LL), 0, NULL);
return L_2;
}
}
// System.String[] System.String::SplitInternal(System.ReadOnlySpan`1<System.Char>,System.Int32,System.StringSplitOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separators, int32_t ___1_count, int32_t ___2_options, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 V_1;
memset((&V_1), 0, sizeof(V_1));
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B V_2;
memset((&V_2), 0, sizeof(V_2));
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 V_3;
memset((&V_3), 0, sizeof(V_3));
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 V_4;
memset((&V_4), 0, sizeof(V_4));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B16_0 = NULL;
{
int32_t L_0 = ___1_count;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___2_options;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001c;
}
}
{
int32_t L_3 = ___2_options;
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_0032;
}
}
IL_001c:
{
int32_t L_4 = ___2_options;
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringSplitOptions_t4DD892C76C70DD4800FC1B76054D69826F770062_il2cpp_TypeInfo_var)), &L_5);
String_t* L_7;
L_7 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C)), L_6, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_SplitInternal_m2A2DBF6FFA7F939DF297183C1B3E9D0CB039ED83_RuntimeMethod_var)));
}
IL_0032:
{
int32_t L_9 = ___2_options;
V_0 = (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0);
int32_t L_10 = ___1_count;
if (!L_10)
{
goto IL_0045;
}
}
{
bool L_11 = V_0;
if (!L_11)
{
goto IL_004b;
}
}
{
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if (L_12)
{
goto IL_004b;
}
}
IL_0045:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13;
L_13 = Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_inline(Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_RuntimeMethod_var);
return L_13;
}
IL_004b:
{
int32_t L_14 = ___1_count;
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_005a;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, __this);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)__this);
return L_16;
}
IL_005a:
{
uintptr_t L_17 = ((uintptr_t)((int32_t)512));
int8_t* L_18 = (int8_t*) (L_17 ? alloca(L_17) : NULL);
memset(L_18, 0, L_17);
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_19;
memset((&L_19), 0, sizeof(L_19));
Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline((&L_19), (void*)(L_18), ((int32_t)128), /*hidden argument*/Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
V_1 = L_19;
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_20 = V_1;
ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD((&V_2), L_20, ValueListBuilder_1__ctor_mDD8A52FE36B447DA539428AFB8115BA399280DBD_RuntimeMethod_var);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_21 = ___0_separators;
String_MakeSeparatorList_mFD6DCAE8C79E61E57BA56E48C6580DC7A141D723(__this, L_21, (&V_2), NULL);
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_22;
L_22 = ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D((&V_2), ValueListBuilder_1_AsSpan_m58381E593F71C663EEF492F25B973DB5E1502C2D_RuntimeMethod_var);
V_3 = L_22;
int32_t L_23;
L_23 = ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline((&V_3), ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
if (L_23)
{
goto IL_009a;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = L_24;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, __this);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)__this);
return L_25;
}
IL_009a:
{
bool L_26 = V_0;
if (L_26)
{
goto IL_00b2;
}
}
{
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_27 = V_3;
il2cpp_codegen_initobj((&V_4), sizeof(ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282));
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_28 = V_4;
int32_t L_29 = ___1_count;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30;
L_30 = String_SplitKeepEmptyEntries_mC09E09ED2DDB055BF1FD512E0AD3CAA0FBEAEAD5(__this, L_27, L_28, 1, L_29, NULL);
G_B16_0 = L_30;
goto IL_00c5;
}
IL_00b2:
{
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_31 = V_3;
il2cpp_codegen_initobj((&V_4), sizeof(ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282));
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_32 = V_4;
int32_t L_33 = ___1_count;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_34;
L_34 = String_SplitOmitEmptyEntries_m6876A49664AE845F4CBC8591CBA2E765233058B4(__this, L_31, L_32, 1, L_33, NULL);
G_B16_0 = L_34;
}
IL_00c5:
{
ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_inline((&V_2), ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_RuntimeMethod_var);
return G_B16_0;
}
}
// System.String[] System.String::SplitKeepEmptyEntries(System.ReadOnlySpan`1<System.Int32>,System.ReadOnlySpan`1<System.Int32>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_SplitKeepEmptyEntries_mC09E09ED2DDB055BF1FD512E0AD3CAA0FBEAEAD5 (String_t* __this, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___0_sepList, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___1_lengthList, int32_t ___2_defaultLength, int32_t ___3_count, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_3 = NULL;
int32_t V_4 = 0;
int32_t G_B3_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
int32_t G_B7_1 = 0;
{
V_0 = 0;
V_1 = 0;
int32_t L_0 = ___3_count;
___3_count = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
int32_t L_1;
L_1 = ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline((&___0_sepList), ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
int32_t L_2 = ___3_count;
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0019;
}
}
{
int32_t L_3 = ___3_count;
G_B3_0 = L_3;
goto IL_0020;
}
IL_0019:
{
int32_t L_4;
L_4 = ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline((&___0_sepList), ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
G_B3_0 = L_4;
}
IL_0020:
{
V_2 = G_B3_0;
int32_t L_5 = V_2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_5, 1)));
V_3 = L_6;
V_4 = 0;
goto IL_0071;
}
IL_002f:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = V_3;
int32_t L_8 = V_1;
int32_t L_9 = L_8;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
int32_t L_10 = V_0;
int32_t L_11 = V_4;
int32_t* L_12;
L_12 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___0_sepList))->____pointer_0))->value, (L_11), ((&___0_sepList))->____length_1);
int32_t L_13 = *((int32_t*)L_12);
int32_t L_14 = V_0;
String_t* L_15;
L_15 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(__this, L_10, ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), NULL);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_15);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (String_t*)L_15);
int32_t L_16 = V_4;
int32_t* L_17;
L_17 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___0_sepList))->____pointer_0))->value, (L_16), ((&___0_sepList))->____length_1);
int32_t L_18 = *((int32_t*)L_17);
bool L_19;
L_19 = ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B((&___1_lengthList), ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_RuntimeMethod_var);
G_B5_0 = L_18;
if (L_19)
{
G_B6_0 = L_18;
goto IL_0068;
}
}
{
int32_t L_20 = V_4;
int32_t* L_21;
L_21 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___1_lengthList))->____pointer_0))->value, (L_20), ((&___1_lengthList))->____length_1);
int32_t L_22 = *((int32_t*)L_21);
G_B7_0 = L_22;
G_B7_1 = G_B5_0;
goto IL_0069;
}
IL_0068:
{
int32_t L_23 = ___2_defaultLength;
G_B7_0 = L_23;
G_B7_1 = G_B6_0;
}
IL_0069:
{
V_0 = ((int32_t)il2cpp_codegen_add(G_B7_1, G_B7_0));
int32_t L_24 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0071:
{
int32_t L_25 = V_4;
int32_t L_26 = V_2;
if ((((int32_t)L_25) >= ((int32_t)L_26)))
{
goto IL_007f;
}
}
{
int32_t L_27 = V_0;
int32_t L_28;
L_28 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_002f;
}
}
IL_007f:
{
int32_t L_29 = V_0;
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_29) >= ((int32_t)L_30)))
{
goto IL_0098;
}
}
{
int32_t L_31 = V_2;
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_0098;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = V_3;
int32_t L_33 = V_1;
int32_t L_34 = V_0;
String_t* L_35;
L_35 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(__this, L_34, NULL);
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_35);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (String_t*)L_35);
goto IL_00a4;
}
IL_0098:
{
int32_t L_36 = V_1;
int32_t L_37 = V_2;
if ((!(((uint32_t)L_36) == ((uint32_t)L_37))))
{
goto IL_00a4;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = V_3;
int32_t L_39 = V_1;
String_t* L_40 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, L_40);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (String_t*)L_40);
}
IL_00a4:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = V_3;
return L_41;
}
}
// System.String[] System.String::SplitOmitEmptyEntries(System.ReadOnlySpan`1<System.Int32>,System.ReadOnlySpan`1<System.Int32>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_SplitOmitEmptyEntries_m6876A49664AE845F4CBC8591CBA2E765233058B4 (String_t* __this, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___0_sepList, ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ___1_lengthList, int32_t ___2_defaultLength, int32_t ___3_count, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B7_0 = 0;
int32_t G_B9_0 = 0;
int32_t G_B9_1 = 0;
int32_t G_B13_0 = 0;
int32_t G_B12_0 = 0;
int32_t G_B14_0 = 0;
int32_t G_B14_1 = 0;
{
int32_t L_0;
L_0 = ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_inline((&___0_sepList), ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_RuntimeMethod_var);
V_0 = L_0;
int32_t L_1 = V_0;
int32_t L_2 = ___3_count;
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0011;
}
}
{
int32_t L_3 = ___3_count;
G_B3_0 = L_3;
goto IL_0014;
}
IL_0011:
{
int32_t L_4 = V_0;
G_B3_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
}
IL_0014:
{
V_1 = G_B3_0;
int32_t L_5 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_5);
V_2 = L_6;
V_3 = 0;
V_4 = 0;
V_6 = 0;
goto IL_00ba;
}
IL_0029:
{
int32_t L_7 = V_6;
int32_t* L_8;
L_8 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___0_sepList))->____pointer_0))->value, (L_7), ((&___0_sepList))->____length_1);
int32_t L_9 = *((int32_t*)L_8);
int32_t L_10 = V_3;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))) <= ((int32_t)0)))
{
goto IL_0054;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = V_2;
int32_t L_12 = V_4;
int32_t L_13 = L_12;
V_4 = ((int32_t)il2cpp_codegen_add(L_13, 1));
int32_t L_14 = V_3;
int32_t L_15 = V_6;
int32_t* L_16;
L_16 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___0_sepList))->____pointer_0))->value, (L_15), ((&___0_sepList))->____length_1);
int32_t L_17 = *((int32_t*)L_16);
int32_t L_18 = V_3;
String_t* L_19;
L_19 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(__this, L_14, ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_19);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (String_t*)L_19);
}
IL_0054:
{
int32_t L_20 = V_6;
int32_t* L_21;
L_21 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___0_sepList))->____pointer_0))->value, (L_20), ((&___0_sepList))->____length_1);
int32_t L_22 = *((int32_t*)L_21);
bool L_23;
L_23 = ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B((&___1_lengthList), ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_RuntimeMethod_var);
G_B7_0 = L_22;
if (L_23)
{
G_B8_0 = L_22;
goto IL_0073;
}
}
{
int32_t L_24 = V_6;
int32_t* L_25;
L_25 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___1_lengthList))->____pointer_0))->value, (L_24), ((&___1_lengthList))->____length_1);
int32_t L_26 = *((int32_t*)L_25);
G_B9_0 = L_26;
G_B9_1 = G_B7_0;
goto IL_0074;
}
IL_0073:
{
int32_t L_27 = ___2_defaultLength;
G_B9_0 = L_27;
G_B9_1 = G_B8_0;
}
IL_0074:
{
V_3 = ((int32_t)il2cpp_codegen_add(G_B9_1, G_B9_0));
int32_t L_28 = V_4;
int32_t L_29 = ___3_count;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_29, 1))))))
{
goto IL_00b4;
}
}
{
goto IL_0099;
}
IL_0080:
{
int32_t L_30 = V_3;
bool L_31;
L_31 = ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B((&___1_lengthList), ReadOnlySpan_1_get_IsEmpty_mC6C1A0EA0A982CC47A19F1F4042218D793D50C8B_RuntimeMethod_var);
G_B12_0 = L_30;
if (L_31)
{
G_B13_0 = L_30;
goto IL_0096;
}
}
{
int32_t L_32 = V_6;
int32_t* L_33;
L_33 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___1_lengthList))->____pointer_0))->value, (L_32), ((&___1_lengthList))->____length_1);
int32_t L_34 = *((int32_t*)L_33);
G_B14_0 = L_34;
G_B14_1 = G_B12_0;
goto IL_0097;
}
IL_0096:
{
int32_t L_35 = ___2_defaultLength;
G_B14_0 = L_35;
G_B14_1 = G_B13_0;
}
IL_0097:
{
V_3 = ((int32_t)il2cpp_codegen_add(G_B14_1, G_B14_0));
}
IL_0099:
{
int32_t L_36 = V_6;
int32_t L_37 = V_0;
if ((((int32_t)L_36) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_37, 1)))))
{
goto IL_00cb;
}
}
{
int32_t L_38 = V_3;
int32_t L_39 = V_6;
int32_t L_40 = ((int32_t)il2cpp_codegen_add(L_39, 1));
V_6 = L_40;
int32_t* L_41;
L_41 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&(((&___0_sepList))->____pointer_0))->value, (L_40), ((&___0_sepList))->____length_1);
int32_t L_42 = *((int32_t*)L_41);
if ((((int32_t)L_38) == ((int32_t)L_42)))
{
goto IL_0080;
}
}
{
goto IL_00cb;
}
IL_00b4:
{
int32_t L_43 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_43, 1));
}
IL_00ba:
{
int32_t L_44 = V_6;
int32_t L_45 = V_0;
if ((((int32_t)L_44) >= ((int32_t)L_45)))
{
goto IL_00cb;
}
}
{
int32_t L_46 = V_3;
int32_t L_47;
L_47 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_46) < ((int32_t)L_47)))
{
goto IL_0029;
}
}
IL_00cb:
{
int32_t L_48 = V_3;
int32_t L_49;
L_49 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_48) >= ((int32_t)L_49)))
{
goto IL_00e4;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = V_2;
int32_t L_51 = V_4;
int32_t L_52 = L_51;
V_4 = ((int32_t)il2cpp_codegen_add(L_52, 1));
int32_t L_53 = V_3;
String_t* L_54;
L_54 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(__this, L_53, NULL);
NullCheck(L_50);
ArrayElementTypeCheck (L_50, L_54);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(L_52), (String_t*)L_54);
}
IL_00e4:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = V_2;
V_5 = L_55;
int32_t L_56 = V_4;
int32_t L_57 = V_1;
if ((((int32_t)L_56) == ((int32_t)L_57)))
{
goto IL_010f;
}
}
{
int32_t L_58 = V_4;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_58);
V_5 = L_59;
V_7 = 0;
goto IL_0109;
}
IL_00fa:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = V_5;
int32_t L_61 = V_7;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_62 = V_2;
int32_t L_63 = V_7;
NullCheck(L_62);
int32_t L_64 = L_63;
String_t* L_65 = (L_62)->GetAt(static_cast<il2cpp_array_size_t>(L_64));
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_65);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(L_61), (String_t*)L_65);
int32_t L_66 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_66, 1));
}
IL_0109:
{
int32_t L_67 = V_7;
int32_t L_68 = V_4;
if ((((int32_t)L_67) < ((int32_t)L_68)))
{
goto IL_00fa;
}
}
IL_010f:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_69 = V_5;
return L_69;
}
}
// System.Void System.String::MakeSeparatorList(System.ReadOnlySpan`1<System.Char>,System.Collections.Generic.ValueListBuilder`1<System.Int32>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_MakeSeparatorList_mFD6DCAE8C79E61E57BA56E48C6580DC7A141D723 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separators, ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* ___1_sepListBuilder, 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_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
Il2CppChar V_1 = 0x0;
Il2CppChar V_2 = 0x0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
Il2CppChar V_7 = 0x0;
int32_t V_8 = 0;
Il2CppChar V_9 = 0x0;
ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B V_10;
memset((&V_10), 0, sizeof(V_10));
uint32_t* V_11 = NULL;
int32_t V_12 = 0;
Il2CppChar V_13 = 0x0;
{
int32_t L_0;
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_separators), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
V_3 = L_0;
int32_t L_1 = V_3;
switch (L_1)
{
case 0:
{
goto IL_0023;
}
case 1:
{
goto IL_0050;
}
case 2:
{
goto IL_0083;
}
case 3:
{
goto IL_00c9;
}
}
}
{
goto IL_011e;
}
IL_0023:
{
V_4 = 0;
goto IL_0045;
}
IL_0028:
{
int32_t L_2 = V_4;
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_3, NULL);
if (!L_4)
{
goto IL_003f;
}
}
{
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* L_5 = ___1_sepListBuilder;
int32_t L_6 = V_4;
ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline(L_5, L_6, ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
}
IL_003f:
{
int32_t L_7 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_0045:
{
int32_t L_8 = V_4;
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0028;
}
}
{
return;
}
IL_0050:
{
Il2CppChar* L_10;
L_10 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_separators))->____pointer_0))->value, (0), ((&___0_separators))->____length_1);
int32_t L_11 = *((uint16_t*)L_10);
V_0 = L_11;
V_5 = 0;
goto IL_0078;
}
IL_005f:
{
int32_t L_12 = V_5;
Il2CppChar L_13;
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_12, NULL);
Il2CppChar L_14 = V_0;
if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
{
goto IL_0072;
}
}
{
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* L_15 = ___1_sepListBuilder;
int32_t L_16 = V_5;
ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline(L_15, L_16, ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
}
IL_0072:
{
int32_t L_17 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0078:
{
int32_t L_18 = V_5;
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_005f;
}
}
{
return;
}
IL_0083:
{
Il2CppChar* L_20;
L_20 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_separators))->____pointer_0))->value, (0), ((&___0_separators))->____length_1);
int32_t L_21 = *((uint16_t*)L_20);
V_0 = L_21;
Il2CppChar* L_22;
L_22 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_separators))->____pointer_0))->value, (1), ((&___0_separators))->____length_1);
int32_t L_23 = *((uint16_t*)L_22);
V_1 = L_23;
V_6 = 0;
goto IL_00be;
}
IL_009c:
{
int32_t L_24 = V_6;
Il2CppChar L_25;
L_25 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_24, NULL);
V_7 = L_25;
Il2CppChar L_26 = V_7;
Il2CppChar L_27 = V_0;
if ((((int32_t)L_26) == ((int32_t)L_27)))
{
goto IL_00b0;
}
}
{
Il2CppChar L_28 = V_7;
Il2CppChar L_29 = V_1;
if ((!(((uint32_t)L_28) == ((uint32_t)L_29))))
{
goto IL_00b8;
}
}
IL_00b0:
{
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* L_30 = ___1_sepListBuilder;
int32_t L_31 = V_6;
ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline(L_30, L_31, ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
}
IL_00b8:
{
int32_t L_32 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_32, 1));
}
IL_00be:
{
int32_t L_33 = V_6;
int32_t L_34;
L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_33) < ((int32_t)L_34)))
{
goto IL_009c;
}
}
{
return;
}
IL_00c9:
{
Il2CppChar* L_35;
L_35 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_separators))->____pointer_0))->value, (0), ((&___0_separators))->____length_1);
int32_t L_36 = *((uint16_t*)L_35);
V_0 = L_36;
Il2CppChar* L_37;
L_37 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_separators))->____pointer_0))->value, (1), ((&___0_separators))->____length_1);
int32_t L_38 = *((uint16_t*)L_37);
V_1 = L_38;
Il2CppChar* L_39;
L_39 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_separators))->____pointer_0))->value, (2), ((&___0_separators))->____length_1);
int32_t L_40 = *((uint16_t*)L_39);
V_2 = L_40;
V_8 = 0;
goto IL_0113;
}
IL_00ec:
{
int32_t L_41 = V_8;
Il2CppChar L_42;
L_42 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_41, NULL);
V_9 = L_42;
Il2CppChar L_43 = V_9;
Il2CppChar L_44 = V_0;
if ((((int32_t)L_43) == ((int32_t)L_44)))
{
goto IL_0105;
}
}
{
Il2CppChar L_45 = V_9;
Il2CppChar L_46 = V_1;
if ((((int32_t)L_45) == ((int32_t)L_46)))
{
goto IL_0105;
}
}
{
Il2CppChar L_47 = V_9;
Il2CppChar L_48 = V_2;
if ((!(((uint32_t)L_47) == ((uint32_t)L_48))))
{
goto IL_010d;
}
}
IL_0105:
{
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* L_49 = ___1_sepListBuilder;
int32_t L_50 = V_8;
ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline(L_49, L_50, ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
}
IL_010d:
{
int32_t L_51 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_51, 1));
}
IL_0113:
{
int32_t L_52 = V_8;
int32_t L_53;
L_53 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_52) < ((int32_t)L_53)))
{
goto IL_00ec;
}
}
{
return;
}
IL_011e:
{
il2cpp_codegen_initobj((&V_10), sizeof(ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B));
V_11 = (uint32_t*)((uintptr_t)(&V_10));
uint32_t* L_54 = V_11;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_55 = ___0_separators;
String_InitializeProbabilisticMap_m4DCE6D6A5B38DF9D991C1B5EF46730A10467FA8B(L_54, L_55, NULL);
V_12 = 0;
goto IL_0174;
}
IL_0138:
{
int32_t L_56 = V_12;
Il2CppChar L_57;
L_57 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_56, NULL);
V_13 = L_57;
uint32_t* L_58 = V_11;
Il2CppChar L_59 = V_13;
bool L_60;
L_60 = String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E(L_58, (uint8_t)((int32_t)(uint8_t)L_59), NULL);
if (!L_60)
{
goto IL_016e;
}
}
{
uint32_t* L_61 = V_11;
Il2CppChar L_62 = V_13;
bool L_63;
L_63 = String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E(L_61, (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_62>>8))), NULL);
if (!L_63)
{
goto IL_016e;
}
}
{
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_64 = ___0_separators;
Il2CppChar L_65 = V_13;
bool L_66;
L_66 = MemoryExtensions_Contains_m46A55A415E71C1C3D19C601188EB6A8EE386B911(L_64, L_65, NULL);
if (!L_66)
{
goto IL_016e;
}
}
{
ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* L_67 = ___1_sepListBuilder;
int32_t L_68 = V_12;
ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_inline(L_67, L_68, ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_RuntimeMethod_var);
}
IL_016e:
{
int32_t L_69 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add(L_69, 1));
}
IL_0174:
{
int32_t L_70 = V_12;
int32_t L_71;
L_71 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_70) < ((int32_t)L_71)))
{
goto IL_0138;
}
}
{
return;
}
}
// 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)
{
{
int32_t L_0 = ___0_startIndex;
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_2 = ___0_startIndex;
String_t* L_3;
L_3 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(__this, L_0, ((int32_t)il2cpp_codegen_subtract(L_1, L_2)), NULL);
return L_3;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___0_startIndex;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___0_startIndex;
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_2) <= ((int32_t)L_3)))
{
goto IL_002d;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD1FF669F3ECB73800536C07454B4DAAE967F218F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE_RuntimeMethod_var)));
}
IL_002d:
{
int32_t L_5 = ___1_length;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0041;
}
}
{
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*)&_stringLiteral7C26512813CDF9F1A470756AB50D2C3272536A90)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE_RuntimeMethod_var)));
}
IL_0041:
{
int32_t L_7 = ___0_startIndex;
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_9 = ___1_length;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9)))))
{
goto IL_005c;
}
}
{
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*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2EF947F393DF2D510E54AA24E9F66B1C7A034D18)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE_RuntimeMethod_var)));
}
IL_005c:
{
int32_t L_11 = ___1_length;
if (L_11)
{
goto IL_0065;
}
}
{
String_t* L_12 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_12;
}
IL_0065:
{
int32_t L_13 = ___0_startIndex;
if (L_13)
{
goto IL_0073;
}
}
{
int32_t L_14 = ___1_length;
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
{
goto IL_0073;
}
}
{
return __this;
}
IL_0073:
{
int32_t L_16 = ___0_startIndex;
int32_t L_17 = ___1_length;
String_t* L_18;
L_18 = String_InternalSubString_m81B31C2405FA023026DD1F063F44EB3F5F1047C5(__this, L_16, L_17, NULL);
return L_18;
}
}
// System.String System.String::InternalSubString(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_InternalSubString_m81B31C2405FA023026DD1F063F44EB3F5F1047C5 (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
int32_t L_0 = ___1_length;
String_t* L_1;
L_1 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_0, NULL);
String_t* L_2 = L_1;
NullCheck(L_2);
Il2CppChar* L_3 = (&L_2->____firstChar_5);
V_0 = L_3;
Il2CppChar* L_4 = V_0;
Il2CppChar* L_5 = (&__this->____firstChar_5);
V_2 = L_5;
Il2CppChar* L_6 = V_2;
V_1 = (Il2CppChar*)((uintptr_t)L_6);
Il2CppChar* L_7 = V_1;
int32_t L_8 = ___0_startIndex;
int32_t L_9 = ___1_length;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((uintptr_t)L_4), ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_8), 2)))), L_9, NULL);
V_2 = (Il2CppChar*)((uintptr_t)0);
V_0 = (Il2CppChar*)((uintptr_t)0);
return L_2;
}
}
// System.String System.String::ToLower()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD (String_t* __this, 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);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(8 /* System.String System.Globalization.TextInfo::ToLower(System.String) */, L_1, __this);
return L_2;
}
}
// System.String System.String::ToLower(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E (String_t* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, const RuntimeMethod* method)
{
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_culture;
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*)&_stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E_RuntimeMethod_var)));
}
IL_000e:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___0_culture;
NullCheck(L_2);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_3;
L_3 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(8 /* System.String System.Globalization.TextInfo::ToLower(System.String) */, L_3, __this);
return L_4;
}
}
// System.String System.String::ToLowerInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2 (String_t* __this, 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);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(8 /* System.String System.Globalization.TextInfo::ToLower(System.String) */, L_1, __this);
return L_2;
}
}
// System.String System.String::ToUpper()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49 (String_t* __this, 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);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(10 /* System.String System.Globalization.TextInfo::ToUpper(System.String) */, L_1, __this);
return L_2;
}
}
// System.String System.String::ToUpperInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpperInvariant_mD73F658CDE1280A527231DC305B66CF09B64E5AB (String_t* __this, 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);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(10 /* System.String System.Globalization.TextInfo::ToUpper(System.String) */, L_1, __this);
return L_2;
}
}
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575(__this, 2, NULL);
return L_0;
}
}
// System.String System.String::Trim(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mF5081365E55C31B636F8145F42AEF61868175A5A (String_t* __this, Il2CppChar ___0_trimChar, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = String_TrimHelper_m3DAC04D0C8870DC7CD961F9D9346CF967318E8AF(__this, (Il2CppChar*)((uintptr_t)(&___0_trimChar)), 1, 2, NULL);
return L_0;
}
}
// System.String System.String::Trim(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_trimChars;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_trimChars;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_000f;
}
}
IL_0007:
{
String_t* L_2;
L_2 = String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575(__this, 2, NULL);
return L_2;
}
IL_000f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___0_trimChars;
NullCheck(L_3);
V_1 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
Il2CppChar* L_4 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_4);
Il2CppChar* L_5 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_trimChars;
NullCheck(L_6);
String_t* L_7;
L_7 = String_TrimHelper_m3DAC04D0C8870DC7CD961F9D9346CF967318E8AF(__this, L_5, ((int32_t)(((RuntimeArray*)L_6)->max_length)), 2, NULL);
return L_7;
}
}
// System.String System.String::TrimStart(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimStart_m67833D80326BEA11CC3517CE03CD7B16669BCEEC (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_trimChars;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_trimChars;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_000f;
}
}
IL_0007:
{
String_t* L_2;
L_2 = String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575(__this, 0, NULL);
return L_2;
}
IL_000f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___0_trimChars;
NullCheck(L_3);
V_1 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
Il2CppChar* L_4 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_4);
Il2CppChar* L_5 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_trimChars;
NullCheck(L_6);
String_t* L_7;
L_7 = String_TrimHelper_m3DAC04D0C8870DC7CD961F9D9346CF967318E8AF(__this, L_5, ((int32_t)(((RuntimeArray*)L_6)->max_length)), 0, NULL);
return L_7;
}
}
// System.String System.String::TrimEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimEnd_m25B1EA658EE07ADFED51FED61D630E5625336AB5 (String_t* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575(__this, 1, NULL);
return L_0;
}
}
// System.String System.String::TrimEnd(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimEnd_mD7CFB0999EEEE20E3A869516EBCE07E8AB5BD529 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_trimChars;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_trimChars;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_000f;
}
}
IL_0007:
{
String_t* L_2;
L_2 = String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575(__this, 1, NULL);
return L_2;
}
IL_000f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___0_trimChars;
NullCheck(L_3);
V_1 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
Il2CppChar* L_4 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_4);
Il2CppChar* L_5 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_trimChars;
NullCheck(L_6);
String_t* L_7;
L_7 = String_TrimHelper_m3DAC04D0C8870DC7CD961F9D9346CF967318E8AF(__this, L_5, ((int32_t)(((RuntimeArray*)L_6)->max_length)), 1, NULL);
return L_7;
}
}
// System.String System.String::TrimWhiteSpaceHelper(System.String/TrimType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimWhiteSpaceHelper_mA609435C4B34ACBCCF712612CD2AE19D77878575 (String_t* __this, int32_t ___0_trimType, 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 V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
V_1 = 0;
int32_t L_1 = ___0_trimType;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_002e;
}
}
{
V_1 = 0;
goto IL_0025;
}
IL_0013:
{
int32_t L_2 = V_1;
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_3, NULL);
if (!L_4)
{
goto IL_002e;
}
}
{
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
}
IL_0025:
{
int32_t L_6 = V_1;
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_0013;
}
}
IL_002e:
{
int32_t L_8 = ___0_trimType;
if (!L_8)
{
goto IL_0052;
}
}
{
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
goto IL_004e;
}
IL_003c:
{
int32_t L_10 = V_0;
Il2CppChar L_11;
L_11 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_10, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_11, NULL);
if (!L_12)
{
goto IL_0052;
}
}
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
}
IL_004e:
{
int32_t L_14 = V_0;
int32_t L_15 = V_1;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_003c;
}
}
IL_0052:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
String_t* L_18;
L_18 = String_CreateTrimmedString_m4A6EAD80C2FB70EFB189DFFBD7B04BE20215393F(__this, L_16, L_17, NULL);
return L_18;
}
}
// System.String System.String::TrimHelper(System.Char*,System.Int32,System.String/TrimType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimHelper_m3DAC04D0C8870DC7CD961F9D9346CF967318E8AF (String_t* __this, Il2CppChar* ___0_trimChars, int32_t ___1_trimCharsLength, int32_t ___2_trimType, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
V_1 = 0;
int32_t L_1 = ___2_trimType;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0044;
}
}
{
V_1 = 0;
goto IL_003b;
}
IL_0013:
{
V_2 = 0;
int32_t L_2 = V_1;
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_2, NULL);
V_3 = L_3;
V_2 = 0;
goto IL_002f;
}
IL_0021:
{
Il2CppChar* L_4 = ___0_trimChars;
int32_t L_5 = V_2;
int32_t L_6 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2)))));
Il2CppChar L_7 = V_3;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_0033;
}
}
{
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_002f:
{
int32_t L_9 = V_2;
int32_t L_10 = ___1_trimCharsLength;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_0021;
}
}
IL_0033:
{
int32_t L_11 = V_2;
int32_t L_12 = ___1_trimCharsLength;
if ((((int32_t)L_11) == ((int32_t)L_12)))
{
goto IL_0044;
}
}
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003b:
{
int32_t L_14 = V_1;
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
IL_0044:
{
int32_t L_16 = ___2_trimType;
if (!L_16)
{
goto IL_0087;
}
}
{
int32_t L_17;
L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
goto IL_0083;
}
IL_0052:
{
V_4 = 0;
int32_t L_18 = V_0;
Il2CppChar L_19;
L_19 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(__this, L_18, NULL);
V_5 = L_19;
V_4 = 0;
goto IL_0075;
}
IL_0063:
{
Il2CppChar* L_20 = ___0_trimChars;
int32_t L_21 = V_4;
int32_t L_22 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_21), 2)))));
Il2CppChar L_23 = V_5;
if ((((int32_t)L_22) == ((int32_t)L_23)))
{
goto IL_007a;
}
}
{
int32_t L_24 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0075:
{
int32_t L_25 = V_4;
int32_t L_26 = ___1_trimCharsLength;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0063;
}
}
IL_007a:
{
int32_t L_27 = V_4;
int32_t L_28 = ___1_trimCharsLength;
if ((((int32_t)L_27) == ((int32_t)L_28)))
{
goto IL_0087;
}
}
{
int32_t L_29 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_29, 1));
}
IL_0083:
{
int32_t L_30 = V_0;
int32_t L_31 = V_1;
if ((((int32_t)L_30) >= ((int32_t)L_31)))
{
goto IL_0052;
}
}
IL_0087:
{
int32_t L_32 = V_1;
int32_t L_33 = V_0;
String_t* L_34;
L_34 = String_CreateTrimmedString_m4A6EAD80C2FB70EFB189DFFBD7B04BE20215393F(__this, L_32, L_33, NULL);
return L_34;
}
}
// System.String System.String::CreateTrimmedString(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateTrimmedString_m4A6EAD80C2FB70EFB189DFFBD7B04BE20215393F (String_t* __this, int32_t ___0_start, int32_t ___1_end, 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;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___1_end;
int32_t L_1 = ___0_start;
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_0, L_1)), 1));
int32_t L_2 = V_0;
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_2) == ((int32_t)L_3)))
{
goto IL_0021;
}
}
{
int32_t L_4 = V_0;
if (!L_4)
{
goto IL_001b;
}
}
{
int32_t L_5 = ___0_start;
int32_t L_6 = V_0;
String_t* L_7;
L_7 = String_InternalSubString_m81B31C2405FA023026DD1F063F44EB3F5F1047C5(__this, L_5, L_6, NULL);
return L_7;
}
IL_001b:
{
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_8;
}
IL_0021:
{
return __this;
}
}
// System.Boolean System.String::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
int32_t L_1;
L_1 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(__this, L_0, 4, NULL);
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// 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)
{
{
Il2CppChar* L_0 = (&__this->____firstChar_5);
Il2CppChar L_1 = ___0_value;
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_3;
L_3 = SpanHelpers_IndexOf_m1EBE4594F5288D2297A3A8E8E4F365BE4BD211DC(L_0, L_1, L_2, NULL);
return L_3;
}
}
// 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)
{
{
Il2CppChar L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_3 = ___1_startIndex;
int32_t L_4;
L_4 = String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB(__this, L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, L_3)), NULL);
return L_4;
}
}
// System.Int32 System.String::IndexOf(System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___1_startIndex;
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0019;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB_RuntimeMethod_var)));
}
IL_0019:
{
int32_t L_3 = ___2_count;
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_5 = ___1_startIndex;
if ((!(((uint32_t)L_3) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5))))))
{
goto IL_0034;
}
}
{
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*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB_RuntimeMethod_var)));
}
IL_0034:
{
Il2CppChar* L_7 = (&__this->____firstChar_5);
int32_t L_8 = ___1_startIndex;
Il2CppChar* L_9;
L_9 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_7, L_8);
Il2CppChar L_10 = ___0_value;
int32_t L_11 = ___2_count;
int32_t L_12;
L_12 = SpanHelpers_IndexOf_m1EBE4594F5288D2297A3A8E8E4F365BE4BD211DC(L_9, L_10, L_11, NULL);
V_0 = L_12;
int32_t L_13 = V_0;
if ((((int32_t)L_13) == ((int32_t)(-1))))
{
goto IL_0050;
}
}
{
int32_t L_14 = V_0;
int32_t L_15 = ___1_startIndex;
return ((int32_t)il2cpp_codegen_add(L_14, L_15));
}
IL_0050:
{
int32_t L_16 = V_0;
return L_16;
}
}
// System.Int32 System.String::IndexOfAny(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_anyOf;
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_2;
L_2 = String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75(__this, L_0, 0, L_1, NULL);
return L_2;
}
}
// System.Int32 System.String::IndexOfAny(System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_m1AE18DB3B14A0D05EF4A2D3403D4DC1930A199F3 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_anyOf;
int32_t L_1 = ___1_startIndex;
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_3 = ___1_startIndex;
int32_t L_4;
L_4 = String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75(__this, L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, L_3)), NULL);
return L_4;
}
}
// System.Int32 System.String::IndexOfAny(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_anyOf;
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*)&_stringLiteral2F4BD08A34D0299781F26947721F0D0A3DD83595)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___1_startIndex;
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((!(((uint32_t)L_2) > ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75_RuntimeMethod_var)));
}
IL_0027:
{
int32_t L_5 = ___2_count;
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_7 = ___1_startIndex;
if ((!(((uint32_t)L_5) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_6, L_7))))))
{
goto IL_0042;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOfAny_m740B0108B7FAFFAB1C3F88E782B094195A4E3B75_RuntimeMethod_var)));
}
IL_0042:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = ___0_anyOf;
NullCheck(L_9);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))) == ((uint32_t)2))))
{
goto IL_0057;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___0_anyOf;
NullCheck(L_10);
int32_t L_11 = 0;
uint16_t L_12 = (uint16_t)(L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = ___0_anyOf;
NullCheck(L_13);
int32_t L_14 = 1;
uint16_t L_15 = (uint16_t)(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
int32_t L_16 = ___1_startIndex;
int32_t L_17 = ___2_count;
int32_t L_18;
L_18 = String_IndexOfAny_mD7A82CC9C4E9485FB9C5448545BF53DAA0A2F0A6(__this, L_12, L_15, L_16, L_17, NULL);
return L_18;
}
IL_0057:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = ___0_anyOf;
NullCheck(L_19);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))) == ((uint32_t)3))))
{
goto IL_006f;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = ___0_anyOf;
NullCheck(L_20);
int32_t L_21 = 0;
uint16_t L_22 = (uint16_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = ___0_anyOf;
NullCheck(L_23);
int32_t L_24 = 1;
uint16_t L_25 = (uint16_t)(L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = ___0_anyOf;
NullCheck(L_26);
int32_t L_27 = 2;
uint16_t L_28 = (uint16_t)(L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
int32_t L_29 = ___1_startIndex;
int32_t L_30 = ___2_count;
int32_t L_31;
L_31 = String_IndexOfAny_mC7BAE5F954A91328A6C2B97DD882C28911D20426(__this, L_22, L_25, L_28, L_29, L_30, NULL);
return L_31;
}
IL_006f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = ___0_anyOf;
NullCheck(L_32);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))) <= ((int32_t)3)))
{
goto IL_007f;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = ___0_anyOf;
int32_t L_34 = ___1_startIndex;
int32_t L_35 = ___2_count;
int32_t L_36;
L_36 = String_IndexOfCharArray_mE4F4023E9B1E4182D70CCD887C9B101C0FFD155B(__this, L_33, L_34, L_35, NULL);
return L_36;
}
IL_007f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = ___0_anyOf;
NullCheck(L_37);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))) == ((uint32_t)1))))
{
goto IL_0091;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = ___0_anyOf;
NullCheck(L_38);
int32_t L_39 = 0;
uint16_t L_40 = (uint16_t)(L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
int32_t L_41 = ___1_startIndex;
int32_t L_42 = ___2_count;
int32_t L_43;
L_43 = String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB(__this, L_40, L_41, L_42, NULL);
return L_43;
}
IL_0091:
{
return (-1);
}
}
// System.Int32 System.String::IndexOfAny(System.Char,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mD7A82CC9C4E9485FB9C5448545BF53DAA0A2F0A6 (String_t* __this, Il2CppChar ___0_value1, Il2CppChar ___1_value2, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar V_3 = 0x0;
{
Il2CppChar* L_0 = (&__this->____firstChar_5);
V_1 = L_0;
Il2CppChar* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
int32_t L_3 = ___2_startIndex;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_3), 2))));
goto IL_0051;
}
IL_0013:
{
Il2CppChar* L_4 = V_2;
int32_t L_5 = *((uint16_t*)L_4);
V_3 = L_5;
Il2CppChar L_6 = V_3;
Il2CppChar L_7 = ___0_value1;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_001e;
}
}
{
Il2CppChar L_8 = V_3;
Il2CppChar L_9 = ___1_value2;
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
{
goto IL_0026;
}
}
IL_001e:
{
Il2CppChar* L_10 = V_2;
Il2CppChar* L_11 = V_0;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_10, (intptr_t)L_11))/2))));
}
IL_0026:
{
Il2CppChar* L_12 = V_2;
int32_t L_13 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, 2)));
V_3 = L_13;
Il2CppChar L_14 = V_3;
Il2CppChar L_15 = ___0_value1;
if ((((int32_t)L_14) == ((int32_t)L_15)))
{
goto IL_0033;
}
}
{
Il2CppChar L_16 = V_3;
Il2CppChar L_17 = ___1_value2;
if ((!(((uint32_t)L_16) == ((uint32_t)L_17))))
{
goto IL_0044;
}
}
IL_0033:
{
int32_t L_18 = ___3_count;
if ((((int32_t)L_18) == ((int32_t)1)))
{
goto IL_0042;
}
}
{
Il2CppChar* L_19 = V_2;
Il2CppChar* L_20 = V_0;
return ((int32_t)il2cpp_codegen_add(((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_19, (intptr_t)L_20))/2)))), 1));
}
IL_0042:
{
return (-1);
}
IL_0044:
{
Il2CppChar* L_21 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
int32_t L_22 = ___3_count;
___3_count = ((int32_t)il2cpp_codegen_subtract(L_22, 2));
}
IL_0051:
{
int32_t L_23 = ___3_count;
if ((((int32_t)L_23) > ((int32_t)0)))
{
goto IL_0013;
}
}
{
return (-1);
}
}
// System.Int32 System.String::IndexOfAny(System.Char,System.Char,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mC7BAE5F954A91328A6C2B97DD882C28911D20426 (String_t* __this, Il2CppChar ___0_value1, Il2CppChar ___1_value2, Il2CppChar ___2_value3, int32_t ___3_startIndex, int32_t ___4_count, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar V_3 = 0x0;
{
Il2CppChar* L_0 = (&__this->____firstChar_5);
V_1 = L_0;
Il2CppChar* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
int32_t L_3 = ___3_startIndex;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_3), 2))));
goto IL_0035;
}
IL_0014:
{
Il2CppChar* L_4 = V_2;
int32_t L_5 = *((uint16_t*)L_4);
V_3 = L_5;
Il2CppChar L_6 = V_3;
Il2CppChar L_7 = ___0_value1;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_0023;
}
}
{
Il2CppChar L_8 = V_3;
Il2CppChar L_9 = ___1_value2;
if ((((int32_t)L_8) == ((int32_t)L_9)))
{
goto IL_0023;
}
}
{
Il2CppChar L_10 = V_3;
Il2CppChar L_11 = ___2_value3;
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
{
goto IL_002b;
}
}
IL_0023:
{
Il2CppChar* L_12 = V_2;
Il2CppChar* L_13 = V_0;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_12, (intptr_t)L_13))/2))));
}
IL_002b:
{
Il2CppChar* L_14 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, 2));
int32_t L_15 = ___4_count;
___4_count = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
}
IL_0035:
{
int32_t L_16 = ___4_count;
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0014;
}
}
{
return (-1);
}
}
// System.Int32 System.String::IndexOfCharArray(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfCharArray_mE4F4023E9B1E4182D70CCD887C9B101C0FFD155B (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B V_0;
memset((&V_0), 0, sizeof(V_0));
uint32_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
int32_t V_5 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B));
V_1 = (uint32_t*)((uintptr_t)(&V_0));
uint32_t* L_0 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_anyOf;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2;
L_2 = ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B(L_1, ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var);
String_InitializeProbabilisticMap_m4DCE6D6A5B38DF9D991C1B5EF46730A10467FA8B(L_0, L_2, NULL);
Il2CppChar* L_3 = (&__this->____firstChar_5);
V_3 = L_3;
Il2CppChar* L_4 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_4);
Il2CppChar* L_5 = V_2;
int32_t L_6 = ___1_startIndex;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2))));
goto IL_0068;
}
IL_002c:
{
Il2CppChar* L_7 = V_4;
int32_t L_8 = *((uint16_t*)L_7);
V_5 = L_8;
uint32_t* L_9 = V_1;
int32_t L_10 = V_5;
bool L_11;
L_11 = String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E(L_9, (uint8_t)((int32_t)(uint8_t)L_10), NULL);
if (!L_11)
{
goto IL_005d;
}
}
{
uint32_t* L_12 = V_1;
int32_t L_13 = V_5;
bool L_14;
L_14 = String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E(L_12, (uint8_t)((int32_t)(uint8_t)((int32_t)(L_13>>8))), NULL);
if (!L_14)
{
goto IL_005d;
}
}
{
int32_t L_15 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___0_anyOf;
bool L_17;
L_17 = String_ArrayContains_m1F98E7E22F990E9203EFA6637F7879B60DCD932B(((int32_t)(uint16_t)L_15), L_16, NULL);
if (!L_17)
{
goto IL_005d;
}
}
{
Il2CppChar* L_18 = V_4;
Il2CppChar* L_19 = V_2;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/2))));
}
IL_005d:
{
int32_t L_20 = ___2_count;
___2_count = ((int32_t)il2cpp_codegen_subtract(L_20, 1));
Il2CppChar* L_21 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, 2));
}
IL_0068:
{
int32_t L_22 = ___2_count;
if ((((int32_t)L_22) > ((int32_t)0)))
{
goto IL_002c;
}
}
{
return (-1);
}
}
// System.Void System.String::InitializeProbabilisticMap(System.UInt32*,System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_InitializeProbabilisticMap_m4DCE6D6A5B38DF9D991C1B5EF46730A10467FA8B (uint32_t* ___0_charMap, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_anyOf, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
uint32_t* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = (bool)0;
uint32_t* L_0 = ___0_charMap;
V_1 = L_0;
V_2 = 0;
goto IL_0031;
}
IL_0008:
{
int32_t L_1 = V_2;
Il2CppChar* L_2;
L_2 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_anyOf))->____pointer_0))->value, (L_1), ((&___1_anyOf))->____length_1);
int32_t L_3 = *((uint16_t*)L_2);
V_3 = L_3;
uint32_t* L_4 = V_1;
int32_t L_5 = V_3;
String_SetCharBit_mEF864CF24F3AFB9402F9E67019D505697EAC9207(L_4, (uint8_t)((int32_t)(uint8_t)L_5), NULL);
int32_t L_6 = V_3;
V_3 = ((int32_t)(L_6>>8));
int32_t L_7 = V_3;
if (L_7)
{
goto IL_0025;
}
}
{
V_0 = (bool)1;
goto IL_002d;
}
IL_0025:
{
uint32_t* L_8 = V_1;
int32_t L_9 = V_3;
String_SetCharBit_mEF864CF24F3AFB9402F9E67019D505697EAC9207(L_8, (uint8_t)((int32_t)(uint8_t)L_9), NULL);
}
IL_002d:
{
int32_t L_10 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0031:
{
int32_t L_11 = V_2;
int32_t L_12;
L_12 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_anyOf), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0008;
}
}
{
bool L_13 = V_0;
if (!L_13)
{
goto IL_0044;
}
}
{
uint32_t* L_14 = V_1;
uint32_t* L_15 = L_14;
int32_t L_16 = *((uint32_t*)L_15);
*((int32_t*)L_15) = (int32_t)((int32_t)(L_16|1));
}
IL_0044:
{
return;
}
}
// System.Boolean System.String::ArrayContains(System.Char,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_ArrayContains_m1F98E7E22F990E9203EFA6637F7879B60DCD932B (Il2CppChar ___0_searchChar, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_anyOf, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0010;
}
IL_0004:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___1_anyOf;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
Il2CppChar L_4 = ___0_searchChar;
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_000c;
}
}
{
return (bool)1;
}
IL_000c:
{
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
}
IL_0010:
{
int32_t L_6 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___1_anyOf;
NullCheck(L_7);
if ((((int32_t)L_6) < ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))
{
goto IL_0004;
}
}
{
return (bool)0;
}
}
// System.Boolean System.String::IsCharBitSet(System.UInt32*,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E (uint32_t* ___0_charMap, uint8_t ___1_value, const RuntimeMethod* method)
{
{
uint32_t* L_0 = ___0_charMap;
uint8_t L_1 = ___1_value;
int32_t L_2 = *((uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)((int32_t)L_1&7))), 4)))));
uint8_t L_3 = ___1_value;
return (bool)((!(((uint32_t)((int32_t)(L_2&((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_3>>3))&((int32_t)31)))))))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Void System.String::SetCharBit(System.UInt32*,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_SetCharBit_mEF864CF24F3AFB9402F9E67019D505697EAC9207 (uint32_t* ___0_charMap, uint8_t ___1_value, const RuntimeMethod* method)
{
{
uint32_t* L_0 = ___0_charMap;
uint8_t L_1 = ___1_value;
uint32_t* L_2 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)((int32_t)L_1&7))), 4))));
int32_t L_3 = *((uint32_t*)L_2);
uint8_t L_4 = ___1_value;
*((int32_t*)L_2) = (int32_t)((int32_t)(L_3|((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_4>>3))&((int32_t)31)))))));
return;
}
}
// System.Int32 System.String::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___0_value, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
int32_t L_1;
L_1 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(__this, L_0, 0, NULL);
return L_1;
}
}
// System.Int32 System.String::IndexOf(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_2 = ___1_comparisonType;
int32_t L_3;
L_3 = String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B(__this, L_0, 0, L_1, L_2, NULL);
return L_3;
}
}
// System.Int32 System.String::IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, int32_t ___3_comparisonType, 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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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*)&String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___1_startIndex;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001b;
}
}
{
int32_t L_3 = ___1_startIndex;
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_002b;
}
}
IL_001b:
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B_RuntimeMethod_var)));
}
IL_002b:
{
int32_t L_6 = ___2_count;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_003a;
}
}
{
int32_t L_7 = ___1_startIndex;
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_9 = ___2_count;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9)))))
{
goto IL_004a;
}
}
IL_003a:
{
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*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B_RuntimeMethod_var)));
}
IL_004a:
{
int32_t L_11 = ___3_comparisonType;
switch (L_11)
{
case 0:
{
goto IL_006b;
}
case 1:
{
goto IL_0080;
}
case 2:
{
goto IL_0095;
}
case 3:
{
goto IL_00a5;
}
case 4:
{
goto IL_00b5;
}
case 5:
{
goto IL_00c5;
}
}
}
{
goto IL_00d5;
}
IL_006b:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_12);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_13;
L_13 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_12);
String_t* L_14 = ___0_value;
int32_t L_15 = ___1_startIndex;
int32_t L_16 = ___2_count;
NullCheck(L_13);
int32_t L_17;
L_17 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(11 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_13, __this, L_14, L_15, L_16, 0);
return L_17;
}
IL_0080:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_18;
L_18 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_18);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_19;
L_19 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_18);
String_t* L_20 = ___0_value;
int32_t L_21 = ___1_startIndex;
int32_t L_22 = ___2_count;
NullCheck(L_19);
int32_t L_23;
L_23 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(11 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_19, __this, L_20, L_21, L_22, 1);
return L_23;
}
IL_0095:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_24 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_25 = ___0_value;
int32_t L_26 = ___1_startIndex;
int32_t L_27 = ___2_count;
NullCheck(L_24);
int32_t L_28;
L_28 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(11 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_24, __this, L_25, L_26, L_27, 0);
return L_28;
}
IL_00a5:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_29 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_30 = ___0_value;
int32_t L_31 = ___1_startIndex;
int32_t L_32 = ___2_count;
NullCheck(L_29);
int32_t L_33;
L_33 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(11 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_29, __this, L_30, L_31, L_32, 1);
return L_33;
}
IL_00b5:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_34 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_35 = ___0_value;
int32_t L_36 = ___1_startIndex;
int32_t L_37 = ___2_count;
NullCheck(L_34);
int32_t L_38;
L_38 = CompareInfo_IndexOfOrdinal_m87959AB92C780219806FC97DE8CD47B4F94D822D(L_34, __this, L_35, L_36, L_37, (bool)0, NULL);
return L_38;
}
IL_00c5:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_39 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_40 = ___0_value;
int32_t L_41 = ___1_startIndex;
int32_t L_42 = ___2_count;
NullCheck(L_39);
int32_t L_43;
L_43 = CompareInfo_IndexOfOrdinal_m87959AB92C780219806FC97DE8CD47B4F94D822D(L_39, __this, L_40, L_41, L_42, (bool)1, NULL);
return L_43;
}
IL_00d5:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_44 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_44);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_44, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_IndexOf_m6326B014CA1F90A66A6D2283ADBE36846A8F354B_RuntimeMethod_var)));
}
}
// System.Int32 System.String::LastIndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = (&__this->____firstChar_5);
Il2CppChar L_1 = ___0_value;
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_3;
L_3 = SpanHelpers_LastIndexOf_m2BAEB77B63275DFB7D3BAD5FDB9887AD3AD9D507(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.Int32 System.String::LastIndexOf(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m3EB3F4ECDF6D990ADBACB6B168A8CBD4772B91A7 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
int32_t L_2 = ___1_startIndex;
int32_t L_3;
L_3 = String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442(__this, L_0, L_1, ((int32_t)il2cpp_codegen_add(L_2, 1)), NULL);
return L_3;
}
}
// System.Int32 System.String::LastIndexOf(System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if (L_0)
{
goto IL_000a;
}
}
{
return (-1);
}
IL_000a:
{
int32_t L_1 = ___1_startIndex;
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
{
goto IL_0023;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442_RuntimeMethod_var)));
}
IL_0023:
{
int32_t L_4 = ___2_count;
int32_t L_5 = ___1_startIndex;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)il2cpp_codegen_add(L_5, 1))))))
{
goto IL_0039;
}
}
{
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*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442_RuntimeMethod_var)));
}
IL_0039:
{
int32_t L_7 = ___1_startIndex;
int32_t L_8 = ___2_count;
V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_7, 1)), L_8));
Il2CppChar* L_9 = (&__this->____firstChar_5);
int32_t L_10 = V_0;
Il2CppChar* L_11;
L_11 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_9, L_10);
Il2CppChar L_12 = ___0_value;
int32_t L_13 = ___2_count;
int32_t L_14;
L_14 = SpanHelpers_LastIndexOf_m2BAEB77B63275DFB7D3BAD5FDB9887AD3AD9D507(L_11, L_12, L_13, NULL);
V_1 = L_14;
int32_t L_15 = V_1;
if ((((int32_t)L_15) == ((int32_t)(-1))))
{
goto IL_005b;
}
}
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
return ((int32_t)il2cpp_codegen_add(L_16, L_17));
}
IL_005b:
{
int32_t L_18 = V_1;
return L_18;
}
}
// System.Int32 System.String::LastIndexOfAny(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfAny_m3A1F0D1FFE0F949789A425D25E0BEDB6D4F26BB4 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_anyOf;
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_3;
L_3 = String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874(__this, L_0, ((int32_t)il2cpp_codegen_subtract(L_1, 1)), L_2, NULL);
return L_3;
}
}
// System.Int32 System.String::LastIndexOfAny(System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfAny_mE627BF79C35A4C2C4CE3D973AB30B963F230F361 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_anyOf;
int32_t L_1 = ___1_startIndex;
int32_t L_2 = ___1_startIndex;
int32_t L_3;
L_3 = String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874(__this, L_0, L_1, ((int32_t)il2cpp_codegen_add(L_2, 1)), NULL);
return L_3;
}
}
// System.Int32 System.String::LastIndexOfAny(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_anyOf;
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*)&_stringLiteral2F4BD08A34D0299781F26947721F0D0A3DD83595)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if (L_2)
{
goto IL_0018;
}
}
{
return (-1);
}
IL_0018:
{
int32_t L_3 = ___1_startIndex;
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((!(((uint32_t)L_3) >= ((uint32_t)L_4))))
{
goto IL_0031;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874_RuntimeMethod_var)));
}
IL_0031:
{
int32_t L_6 = ___2_count;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_003b;
}
}
{
int32_t L_7 = ___2_count;
int32_t L_8 = ___1_startIndex;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_7, 1))) <= ((int32_t)L_8)))
{
goto IL_004b;
}
}
IL_003b:
{
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*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOfAny_mCE93FB98099DD74FF0C6441039619414F5172874_RuntimeMethod_var)));
}
IL_004b:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___0_anyOf;
NullCheck(L_10);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))) <= ((int32_t)1)))
{
goto IL_005b;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___0_anyOf;
int32_t L_12 = ___1_startIndex;
int32_t L_13 = ___2_count;
int32_t L_14;
L_14 = String_LastIndexOfCharArray_mFB8CA8868C14BED83D9197CA581CB75E7CB497A7(__this, L_11, L_12, L_13, NULL);
return L_14;
}
IL_005b:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = ___0_anyOf;
NullCheck(L_15);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_15)->max_length))) == ((uint32_t)1))))
{
goto IL_006d;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___0_anyOf;
NullCheck(L_16);
int32_t L_17 = 0;
uint16_t L_18 = (uint16_t)(L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
int32_t L_19 = ___1_startIndex;
int32_t L_20 = ___2_count;
int32_t L_21;
L_21 = String_LastIndexOf_mC92062EF4E7765DD44424828FA75C027AA325442(__this, L_18, L_19, L_20, NULL);
return L_21;
}
IL_006d:
{
return (-1);
}
}
// System.Int32 System.String::LastIndexOfCharArray(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfCharArray_mFB8CA8868C14BED83D9197CA581CB75E7CB497A7 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B V_0;
memset((&V_0), 0, sizeof(V_0));
uint32_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
int32_t V_5 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B));
V_1 = (uint32_t*)((uintptr_t)(&V_0));
uint32_t* L_0 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_anyOf;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2;
L_2 = ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B(L_1, ReadOnlySpan_1_op_Implicit_mDFCA2CC95F3991458A0775D346FCEB9A2F770D4B_RuntimeMethod_var);
String_InitializeProbabilisticMap_m4DCE6D6A5B38DF9D991C1B5EF46730A10467FA8B(L_0, L_2, NULL);
Il2CppChar* L_3 = (&__this->____firstChar_5);
V_3 = L_3;
Il2CppChar* L_4 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_4);
Il2CppChar* L_5 = V_2;
int32_t L_6 = ___1_startIndex;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2))));
goto IL_0068;
}
IL_002c:
{
Il2CppChar* L_7 = V_4;
int32_t L_8 = *((uint16_t*)L_7);
V_5 = L_8;
uint32_t* L_9 = V_1;
int32_t L_10 = V_5;
bool L_11;
L_11 = String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E(L_9, (uint8_t)((int32_t)(uint8_t)L_10), NULL);
if (!L_11)
{
goto IL_005d;
}
}
{
uint32_t* L_12 = V_1;
int32_t L_13 = V_5;
bool L_14;
L_14 = String_IsCharBitSet_m3FE46F716C081A9727D13A7F44E0B88A9815FD0E(L_12, (uint8_t)((int32_t)(uint8_t)((int32_t)(L_13>>8))), NULL);
if (!L_14)
{
goto IL_005d;
}
}
{
int32_t L_15 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___0_anyOf;
bool L_17;
L_17 = String_ArrayContains_m1F98E7E22F990E9203EFA6637F7879B60DCD932B(((int32_t)(uint16_t)L_15), L_16, NULL);
if (!L_17)
{
goto IL_005d;
}
}
{
Il2CppChar* L_18 = V_4;
Il2CppChar* L_19 = V_2;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/2))));
}
IL_005d:
{
int32_t L_20 = ___2_count;
___2_count = ((int32_t)il2cpp_codegen_subtract(L_20, 1));
Il2CppChar* L_21 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_21, 2));
}
IL_0068:
{
int32_t L_22 = ___2_count;
if ((((int32_t)L_22) > ((int32_t)0)))
{
goto IL_002c;
}
}
{
return (-1);
}
}
// System.Int32 System.String::LastIndexOf(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m436B3CDFB93031C7D7710274C092EE52CEAF419F (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_3 = ___1_comparisonType;
int32_t L_4;
L_4 = String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1(__this, L_0, ((int32_t)il2cpp_codegen_subtract(L_1, 1)), L_2, L_3, NULL);
return L_4;
}
}
// System.Int32 System.String::LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1 (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, int32_t ___3_comparisonType, 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*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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*)&String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if (L_2)
{
goto IL_0029;
}
}
{
int32_t L_3 = ___1_startIndex;
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_001d;
}
}
{
int32_t L_4 = ___1_startIndex;
if (L_4)
{
goto IL_0029;
}
}
IL_001d:
{
String_t* L_5 = ___0_value;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
if (!L_6)
{
goto IL_0027;
}
}
{
return (-1);
}
IL_0027:
{
return 0;
}
IL_0029:
{
int32_t L_7 = ___1_startIndex;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0036;
}
}
{
int32_t L_8 = ___1_startIndex;
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((((int32_t)L_8) <= ((int32_t)L_9)))
{
goto IL_0046;
}
}
IL_0036:
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1_RuntimeMethod_var)));
}
IL_0046:
{
int32_t L_11 = ___1_startIndex;
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)L_12))))
{
goto IL_005d;
}
}
{
int32_t L_13 = ___1_startIndex;
___1_startIndex = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
int32_t L_14 = ___2_count;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_005d;
}
}
{
int32_t L_15 = ___2_count;
___2_count = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
}
IL_005d:
{
int32_t L_16 = ___2_count;
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_0069;
}
}
{
int32_t L_17 = ___1_startIndex;
int32_t L_18 = ___2_count;
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_17, L_18)), 1))) >= ((int32_t)0)))
{
goto IL_0079;
}
}
IL_0069:
{
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1_RuntimeMethod_var)));
}
IL_0079:
{
String_t* L_20 = ___0_value;
NullCheck(L_20);
int32_t L_21;
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
if (L_21)
{
goto IL_0083;
}
}
{
int32_t L_22 = ___1_startIndex;
return L_22;
}
IL_0083:
{
int32_t L_23 = ___3_comparisonType;
switch (L_23)
{
case 0:
{
goto IL_00a4;
}
case 1:
{
goto IL_00b9;
}
case 2:
{
goto IL_00ce;
}
case 3:
{
goto IL_00de;
}
case 4:
{
goto IL_00ee;
}
case 5:
{
goto IL_00fe;
}
}
}
{
goto IL_010e;
}
IL_00a4:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_24;
L_24 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_24);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_25;
L_25 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_24);
String_t* L_26 = ___0_value;
int32_t L_27 = ___1_startIndex;
int32_t L_28 = ___2_count;
NullCheck(L_25);
int32_t L_29;
L_29 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_25, __this, L_26, L_27, L_28, 0);
return L_29;
}
IL_00b9:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_30;
L_30 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
NullCheck(L_30);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_31;
L_31 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_30);
String_t* L_32 = ___0_value;
int32_t L_33 = ___1_startIndex;
int32_t L_34 = ___2_count;
NullCheck(L_31);
int32_t L_35;
L_35 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_31, __this, L_32, L_33, L_34, 1);
return L_35;
}
IL_00ce:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_36 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_37 = ___0_value;
int32_t L_38 = ___1_startIndex;
int32_t L_39 = ___2_count;
NullCheck(L_36);
int32_t L_40;
L_40 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_36, __this, L_37, L_38, L_39, 0);
return L_40;
}
IL_00de:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_41 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_42 = ___0_value;
int32_t L_43 = ___1_startIndex;
int32_t L_44 = ___2_count;
NullCheck(L_41);
int32_t L_45;
L_45 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_41, __this, L_42, L_43, L_44, 1);
return L_45;
}
IL_00ee:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_46 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_47 = ___0_value;
int32_t L_48 = ___1_startIndex;
int32_t L_49 = ___2_count;
NullCheck(L_46);
int32_t L_50;
L_50 = CompareInfo_LastIndexOfOrdinal_mD8736746151EB1105985AF0D0A67FB1E0AA0BDFF(L_46, __this, L_47, L_48, L_49, (bool)0, NULL);
return L_50;
}
IL_00fe:
{
il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_51 = ((CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var))->___Invariant_4;
String_t* L_52 = ___0_value;
int32_t L_53 = ___1_startIndex;
int32_t L_54 = ___2_count;
NullCheck(L_51);
int32_t L_55;
L_55 = CompareInfo_LastIndexOfOrdinal_mD8736746151EB1105985AF0D0A67FB1E0AA0BDFF(L_51, __this, L_52, L_53, L_54, (bool)1, NULL);
return L_55;
}
IL_010e:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_56 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_56);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_56, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC9F86D38A6C7E2AB5AD6687A19250DA17CC550A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47E664865F8BD2864AB4AB2BDE17422BC353A059)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_56, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_LastIndexOf_m006A7DECADAD9E77347EEF727D7C55CF52B353B1_RuntimeMethod_var)));
}
}
// System.Void System.String::.ctor(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_mE68B380923022E84F092900EC18E30A7BA808338 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, const RuntimeMethod* method)
{
typedef void (*String__ctor_mE68B380923022E84F092900EC18E30A7BA808338_ftn) (String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*);
using namespace il2cpp::icalls;
((String__ctor_mE68B380923022E84F092900EC18E30A7BA808338_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_value);
}
// System.String System.String::Ctor(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_m4FC33238E2954A8A959079BCA90B472E163F57EA (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, 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;
}
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL;
uintptr_t G_B5_0;
memset((&G_B5_0), 0, sizeof(G_B5_0));
String_t* G_B5_1 = NULL;
uintptr_t G_B4_0;
memset((&G_B4_0), 0, sizeof(G_B4_0));
String_t* G_B4_1 = NULL;
uintptr_t G_B6_0;
memset((&G_B6_0), 0, sizeof(G_B6_0));
String_t* G_B6_1 = NULL;
uintptr_t G_B7_0;
memset((&G_B7_0), 0, sizeof(G_B7_0));
String_t* G_B7_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_value;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_value;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_000d;
}
}
IL_0007:
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_2;
}
IL_000d:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___0_value;
NullCheck(L_3);
String_t* L_4;
L_4 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)(((RuntimeArray*)L_3)->max_length)), NULL);
String_t* L_5 = L_4;
NullCheck(L_5);
Il2CppChar* L_6 = (&L_5->____firstChar_5);
V_1 = L_6;
Il2CppChar* L_7 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = ___0_value;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = L_8;
V_2 = L_9;
G_B4_0 = ((uintptr_t)L_7);
G_B4_1 = L_5;
if (!L_9)
{
G_B5_0 = ((uintptr_t)L_7);
G_B5_1 = L_5;
goto IL_0028;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = V_2;
NullCheck(L_10);
G_B5_0 = G_B4_0;
G_B5_1 = G_B4_1;
if (((int32_t)(((RuntimeArray*)L_10)->max_length)))
{
G_B6_0 = G_B4_0;
G_B6_1 = G_B4_1;
goto IL_002d;
}
}
IL_0028:
{
V_0 = (Il2CppChar*)((uintptr_t)0);
G_B7_0 = G_B5_0;
G_B7_1 = G_B5_1;
goto IL_0036;
}
IL_002d:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_2;
NullCheck(L_11);
V_0 = (Il2CppChar*)((uintptr_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
G_B7_0 = G_B6_0;
G_B7_1 = G_B6_1;
}
IL_0036:
{
Il2CppChar* L_12 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = ___0_value;
NullCheck(L_13);
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)G_B7_0, L_12, ((int32_t)(((RuntimeArray*)L_13)->max_length)), NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
V_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
return G_B7_1;
}
}
// System.Void System.String::.ctor(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_mF9979055BC049EBD531CF0500CEE016183008A7A (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method)
{
typedef void (*String__ctor_mF9979055BC049EBD531CF0500CEE016183008A7A_ftn) (String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t);
using namespace il2cpp::icalls;
((String__ctor_mF9979055BC049EBD531CF0500CEE016183008A7A_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_value, ___1_startIndex, ___2_length);
}
// System.String System.String::Ctor(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___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*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL;
uintptr_t G_B12_0;
memset((&G_B12_0), 0, sizeof(G_B12_0));
String_t* G_B12_1 = NULL;
uintptr_t G_B11_0;
memset((&G_B11_0), 0, sizeof(G_B11_0));
String_t* G_B11_1 = NULL;
uintptr_t G_B13_0;
memset((&G_B13_0), 0, sizeof(G_B13_0));
String_t* G_B13_1 = NULL;
uintptr_t G_B14_0;
memset((&G_B14_0), 0, sizeof(G_B14_0));
String_t* G_B14_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* 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*)&String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___1_startIndex;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306_RuntimeMethod_var)));
}
IL_0022:
{
int32_t L_4 = ___2_length;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0036;
}
}
{
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*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7C26512813CDF9F1A470756AB50D2C3272536A90)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306_RuntimeMethod_var)));
}
IL_0036:
{
int32_t L_6 = ___1_startIndex;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___0_value;
NullCheck(L_7);
int32_t L_8 = ___2_length;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8)))))
{
goto IL_004e;
}
}
{
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*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306_RuntimeMethod_var)));
}
IL_004e:
{
int32_t L_10 = ___2_length;
if (L_10)
{
goto IL_0057;
}
}
{
String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_11;
}
IL_0057:
{
int32_t L_12 = ___2_length;
String_t* L_13;
L_13 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_12, NULL);
String_t* L_14 = L_13;
NullCheck(L_14);
Il2CppChar* L_15 = (&L_14->____firstChar_5);
V_1 = L_15;
Il2CppChar* L_16 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ___0_value;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17;
V_2 = L_18;
G_B11_0 = ((uintptr_t)L_16);
G_B11_1 = L_14;
if (!L_18)
{
G_B12_0 = ((uintptr_t)L_16);
G_B12_1 = L_14;
goto IL_0070;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = V_2;
NullCheck(L_19);
G_B12_0 = G_B11_0;
G_B12_1 = G_B11_1;
if (((int32_t)(((RuntimeArray*)L_19)->max_length)))
{
G_B13_0 = G_B11_0;
G_B13_1 = G_B11_1;
goto IL_0075;
}
}
IL_0070:
{
V_0 = (Il2CppChar*)((uintptr_t)0);
G_B14_0 = G_B12_0;
G_B14_1 = G_B12_1;
goto IL_007e;
}
IL_0075:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_2;
NullCheck(L_20);
V_0 = (Il2CppChar*)((uintptr_t)((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
G_B14_0 = G_B13_0;
G_B14_1 = G_B13_1;
}
IL_007e:
{
Il2CppChar* L_21 = V_0;
int32_t L_22 = ___1_startIndex;
int32_t L_23 = ___2_length;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)G_B14_0, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_22), 2)))), L_23, NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
V_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
return G_B14_1;
}
}
// System.Void System.String::.ctor(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_mEFB802138D63D47EFC1FE0C776BAE15595C1F7D9 (String_t* __this, Il2CppChar* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method)
{
typedef void (*String__ctor_mEFB802138D63D47EFC1FE0C776BAE15595C1F7D9_ftn) (String_t*, Il2CppChar*, int32_t, int32_t);
using namespace il2cpp::icalls;
((String__ctor_mEFB802138D63D47EFC1FE0C776BAE15595C1F7D9_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_value, ___1_startIndex, ___2_length);
}
// System.String System.String::Ctor(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C (Il2CppChar* ___0_ptr, 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*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
int32_t L_0 = ___2_length;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7C26512813CDF9F1A470756AB50D2C3272536A90)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___1_startIndex;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0028;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C_RuntimeMethod_var)));
}
IL_0028:
{
Il2CppChar* L_4 = ___0_ptr;
int32_t L_5 = ___1_startIndex;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2))));
Il2CppChar* L_6 = V_0;
Il2CppChar* L_7 = ___0_ptr;
if ((!(((uintptr_t)L_6) < ((uintptr_t)L_7))))
{
goto IL_0043;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94791E5D8B01F7E850EE91A020593E00567D0FD1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C_RuntimeMethod_var)));
}
IL_0043:
{
int32_t L_9 = ___2_length;
if (L_9)
{
goto IL_004c;
}
}
{
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_10;
}
IL_004c:
{
Il2CppChar* L_11 = ___0_ptr;
if ((!(((uintptr_t)L_11) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0061;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_12 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_12);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94791E5D8B01F7E850EE91A020593E00567D0FD1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C_RuntimeMethod_var)));
}
IL_0061:
{
int32_t L_13 = ___2_length;
String_t* L_14;
L_14 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_13, NULL);
String_t* L_15 = L_14;
NullCheck(L_15);
Il2CppChar* L_16 = (&L_15->____firstChar_5);
V_1 = L_16;
Il2CppChar* L_17 = V_1;
Il2CppChar* L_18 = V_0;
int32_t L_19 = ___2_length;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((uintptr_t)L_17), L_18, L_19, NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
return L_15;
}
}
// System.Void System.String::.ctor(System.SByte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_m2079AEDFA6381F274AAEA4CA0FC18342C4B0A5BF (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method)
{
typedef void (*String__ctor_m2079AEDFA6381F274AAEA4CA0FC18342C4B0A5BF_ftn) (String_t*, int8_t*, int32_t, int32_t);
using namespace il2cpp::icalls;
((String__ctor_m2079AEDFA6381F274AAEA4CA0FC18342C4B0A5BF_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_value, ___1_startIndex, ___2_length);
}
// System.String System.String::Ctor(System.SByte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0 (int8_t* ___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*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
{
int32_t L_0 = ___1_startIndex;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___2_length;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0028;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7C26512813CDF9F1A470756AB50D2C3272536A90)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0_RuntimeMethod_var)));
}
IL_0028:
{
int8_t* L_4 = ___0_value;
if ((!(((uintptr_t)L_4) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0041;
}
}
{
int32_t L_5 = ___2_length;
if (L_5)
{
goto IL_0036;
}
}
{
String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_6;
}
IL_0036:
{
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*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0_RuntimeMethod_var)));
}
IL_0041:
{
int8_t* L_8 = ___0_value;
int32_t L_9 = ___1_startIndex;
V_0 = (uint8_t*)((int8_t*)il2cpp_codegen_add((intptr_t)L_8, L_9));
uint8_t* L_10 = V_0;
int8_t* L_11 = ___0_value;
if ((!(((uintptr_t)L_10) < ((uintptr_t)L_11))))
{
goto IL_0059;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_12 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_12);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94791E5D8B01F7E850EE91A020593E00567D0FD1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0_RuntimeMethod_var)));
}
IL_0059:
{
uint8_t* L_13 = V_0;
int32_t L_14 = ___2_length;
String_t* L_15;
L_15 = String_CreateStringForSByteConstructor_mF8630776790DD41E355D21E6439F8556749E9C81(L_13, L_14, NULL);
return L_15;
}
}
// System.String System.String::CreateStringForSByteConstructor(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateStringForSByteConstructor_mF8630776790DD41E355D21E6439F8556749E9C81 (uint8_t* ___0_pb, int32_t ___1_numBytes, 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;
}
{
int32_t L_0 = ___1_numBytes;
if (L_0)
{
goto IL_0009;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_0009:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
L_2 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
uint8_t* L_3 = ___0_pb;
int32_t L_4 = ___1_numBytes;
NullCheck(L_2);
String_t* L_5;
L_5 = Encoding_GetString_m42BFF0862341DCD5289A7D75B5D7A22CE9690EAD(L_2, L_3, L_4, NULL);
return L_5;
}
}
// System.Void System.String::.ctor(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_m7906C442F32A6064B26D857578819E0BC848B79E (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method)
{
typedef void (*String__ctor_m7906C442F32A6064B26D857578819E0BC848B79E_ftn) (String_t*, int8_t*, int32_t, int32_t, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*);
using namespace il2cpp::icalls;
((String__ctor_m7906C442F32A6064B26D857578819E0BC848B79E_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_value, ___1_startIndex, ___2_length, ___3_enc);
}
// System.String System.String::Ctor(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806 (int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___3_enc;
if (L_0)
{
goto IL_000c;
}
}
{
int8_t* L_1 = ___0_value;
int32_t L_2 = ___1_startIndex;
int32_t L_3 = ___2_length;
String_t* L_4;
L_4 = String_CreateString_mB17F8269B950960F6CCCDB637AB02D71EE1AA769(NULL, L_1, L_2, L_3, NULL);
return L_4;
}
IL_000c:
{
int32_t L_5 = ___2_length;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0020;
}
}
{
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*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806_RuntimeMethod_var)));
}
IL_0020:
{
int32_t L_7 = ___1_startIndex;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_0034;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806_RuntimeMethod_var)));
}
IL_0034:
{
int8_t* L_9 = ___0_value;
if ((!(((uintptr_t)L_9) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_004d;
}
}
{
int32_t L_10 = ___2_length;
if (L_10)
{
goto IL_0042;
}
}
{
String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_11;
}
IL_0042:
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_12 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_12);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806_RuntimeMethod_var)));
}
IL_004d:
{
int8_t* L_13 = ___0_value;
int32_t L_14 = ___1_startIndex;
V_0 = (uint8_t*)((int8_t*)il2cpp_codegen_add((intptr_t)L_13, L_14));
uint8_t* L_15 = V_0;
int8_t* L_16 = ___0_value;
if ((!(((uintptr_t)L_15) < ((uintptr_t)L_16))))
{
goto IL_0065;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_17 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_17);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94791E5D8B01F7E850EE91A020593E00567D0FD1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806_RuntimeMethod_var)));
}
IL_0065:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_18 = ___3_enc;
uint8_t* L_19 = V_0;
int32_t L_20 = ___2_length;
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_21;
memset((&L_21), 0, sizeof(L_21));
ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_inline((&L_21), (void*)L_19, L_20, /*hidden argument*/ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_RuntimeMethod_var);
NullCheck(L_18);
String_t* L_22;
L_22 = Encoding_GetString_m6FE2707C33758C7F10750B79FCA7767F4C2CA008(L_18, L_21, NULL);
return L_22;
}
}
// System.Void System.String::.ctor(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_mF03943AC6EC0992632986F3A30456CE1F533B574 (String_t* __this, Il2CppChar ___0_c, int32_t ___1_count, const RuntimeMethod* method)
{
typedef void (*String__ctor_mF03943AC6EC0992632986F3A30456CE1F533B574_ftn) (String_t*, Il2CppChar, int32_t);
using namespace il2cpp::icalls;
((String__ctor_mF03943AC6EC0992632986F3A30456CE1F533B574_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_c, ___1_count);
}
// System.String System.String::Ctor(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_mCCCF4E70864FD0C9518ACF86F7F62675B264B04E (Il2CppChar ___0_c, int32_t ___1_count, 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* V_0 = NULL;
Il2CppChar* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t* V_3 = NULL;
{
int32_t L_0 = ___1_count;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_1 = ___1_count;
if (L_1)
{
goto IL_000d;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_2;
}
IL_000d:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Ctor_mCCCF4E70864FD0C9518ACF86F7F62675B264B04E_RuntimeMethod_var)));
}
IL_001d:
{
int32_t L_4 = ___1_count;
String_t* L_5;
L_5 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_4, NULL);
V_0 = L_5;
Il2CppChar L_6 = ___0_c;
if (!L_6)
{
goto IL_0070;
}
}
{
String_t* L_7 = V_0;
NullCheck(L_7);
Il2CppChar* L_8 = (&L_7->____firstChar_5);
V_1 = L_8;
Il2CppChar* L_9 = V_1;
Il2CppChar L_10 = ___0_c;
Il2CppChar L_11 = ___0_c;
V_2 = ((int32_t)(((int32_t)((int32_t)L_10<<((int32_t)16)))|(int32_t)L_11));
V_3 = (uint32_t*)((uintptr_t)L_9);
int32_t L_12 = ___1_count;
if ((((int32_t)L_12) < ((int32_t)4)))
{
goto IL_0059;
}
}
{
int32_t L_13 = ___1_count;
___1_count = ((int32_t)il2cpp_codegen_subtract(L_13, 4));
}
IL_0041:
{
uint32_t* L_14 = V_3;
uint32_t L_15 = V_2;
*((int32_t*)L_14) = (int32_t)L_15;
uint32_t* L_16 = V_3;
uint32_t L_17 = V_2;
*((int32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_16, 4))) = (int32_t)L_17;
uint32_t* L_18 = V_3;
V_3 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 4))));
int32_t L_19 = ___1_count;
___1_count = ((int32_t)il2cpp_codegen_subtract(L_19, 4));
int32_t L_20 = ___1_count;
if ((((int32_t)L_20) >= ((int32_t)0)))
{
goto IL_0041;
}
}
IL_0059:
{
int32_t L_21 = ___1_count;
if (!((int32_t)(L_21&2)))
{
goto IL_0065;
}
}
{
uint32_t* L_22 = V_3;
uint32_t L_23 = V_2;
*((int32_t*)L_22) = (int32_t)L_23;
uint32_t* L_24 = V_3;
V_3 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_24, 4));
}
IL_0065:
{
int32_t L_25 = ___1_count;
if (!((int32_t)(L_25&1)))
{
goto IL_006d;
}
}
{
uint32_t* L_26 = V_3;
Il2CppChar L_27 = ___0_c;
*((int16_t*)L_26) = (int16_t)L_27;
}
IL_006d:
{
V_1 = (Il2CppChar*)((uintptr_t)0);
}
IL_0070:
{
String_t* L_28 = V_0;
return L_28;
}
}
// System.Void System.String::.ctor(System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String__ctor_m739A82A0133BA0B295E1D293AB9E5C1523003F6F (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method)
{
typedef void (*String__ctor_m739A82A0133BA0B295E1D293AB9E5C1523003F6F_ftn) (String_t*, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1);
using namespace il2cpp::icalls;
((String__ctor_m739A82A0133BA0B295E1D293AB9E5C1523003F6F_ftn)mscorlib::System::String::RedirectToCreateString) (__this, ___0_value);
}
// System.String System.String::Ctor(System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Ctor_m4378644906A85225C908E7CC37E86219CC2F0C86 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
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*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
int32_t L_0;
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000f:
{
int32_t L_2;
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
String_t* L_3;
L_3 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_2, NULL);
String_t* L_4 = L_3;
NullCheck(L_4);
Il2CppChar* L_5 = (&L_4->____firstChar_5);
V_1 = L_5;
Il2CppChar* L_6 = V_1;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7 = ___0_value;
Il2CppChar* L_8;
L_8 = MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A(L_7, MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mE4C181D41EF4A4EC432CD3610B2969041E6F2F7A_RuntimeMethod_var);
V_2 = L_8;
Il2CppChar* L_9 = V_2;
V_0 = (Il2CppChar*)((uintptr_t)L_9);
Il2CppChar* L_10 = V_0;
int32_t L_11;
L_11 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((uintptr_t)L_6), L_10, L_11, NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
V_2 = (Il2CppChar*)((uintptr_t)0);
return L_4;
}
}
// System.ReadOnlySpan`1<System.Char> System.String::op_Implicit(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A (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;
}
}
// System.Object System.String::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* String_Clone_m9B85BAC6E2115D7E5CFBFDE9E32658CCD9EDB786 (String_t* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.String System.String::Copy(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Copy_mB9EAED306DA73B406D69E1642CF582A9CA4BF717 (String_t* ___0_str, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___0_str;
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*)&_stringLiteralA185F0FDE2E3A93D140F407291AA8AA60D14D5DA)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_Copy_mB9EAED306DA73B406D69E1642CF582A9CA4BF717_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___0_str;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
String_t* L_4;
L_4 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_3, NULL);
String_t* L_5 = L_4;
NullCheck(L_5);
Il2CppChar* L_6 = (&L_5->____firstChar_5);
V_1 = L_6;
Il2CppChar* L_7 = V_1;
String_t* L_8 = ___0_str;
NullCheck(L_8);
Il2CppChar* L_9 = (&L_8->____firstChar_5);
V_2 = L_9;
Il2CppChar* L_10 = V_2;
V_0 = (Il2CppChar*)((uintptr_t)L_10);
Il2CppChar* L_11 = V_0;
String_t* L_12 = ___0_str;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((uintptr_t)L_7), L_11, L_13, NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
V_2 = (Il2CppChar*)((uintptr_t)0);
return L_5;
}
}
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC (String_t* __this, int32_t ___0_sourceIndex, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_destination, int32_t ___2_destinationIndex, int32_t ___3_count, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___1_destination;
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*)&_stringLiteralD89ADD2DB1FBF30630EEA02FAAF144060CA0E908)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___3_count;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B2528E587BF8E834E353527B97EFF43D0966C4A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC_RuntimeMethod_var)));
}
IL_0023:
{
int32_t L_4 = ___0_sourceIndex;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0037;
}
}
{
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*)&_stringLiteralCFAC928B9632979CA328C6C33549FD409AEF4B74)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC_RuntimeMethod_var)));
}
IL_0037:
{
int32_t L_6 = ___3_count;
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
int32_t L_8 = ___0_sourceIndex;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_7, L_8)))))
{
goto IL_0053;
}
}
{
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*)&_stringLiteralCFAC928B9632979CA328C6C33549FD409AEF4B74)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8294A19DAAE7E1B519B6BFD2EDBE3F2DE6D2AC77)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC_RuntimeMethod_var)));
}
IL_0053:
{
int32_t L_10 = ___2_destinationIndex;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___1_destination;
NullCheck(L_11);
int32_t L_12 = ___3_count;
if ((((int32_t)L_10) > ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_11)->max_length)), L_12)))))
{
goto IL_0060;
}
}
{
int32_t L_13 = ___2_destinationIndex;
if ((((int32_t)L_13) >= ((int32_t)0)))
{
goto IL_0070;
}
}
IL_0060:
{
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*)&_stringLiteralCEC49CE5B8EEBB0AE649A7794608079E6C355F17)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8294A19DAAE7E1B519B6BFD2EDBE3F2DE6D2AC77)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC_RuntimeMethod_var)));
}
IL_0070:
{
Il2CppChar* L_15 = (&__this->____firstChar_5);
V_2 = L_15;
Il2CppChar* L_16 = V_2;
V_0 = (Il2CppChar*)((uintptr_t)L_16);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ___1_destination;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17;
V_3 = L_18;
if (!L_18)
{
goto IL_0084;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = V_3;
NullCheck(L_19);
if (((int32_t)(((RuntimeArray*)L_19)->max_length)))
{
goto IL_0089;
}
}
IL_0084:
{
V_1 = (Il2CppChar*)((uintptr_t)0);
goto IL_0092;
}
IL_0089:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_3;
NullCheck(L_20);
V_1 = (Il2CppChar*)((uintptr_t)((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_0092:
{
Il2CppChar* L_21 = V_1;
int32_t L_22 = ___2_destinationIndex;
Il2CppChar* L_23 = V_0;
int32_t L_24 = ___0_sourceIndex;
int32_t L_25 = ___3_count;
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B(((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_22), 2)))), ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_24), 2)))), L_25, NULL);
V_2 = (Il2CppChar*)((uintptr_t)0);
V_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
return;
}
}
// System.Char[] System.String::ToCharArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* String_ToCharArray_m0699A92AA3E744229EF29CB9D943C47DF4FE5B46 (String_t* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
if (L_0)
{
goto IL_000e;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1;
L_1 = Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_RuntimeMethod_var);
return L_1;
}
IL_000e:
{
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)L_2);
Il2CppChar* L_4 = (&__this->____firstChar_5);
V_1 = L_4;
Il2CppChar* L_5 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_5);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = L_3;
NullCheck(L_6);
V_2 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
Il2CppChar* L_7 = V_2;
Il2CppChar* L_8 = V_0;
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B((Il2CppChar*)((uintptr_t)L_7), L_8, L_9, NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
V_2 = (Il2CppChar*)((uintptr_t)0);
return L_6;
}
}
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_value;
if (!L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ___0_value;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if ((!(((uint32_t)0) < ((uint32_t)L_2))))
{
goto IL_000e;
}
}
{
return (bool)0;
}
IL_000e:
{
return (bool)1;
}
}
// System.Boolean System.String::IsNullOrWhiteSpace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrWhiteSpace_m42E1F3B2C358068D645E46F01CF1834DC77A5A10 (String_t* ___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;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___0_value;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)1;
}
IL_0005:
{
V_0 = 0;
goto IL_001d;
}
IL_0009:
{
String_t* L_1 = ___0_value;
int32_t L_2 = V_0;
NullCheck(L_1);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_3, NULL);
if (L_4)
{
goto IL_0019;
}
}
{
return (bool)0;
}
IL_0019:
{
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
}
IL_001d:
{
int32_t L_6 = V_0;
String_t* L_7 = ___0_value;
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_0009;
}
}
{
return (bool)1;
}
}
// System.Char& System.String::GetRawStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = (&__this->____firstChar_5);
return L_0;
}
}
// System.String System.String::CreateStringFromEncoding(System.Byte*,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateStringFromEncoding_mA2976557EB38A6F77E1219B0ACF32668CEC514A2 (uint8_t* ___0_bytes, int32_t ___1_byteLength, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_encoding, 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;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___2_encoding;
uint8_t* L_1 = ___0_bytes;
int32_t L_2 = ___1_byteLength;
NullCheck(L_0);
int32_t L_3;
L_3 = VirtualFuncInvoker3< int32_t, uint8_t*, int32_t, DecoderNLS_tF18CBF663DFA66748F619AD7C6D6C4859DBFA80B* >::Invoke(22 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS) */, L_0, L_1, L_2, (DecoderNLS_tF18CBF663DFA66748F619AD7C6D6C4859DBFA80B*)NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if (L_4)
{
goto IL_0013;
}
}
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_5;
}
IL_0013:
{
int32_t L_6 = V_0;
String_t* L_7;
L_7 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_6, NULL);
String_t* L_8 = L_7;
NullCheck(L_8);
Il2CppChar* L_9 = (&L_8->____firstChar_5);
V_2 = L_9;
Il2CppChar* L_10 = V_2;
V_1 = (Il2CppChar*)((uintptr_t)L_10);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_11 = ___2_encoding;
uint8_t* L_12 = ___0_bytes;
int32_t L_13 = ___1_byteLength;
Il2CppChar* L_14 = V_1;
int32_t L_15 = V_0;
NullCheck(L_11);
int32_t L_16;
L_16 = VirtualFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, DecoderNLS_tF18CBF663DFA66748F619AD7C6D6C4859DBFA80B* >::Invoke(26 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS) */, L_11, L_12, L_13, L_14, L_15, (DecoderNLS_tF18CBF663DFA66748F619AD7C6D6C4859DBFA80B*)NULL);
V_2 = (Il2CppChar*)((uintptr_t)0);
return L_8;
}
}
// System.String System.String::CreateFromChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateFromChar_m3A1169FBD297609FC86BFD2A07F49737787AE116 (Il2CppChar ___0_c, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(1, NULL);
String_t* L_1 = L_0;
Il2CppChar L_2 = ___0_c;
NullCheck(L_1);
L_1->____firstChar_5 = L_2;
return L_1;
}
}
// System.Void System.String::wstrcpy(System.Char*,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_wstrcpy_m7F8C35DCD0E2D5AAC35B153EF73E6B0F1501406B (Il2CppChar* ___0_dmem, Il2CppChar* ___1_smem, int32_t ___2_charCount, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___0_dmem;
Il2CppChar* L_1 = ___1_smem;
int32_t L_2 = ___2_charCount;
Buffer_Memmove_mAA31A45BF1B1FA6490F0913B7FB59537767E5EF3((uint8_t*)L_0, (uint8_t*)L_1, ((int32_t)il2cpp_codegen_multiply(L_2, 2)), NULL);
return;
}
}
// System.String System.String::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToString_mB42632677DEB95B3FB88CF366911588C28A33F87 (String_t* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.String System.String::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToString_mBDBAAEBADA92334BE5E6E7A665706B27E24F627E (String_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Collections.Generic.IEnumerator`1<System.Char> System.String::System.Collections.Generic.IEnumerable<System.Char>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* String_System_Collections_Generic_IEnumerableU3CSystem_CharU3E_GetEnumerator_m76800315AAD2FD366EFAB33C4C30D05B634FDADA (String_t* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* L_0 = (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D*)il2cpp_codegen_object_new(CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D_il2cpp_TypeInfo_var);
NullCheck(L_0);
CharEnumerator__ctor_m64C938888062D37D44227D10723759DB93FF3717(L_0, __this, NULL);
return L_0;
}
}
// System.Collections.IEnumerator System.String::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* String_System_Collections_IEnumerable_GetEnumerator_m8D3888735F3CFA2B892721A119F4C948DF4B4B58 (String_t* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* L_0 = (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D*)il2cpp_codegen_object_new(CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D_il2cpp_TypeInfo_var);
NullCheck(L_0);
CharEnumerator__ctor_m64C938888062D37D44227D10723759DB93FF3717(L_0, __this, NULL);
return L_0;
}
}
// System.Int32 System.String::wcslen(System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_wcslen_m05E3BF2D98BEC77F378B255B6AD0B93F05503D44 (Il2CppChar* ___0_ptr, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
Il2CppChar* L_0 = ___0_ptr;
V_0 = L_0;
int32_t L_1;
L_1 = IntPtr_get_Size_m1FAAA59DA73D7E32BB1AB55DD92A90AFE3251DBE(NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
goto IL_0014;
}
IL_000c:
{
Il2CppChar* L_2 = V_0;
int32_t L_3 = *((uint16_t*)L_2);
if (!L_3)
{
goto IL_006e;
}
}
{
Il2CppChar* L_4 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, 2));
}
IL_0014:
{
Il2CppChar* L_5 = V_0;
int32_t L_6 = V_1;
if (((int32_t)(((int32_t)(uint32_t)(intptr_t)L_5)&L_6)))
{
goto IL_000c;
}
}
IL_001a:
{
Il2CppChar* L_7 = V_0;
int64_t L_8 = *((int64_t*)L_7);
if ((!(((uint64_t)((int64_t)(((int64_t)il2cpp_codegen_add(L_8, ((int64_t)9223231297218904063LL)))|((int64_t)9223231297218904063LL)))) == ((uint64_t)((int64_t)(-1))))))
{
goto IL_003d;
}
}
{
Il2CppChar* L_9 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))));
goto IL_001a;
}
IL_003d:
{
Il2CppChar* L_10 = V_0;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_006e;
}
}
{
Il2CppChar* L_12 = V_0;
int32_t L_13 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, 2)));
if (!L_13)
{
goto IL_006a;
}
}
{
Il2CppChar* L_14 = V_0;
int32_t L_15 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))));
if (!L_15)
{
goto IL_0066;
}
}
{
Il2CppChar* L_16 = V_0;
int32_t L_17 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2)))));
if (!L_17)
{
goto IL_0062;
}
}
{
Il2CppChar* L_18 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))));
goto IL_001a;
}
IL_0062:
{
Il2CppChar* L_19 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, 2));
}
IL_0066:
{
Il2CppChar* L_20 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, 2));
}
IL_006a:
{
Il2CppChar* L_21 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, 2));
}
IL_006e:
{
Il2CppChar* L_22 = V_0;
Il2CppChar* L_23 = ___0_ptr;
V_2 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_22, (intptr_t)L_23))/2))));
Il2CppChar* L_24 = ___0_ptr;
int32_t L_25 = V_2;
Il2CppChar* L_26 = V_0;
if ((((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_25), 2))))) == ((intptr_t)L_26)))
{
goto IL_008a;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_27 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_27);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAA9171B82604177F94F0540D2D89B6A7C2DFFD91)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_wcslen_m05E3BF2D98BEC77F378B255B6AD0B93F05503D44_RuntimeMethod_var)));
}
IL_008a:
{
int32_t L_28 = V_2;
return L_28;
}
}
// System.TypeCode System.String::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_GetTypeCode_m6FF9C491CB58DF051A7E07E4B844F279F07CEBE8 (String_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)18));
}
}
// System.Boolean System.String::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_System_IConvertible_ToBoolean_m75FAFB545BFF9F898DA713EFD0006F70FC0C2F0A (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Convert_ToBoolean_mD992FD3A8073C8D1A8868FC64E2E83C091CCA7B7(__this, L_0, NULL);
return L_1;
}
}
// System.Char System.String::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_System_IConvertible_ToChar_mD103702BB252C6E82250B993C1048E2CD6A8B9B6 (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Il2CppChar L_1;
L_1 = Convert_ToChar_m05E12620C91AC9BCF2610FB3E4E610C43E2D3833(__this, L_0, NULL);
return L_1;
}
}
// System.SByte System.String::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t String_System_IConvertible_ToSByte_m679637939F3C0B5FC68778D51777787F969AE515 (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int8_t L_1;
L_1 = Convert_ToSByte_m6468413DF8FE43EA23C30E6781892CD7629C20FF(__this, L_0, NULL);
return L_1;
}
}
// System.Byte System.String::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t String_System_IConvertible_ToByte_m2293F93CB7B3C12A6DE6F9B265AECB51741E2A88 (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_1;
L_1 = Convert_ToByte_mB25C393D7EADAFCBAEAB042BEFCE625A27FDA24E(__this, L_0, NULL);
return L_1;
}
}
// System.Int16 System.String::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t String_System_IConvertible_ToInt16_mFFA024540C591548774D62A2550822AF15A4D64F (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_1;
L_1 = Convert_ToInt16_mB89C9850CA7ECC0FB868839E4FA7CBB15D348B08(__this, L_0, NULL);
return L_1;
}
}
// System.UInt16 System.String::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t String_System_IConvertible_ToUInt16_mA8B7D9A52530436A2DD508D9A24C9C4DF4F8D078 (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint16_t L_1;
L_1 = Convert_ToUInt16_m6ABD176E68C9D323DDCD5AFB76197F4474AC2A5D(__this, L_0, NULL);
return L_1;
}
}
// System.Int32 System.String::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_System_IConvertible_ToInt32_m0B4C286CD713CCB2E4A8B38F38E73B39A1612DFB (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = Convert_ToInt32_m0DED37AC1A3B9B431A9833BDBC4F5B37C2BC407A(__this, L_0, NULL);
return L_1;
}
}
// System.UInt32 System.String::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t String_System_IConvertible_ToUInt32_m3E4B36C611D4070BD8FD89E8A33E913368D0095A (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_1;
L_1 = Convert_ToUInt32_mC6A45EDA9AB23DDE54537AF2E9ED6CEA4DED60FD(__this, L_0, NULL);
return L_1;
}
}
// System.Int64 System.String::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t String_System_IConvertible_ToInt64_mB5A02609C8B1CB8C9C6DCA5F11794F0F3D1E60EE (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_1;
L_1 = Convert_ToInt64_m849AF82E6C86C69E45DDDD095A39679D036239B7(__this, L_0, NULL);
return L_1;
}
}
// System.UInt64 System.String::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t String_System_IConvertible_ToUInt64_mDBF5B0D9A0EF5E943AE2B20BEF64E20FE501788E (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_1;
L_1 = Convert_ToUInt64_m3C26ECB841DA837EE4EE4C261ED564653A425613(__this, L_0, NULL);
return L_1;
}
}
// System.Single System.String::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float String_System_IConvertible_ToSingle_mD8D1921B9DCA1756B8E24B97EA8E7F93D7C6BEE2 (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_1;
L_1 = Convert_ToSingle_m8416CDFFC7641BD79BE63F39D5FAEE28986FC636(__this, L_0, NULL);
return L_1;
}
}
// System.Double System.String::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double String_System_IConvertible_ToDouble_m2C051DC383E1D6BE9E30B5DEC376B043B4B9E69C (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_1;
L_1 = Convert_ToDouble_mAA66A3AA3A6E53529E4F632BC69582B4B70D32B7(__this, L_0, NULL);
return L_1;
}
}
// System.Decimal System.String::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F String_System_IConvertible_ToDecimal_mC111A860700D28C763E57BBD25D927A2DD3BB631 (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1;
L_1 = Convert_ToDecimal_mE962E577A68EFD22F1C8B27B78CEFA42BDD44877(__this, L_0, NULL);
return L_1;
}
}
// System.DateTime System.String::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D String_System_IConvertible_ToDateTime_mF345F1B60269F05EFEEF6705BCEAE9259BC55AAD (String_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;
}
{
RuntimeObject* L_0 = ___0_provider;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
L_1 = Convert_ToDateTime_mA5FF0ECBE84ECB78B337E4E101423CC9AA95C8C3(__this, L_0, NULL);
return L_1;
}
}
// System.Object System.String::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* String_System_IConvertible_ToType_mF6D0543674379873BAF2AD07AFD21000A47B2DBD (String_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*)&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.String System.String::Normalize(System.Text.NormalizationForm)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Normalize_mB458CCECBD27D6E9FB44CF03D37E856846C41831 (String_t* __this, int32_t ___0_normalizationForm, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Normalization_t15B8C90D2AEC7D6D933322DBDF8850055BDD24AA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___0_normalizationForm;
il2cpp_codegen_runtime_class_init_inline(Normalization_t15B8C90D2AEC7D6D933322DBDF8850055BDD24AA_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = Normalization_Normalize_m07801D57B053AA3859DF22EEECA3AE7E348FBD30(__this, L_0, NULL);
return L_1;
}
}
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2 (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
// System.Int32 System.String::IndexOfUnchecked(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfUnchecked_mFADA04D6FCED11D71D76C4D91BA9A2CD3692E389 (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
String_t* V_4 = NULL;
Il2CppChar* V_5 = NULL;
Il2CppChar* V_6 = NULL;
int32_t V_7 = 0;
{
String_t* L_0 = ___0_value;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = ___2_count;
int32_t L_3 = V_0;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_000d;
}
}
{
return (-1);
}
IL_000d:
{
int32_t L_4 = V_0;
if (L_4)
{
goto IL_0012;
}
}
{
int32_t L_5 = ___1_startIndex;
return L_5;
}
IL_0012:
{
Il2CppChar* L_6 = (&__this->____firstChar_5);
V_3 = L_6;
Il2CppChar* L_7 = V_3;
V_1 = (Il2CppChar*)((uintptr_t)L_7);
String_t* L_8 = ___0_value;
V_4 = L_8;
String_t* L_9 = V_4;
V_2 = (Il2CppChar*)((uintptr_t)L_9);
Il2CppChar* L_10 = V_2;
if (!L_10)
{
goto IL_002e;
}
}
{
Il2CppChar* L_11 = V_2;
int32_t L_12;
L_12 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, L_12));
}
IL_002e:
{
Il2CppChar* L_13 = V_1;
int32_t L_14 = ___1_startIndex;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2))));
Il2CppChar* L_15 = V_5;
int32_t L_16 = ___2_count;
int32_t L_17 = V_0;
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2)))), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2)))), 2));
goto IL_0081;
}
IL_0048:
{
Il2CppChar* L_18 = V_5;
int32_t L_19 = *((uint16_t*)L_18);
Il2CppChar* L_20 = V_2;
int32_t L_21 = *((uint16_t*)L_20);
if ((!(((uint32_t)L_19) == ((uint32_t)L_21))))
{
goto IL_007b;
}
}
{
V_7 = 1;
goto IL_006d;
}
IL_0054:
{
Il2CppChar* L_22 = V_5;
int32_t L_23 = V_7;
int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_23), 2)))));
Il2CppChar* L_25 = V_2;
int32_t L_26 = V_7;
int32_t L_27 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_26), 2)))));
if ((!(((uint32_t)L_24) == ((uint32_t)L_27))))
{
goto IL_007b;
}
}
{
int32_t L_28 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_28, 1));
}
IL_006d:
{
int32_t L_29 = V_7;
int32_t L_30 = V_0;
if ((((int32_t)L_29) < ((int32_t)L_30)))
{
goto IL_0054;
}
}
{
Il2CppChar* L_31 = V_5;
Il2CppChar* L_32 = V_1;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_31, (intptr_t)L_32))/2))));
}
IL_007b:
{
Il2CppChar* L_33 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, 2));
}
IL_0081:
{
Il2CppChar* L_34 = V_5;
Il2CppChar* L_35 = V_6;
if ((!(((uintptr_t)L_34) == ((uintptr_t)L_35))))
{
goto IL_0048;
}
}
{
V_3 = (Il2CppChar*)((uintptr_t)0);
V_4 = (String_t*)NULL;
return (-1);
}
}
// System.Int32 System.String::IndexOfUncheckedIgnoreCase(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfUncheckedIgnoreCase_m4E0D70ABCE4EF0BABD46F493E0CD954E5503B744 (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, 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;
}
int32_t V_0 = 0;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
String_t* V_5 = NULL;
Il2CppChar* V_6 = NULL;
Il2CppChar* V_7 = NULL;
Il2CppChar V_8 = 0x0;
int32_t V_9 = 0;
{
String_t* L_0 = ___0_value;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = ___2_count;
int32_t L_3 = V_0;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_000d;
}
}
{
return (-1);
}
IL_000d:
{
int32_t L_4 = V_0;
if (L_4)
{
goto IL_0012;
}
}
{
int32_t L_5 = ___1_startIndex;
return L_5;
}
IL_0012:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
NullCheck(L_6);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_7;
L_7 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_6);
V_1 = L_7;
Il2CppChar* L_8 = (&__this->____firstChar_5);
V_4 = L_8;
Il2CppChar* L_9 = V_4;
V_2 = (Il2CppChar*)((uintptr_t)L_9);
String_t* L_10 = ___0_value;
V_5 = L_10;
String_t* L_11 = V_5;
V_3 = (Il2CppChar*)((uintptr_t)L_11);
Il2CppChar* L_12 = V_3;
if (!L_12)
{
goto IL_003b;
}
}
{
Il2CppChar* L_13 = V_3;
int32_t L_14;
L_14 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, L_14));
}
IL_003b:
{
Il2CppChar* L_15 = V_2;
int32_t L_16 = ___1_startIndex;
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2))));
Il2CppChar* L_17 = V_6;
int32_t L_18 = ___2_count;
int32_t L_19 = V_0;
V_7 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 2)))), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_19), 2)))), 2));
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_20 = V_1;
Il2CppChar* L_21 = V_3;
int32_t L_22 = *((uint16_t*)L_21);
NullCheck(L_20);
Il2CppChar L_23;
L_23 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_20, L_22);
V_8 = L_23;
goto IL_00aa;
}
IL_005f:
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_24 = V_1;
Il2CppChar* L_25 = V_6;
int32_t L_26 = *((uint16_t*)L_25);
NullCheck(L_24);
Il2CppChar L_27;
L_27 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_24, L_26);
Il2CppChar L_28 = V_8;
if ((!(((uint32_t)L_27) == ((uint32_t)L_28))))
{
goto IL_00a4;
}
}
{
V_9 = 1;
goto IL_0096;
}
IL_0071:
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_29 = V_1;
Il2CppChar* L_30 = V_6;
int32_t L_31 = V_9;
int32_t L_32 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_31), 2)))));
NullCheck(L_29);
Il2CppChar L_33;
L_33 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_29, L_32);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_34 = V_1;
Il2CppChar* L_35 = V_3;
int32_t L_36 = V_9;
int32_t L_37 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_36), 2)))));
NullCheck(L_34);
Il2CppChar L_38;
L_38 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_34, L_37);
if ((!(((uint32_t)L_33) == ((uint32_t)L_38))))
{
goto IL_00a4;
}
}
{
int32_t L_39 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_39, 1));
}
IL_0096:
{
int32_t L_40 = V_9;
int32_t L_41 = V_0;
if ((((int32_t)L_40) < ((int32_t)L_41)))
{
goto IL_0071;
}
}
{
Il2CppChar* L_42 = V_6;
Il2CppChar* L_43 = V_2;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_42, (intptr_t)L_43))/2))));
}
IL_00a4:
{
Il2CppChar* L_44 = V_6;
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_44, 2));
}
IL_00aa:
{
Il2CppChar* L_45 = V_6;
Il2CppChar* L_46 = V_7;
if ((!(((uintptr_t)L_45) == ((uintptr_t)L_46))))
{
goto IL_005f;
}
}
{
V_4 = (Il2CppChar*)((uintptr_t)0);
V_5 = (String_t*)NULL;
return (-1);
}
}
// System.Int32 System.String::LastIndexOfUnchecked(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfUnchecked_m3586EA446BEADEDD694A1214AC5671C893BE0211 (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
String_t* V_4 = NULL;
Il2CppChar* V_5 = NULL;
Il2CppChar* V_6 = NULL;
Il2CppChar* V_7 = NULL;
Il2CppChar* V_8 = NULL;
{
String_t* L_0 = ___0_value;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = ___2_count;
int32_t L_3 = V_0;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_000d;
}
}
{
return (-1);
}
IL_000d:
{
int32_t L_4 = V_0;
if (L_4)
{
goto IL_0012;
}
}
{
int32_t L_5 = ___1_startIndex;
return L_5;
}
IL_0012:
{
Il2CppChar* L_6 = (&__this->____firstChar_5);
V_3 = L_6;
Il2CppChar* L_7 = V_3;
V_1 = (Il2CppChar*)((uintptr_t)L_7);
String_t* L_8 = ___0_value;
V_4 = L_8;
String_t* L_9 = V_4;
V_2 = (Il2CppChar*)((uintptr_t)L_9);
Il2CppChar* L_10 = V_2;
if (!L_10)
{
goto IL_002e;
}
}
{
Il2CppChar* L_11 = V_2;
int32_t L_12;
L_12 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, L_12));
}
IL_002e:
{
Il2CppChar* L_13 = V_1;
int32_t L_14 = ___1_startIndex;
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2))));
Il2CppChar* L_15 = V_5;
int32_t L_16 = ___2_count;
int32_t L_17 = V_0;
V_6 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2)))), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2)))), 2));
Il2CppChar* L_18 = V_2;
int32_t L_19 = V_0;
V_7 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_19), 2)))), 2));
goto IL_0098;
}
IL_0052:
{
Il2CppChar* L_20 = V_5;
int32_t L_21 = *((uint16_t*)L_20);
Il2CppChar* L_22 = V_7;
int32_t L_23 = *((uint16_t*)L_22);
if ((!(((uint32_t)L_21) == ((uint32_t)L_23))))
{
goto IL_0092;
}
}
{
Il2CppChar* L_24 = V_5;
V_8 = L_24;
goto IL_0084;
}
IL_0060:
{
Il2CppChar* L_25 = V_7;
V_7 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_25, 2));
Il2CppChar* L_26 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_26, 2));
Il2CppChar* L_27 = V_5;
int32_t L_28 = *((uint16_t*)L_27);
Il2CppChar* L_29 = V_7;
int32_t L_30 = *((uint16_t*)L_29);
if ((((int32_t)L_28) == ((int32_t)L_30)))
{
goto IL_0084;
}
}
{
Il2CppChar* L_31 = V_2;
int32_t L_32 = V_0;
V_7 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_32), 2)))), 2));
Il2CppChar* L_33 = V_8;
V_5 = L_33;
goto IL_0092;
}
IL_0084:
{
Il2CppChar* L_34 = V_2;
Il2CppChar* L_35 = V_7;
if ((!(((uintptr_t)L_34) == ((uintptr_t)L_35))))
{
goto IL_0060;
}
}
{
Il2CppChar* L_36 = V_5;
Il2CppChar* L_37 = V_1;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_36, (intptr_t)L_37))/2))));
}
IL_0092:
{
Il2CppChar* L_38 = V_5;
V_5 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_38, 2));
}
IL_0098:
{
Il2CppChar* L_39 = V_5;
Il2CppChar* L_40 = V_6;
if ((!(((uintptr_t)L_39) == ((uintptr_t)L_40))))
{
goto IL_0052;
}
}
{
V_3 = (Il2CppChar*)((uintptr_t)0);
V_4 = (String_t*)NULL;
return (-1);
}
}
// System.Int32 System.String::LastIndexOfUncheckedIgnoreCase(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOfUncheckedIgnoreCase_m57C519DF3BD4D8F0E8A5858A13C28DA01B37FECE (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, 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;
}
int32_t V_0 = 0;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
String_t* V_5 = NULL;
Il2CppChar* V_6 = NULL;
Il2CppChar* V_7 = NULL;
Il2CppChar* V_8 = NULL;
Il2CppChar V_9 = 0x0;
Il2CppChar* V_10 = NULL;
{
String_t* L_0 = ___0_value;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = ___2_count;
int32_t L_3 = V_0;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_000d;
}
}
{
return (-1);
}
IL_000d:
{
int32_t L_4 = V_0;
if (L_4)
{
goto IL_0012;
}
}
{
int32_t L_5 = ___1_startIndex;
return L_5;
}
IL_0012:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
NullCheck(L_6);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_7;
L_7 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_6);
V_1 = L_7;
Il2CppChar* L_8 = (&__this->____firstChar_5);
V_4 = L_8;
Il2CppChar* L_9 = V_4;
V_2 = (Il2CppChar*)((uintptr_t)L_9);
String_t* L_10 = ___0_value;
V_5 = L_10;
String_t* L_11 = V_5;
V_3 = (Il2CppChar*)((uintptr_t)L_11);
Il2CppChar* L_12 = V_3;
if (!L_12)
{
goto IL_003b;
}
}
{
Il2CppChar* L_13 = V_3;
int32_t L_14;
L_14 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, L_14));
}
IL_003b:
{
Il2CppChar* L_15 = V_2;
int32_t L_16 = ___1_startIndex;
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2))));
Il2CppChar* L_17 = V_6;
int32_t L_18 = ___2_count;
int32_t L_19 = V_0;
V_7 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 2)))), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_19), 2)))), 2));
Il2CppChar* L_20 = V_3;
int32_t L_21 = V_0;
V_8 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_21), 2)))), 2));
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_22 = V_1;
Il2CppChar* L_23 = V_8;
int32_t L_24 = *((uint16_t*)L_23);
NullCheck(L_22);
Il2CppChar L_25;
L_25 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_22, L_24);
V_9 = L_25;
goto IL_00c1;
}
IL_006a:
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_26 = V_1;
Il2CppChar* L_27 = V_6;
int32_t L_28 = *((uint16_t*)L_27);
NullCheck(L_26);
Il2CppChar L_29;
L_29 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_26, L_28);
Il2CppChar L_30 = V_9;
if ((!(((uint32_t)L_29) == ((uint32_t)L_30))))
{
goto IL_00bb;
}
}
{
Il2CppChar* L_31 = V_6;
V_10 = L_31;
goto IL_00ad;
}
IL_007d:
{
Il2CppChar* L_32 = V_8;
V_8 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_32, 2));
Il2CppChar* L_33 = V_6;
V_6 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_33, 2));
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_34 = V_1;
Il2CppChar* L_35 = V_6;
int32_t L_36 = *((uint16_t*)L_35);
NullCheck(L_34);
Il2CppChar L_37;
L_37 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_34, L_36);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_38 = V_1;
Il2CppChar* L_39 = V_8;
int32_t L_40 = *((uint16_t*)L_39);
NullCheck(L_38);
Il2CppChar L_41;
L_41 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_38, L_40);
if ((((int32_t)L_37) == ((int32_t)L_41)))
{
goto IL_00ad;
}
}
{
Il2CppChar* L_42 = V_3;
int32_t L_43 = V_0;
V_8 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_42, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_43), 2)))), 2));
Il2CppChar* L_44 = V_10;
V_6 = L_44;
goto IL_00bb;
}
IL_00ad:
{
Il2CppChar* L_45 = V_3;
Il2CppChar* L_46 = V_8;
if ((!(((uintptr_t)L_45) == ((uintptr_t)L_46))))
{
goto IL_007d;
}
}
{
Il2CppChar* L_47 = V_6;
Il2CppChar* L_48 = V_2;
return ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_47, (intptr_t)L_48))/2))));
}
IL_00bb:
{
Il2CppChar* L_49 = V_6;
V_6 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_49, 2));
}
IL_00c1:
{
Il2CppChar* L_50 = V_6;
Il2CppChar* L_51 = V_7;
if ((!(((uintptr_t)L_50) == ((uintptr_t)L_51))))
{
goto IL_006a;
}
}
{
V_4 = (Il2CppChar*)((uintptr_t)0);
V_5 = (String_t*)NULL;
return (-1);
}
}
// System.Boolean System.String::StartsWithOrdinalUnchecked(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWithOrdinalUnchecked_m094F18D60C76BFD8ED1F4561F1080356188BFF07 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(__this, NULL);
String_t* L_1 = ___0_value;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if ((((int32_t)L_0) < ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
Il2CppChar L_3 = __this->____firstChar_5;
String_t* L_4 = ___0_value;
NullCheck(L_4);
Il2CppChar L_5 = L_4->____firstChar_5;
if ((((int32_t)L_3) == ((int32_t)L_5)))
{
goto IL_001e;
}
}
IL_001c:
{
return (bool)0;
}
IL_001e:
{
String_t* L_6 = ___0_value;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)1)))
{
goto IL_004d;
}
}
{
Il2CppChar* L_8;
L_8 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(__this, NULL);
uint8_t* L_9;
L_9 = il2cpp_unsafe_as_ref<uint8_t>(L_8);
String_t* L_10 = ___0_value;
NullCheck(L_10);
Il2CppChar* L_11;
L_11 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_10, NULL);
uint8_t* L_12;
L_12 = il2cpp_unsafe_as_ref<uint8_t>(L_11);
String_t* L_13 = ___0_value;
NullCheck(L_13);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
bool L_15;
L_15 = SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E(L_9, L_12, ((int64_t)il2cpp_codegen_multiply(((int64_t)L_14), ((int64_t)2))), NULL);
return L_15;
}
IL_004d:
{
return (bool)1;
}
}
// 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)
{
typedef String_t* (*String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104_ftn) (int32_t);
using namespace il2cpp::icalls;
return ((String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104_ftn)mscorlib::System::String::FastAllocateString) (___0_length);
}
// System.Void System.String::memset(System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memset_m58EAB0FE179659A49D4058197DAC3E1885C7C54F (uint8_t* ___0_dest, int32_t ___1_val, int32_t ___2_len, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___2_len;
if ((((int32_t)L_0) >= ((int32_t)8)))
{
goto IL_0018;
}
}
{
goto IL_0014;
}
IL_0006:
{
uint8_t* L_1 = ___0_dest;
int32_t L_2 = ___1_val;
*((int8_t*)L_1) = (int8_t)((int32_t)(uint8_t)L_2);
uint8_t* L_3 = ___0_dest;
___0_dest = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 1));
int32_t L_4 = ___2_len;
___2_len = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
}
IL_0014:
{
int32_t L_5 = ___2_len;
if (L_5)
{
goto IL_0006;
}
}
{
return;
}
IL_0018:
{
int32_t L_6 = ___1_val;
if (!L_6)
{
goto IL_002a;
}
}
{
int32_t L_7 = ___1_val;
int32_t L_8 = ___1_val;
___1_val = ((int32_t)(L_7|((int32_t)(L_8<<8))));
int32_t L_9 = ___1_val;
int32_t L_10 = ___1_val;
___1_val = ((int32_t)(L_9|((int32_t)(L_10<<((int32_t)16)))));
}
IL_002a:
{
uint8_t* L_11 = ___0_dest;
V_0 = ((int32_t)(((int32_t)(intptr_t)L_11)&3));
int32_t L_12 = V_0;
if (!L_12)
{
goto IL_0071;
}
}
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(4, L_13));
int32_t L_14 = ___2_len;
int32_t L_15 = V_0;
___2_len = ((int32_t)il2cpp_codegen_subtract(L_14, L_15));
}
IL_003b:
{
uint8_t* L_16 = ___0_dest;
int32_t L_17 = ___1_val;
*((int8_t*)L_16) = (int8_t)((int32_t)(uint8_t)L_17);
uint8_t* L_18 = ___0_dest;
___0_dest = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, 1));
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_19, 1));
int32_t L_20 = V_0;
if (L_20)
{
goto IL_003b;
}
}
{
goto IL_0071;
}
IL_004d:
{
uint8_t* L_21 = ___0_dest;
int32_t L_22 = ___1_val;
*((int32_t*)L_21) = (int32_t)L_22;
uint8_t* L_23 = ___0_dest;
int32_t L_24 = ___1_val;
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_23, 4))) = (int32_t)L_24;
uint8_t* L_25 = ___0_dest;
int32_t L_26 = ___1_val;
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 4))))) = (int32_t)L_26;
uint8_t* L_27 = ___0_dest;
int32_t L_28 = ___1_val;
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 4))))) = (int32_t)L_28;
uint8_t* L_29 = ___0_dest;
___0_dest = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, ((int32_t)16)));
int32_t L_30 = ___2_len;
___2_len = ((int32_t)il2cpp_codegen_subtract(L_30, ((int32_t)16)));
}
IL_0071:
{
int32_t L_31 = ___2_len;
if ((((int32_t)L_31) >= ((int32_t)((int32_t)16))))
{
goto IL_004d;
}
}
{
goto IL_0085;
}
IL_0078:
{
uint8_t* L_32 = ___0_dest;
int32_t L_33 = ___1_val;
*((int32_t*)L_32) = (int32_t)L_33;
uint8_t* L_34 = ___0_dest;
___0_dest = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, 4));
int32_t L_35 = ___2_len;
___2_len = ((int32_t)il2cpp_codegen_subtract(L_35, 4));
}
IL_0085:
{
int32_t L_36 = ___2_len;
if ((((int32_t)L_36) >= ((int32_t)4)))
{
goto IL_0078;
}
}
{
goto IL_0099;
}
IL_008b:
{
uint8_t* L_37 = ___0_dest;
int32_t L_38 = ___1_val;
*((int8_t*)L_37) = (int8_t)((int32_t)(uint8_t)L_38);
uint8_t* L_39 = ___0_dest;
___0_dest = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, 1));
int32_t L_40 = ___2_len;
___2_len = ((int32_t)il2cpp_codegen_subtract(L_40, 1));
}
IL_0099:
{
int32_t L_41 = ___2_len;
if ((((int32_t)L_41) > ((int32_t)0)))
{
goto IL_008b;
}
}
{
return;
}
}
// System.Void System.String::memcpy(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memcpy_m38CFAA6EBB66057ABDBB9ADD8DD580BC20395B9A (uint8_t* ___0_dest, uint8_t* ___1_src, int32_t ___2_size, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
uint8_t* L_1 = ___1_src;
int32_t L_2 = ___2_size;
Buffer_Memcpy_mB203712DD2D0E5DF1CF52F752638F8B94E03E217(L_0, L_1, L_2, (bool)0, NULL);
return;
}
}
// System.Void System.String::bzero(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_bzero_m4C0DD5A74DA6FF957CBA0B50AA7555CCAF39AB78 (uint8_t* ___0_dest, int32_t ___1_len, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
int32_t L_1 = ___1_len;
String_memset_m58EAB0FE179659A49D4058197DAC3E1885C7C54F(L_0, 0, L_1, NULL);
return;
}
}
// System.Void System.String::bzero_aligned_1(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_bzero_aligned_1_mB7CF077817B38B46665032DC17EF76DC4C7249FB (uint8_t* ___0_dest, int32_t ___1_len, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
*((int8_t*)L_0) = (int8_t)0;
return;
}
}
// System.Void System.String::bzero_aligned_2(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_bzero_aligned_2_m61B28C0FAF12CE822DCD92553270148DA34D538B (uint8_t* ___0_dest, int32_t ___1_len, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
*((int16_t*)L_0) = (int16_t)0;
return;
}
}
// System.Void System.String::bzero_aligned_4(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_bzero_aligned_4_m3CF0C5B66B6596BA5A53086FD7F2EE932C89290E (uint8_t* ___0_dest, int32_t ___1_len, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
*((int32_t*)L_0) = (int32_t)0;
return;
}
}
// System.Void System.String::bzero_aligned_8(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_bzero_aligned_8_m5F4000B76CA99C5CB37BEC61797A159A1734157A (uint8_t* ___0_dest, int32_t ___1_len, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
*((int64_t*)L_0) = (int64_t)((int64_t)0);
return;
}
}
// System.Void System.String::memcpy_aligned_1(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memcpy_aligned_1_mDFDEAAE8881C1FA62AE3B0B4BEB931D0DB29732C (uint8_t* ___0_dest, uint8_t* ___1_src, int32_t ___2_size, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
uint8_t* L_1 = ___1_src;
int32_t L_2 = *((uint8_t*)L_1);
*((int8_t*)L_0) = (int8_t)L_2;
return;
}
}
// System.Void System.String::memcpy_aligned_2(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memcpy_aligned_2_m0F00603F59466381C795F2B0BDF78B30105CBF0C (uint8_t* ___0_dest, uint8_t* ___1_src, int32_t ___2_size, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
uint8_t* L_1 = ___1_src;
int32_t L_2 = *((int16_t*)L_1);
*((int16_t*)L_0) = (int16_t)L_2;
return;
}
}
// System.Void System.String::memcpy_aligned_4(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memcpy_aligned_4_m27A572AD0F90377EAFD54EC67D231256A40FFCFC (uint8_t* ___0_dest, uint8_t* ___1_src, int32_t ___2_size, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
uint8_t* L_1 = ___1_src;
int32_t L_2 = *((int32_t*)L_1);
*((int32_t*)L_0) = (int32_t)L_2;
return;
}
}
// System.Void System.String::memcpy_aligned_8(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_memcpy_aligned_8_m5F9A0C2815C3FA3EDBFAD44756CBB8845ECB7336 (uint8_t* ___0_dest, uint8_t* ___1_src, int32_t ___2_size, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___0_dest;
uint8_t* L_1 = ___1_src;
int64_t L_2 = *((int64_t*)L_1);
*((int64_t*)L_0) = (int64_t)L_2;
return;
}
}
// System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB17F8269B950960F6CCCDB637AB02D71EE1AA769 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method)
{
{
int8_t* L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
int32_t L_2 = ___2_length;
String_t* L_3;
L_3 = String_Ctor_m0704AF627F437C67322185B5319B681ED5B221B0(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.String System.String::CreateString(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2 (String_t* __this, Il2CppChar* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
int32_t L_2 = ___2_length;
String_t* L_3;
L_3 = String_Ctor_mE6EACE4BC66F30F9B850C7496DD1061E116ACA5C(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_val, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_val;
int32_t L_1 = ___1_startIndex;
int32_t L_2 = ___2_length;
String_t* L_3;
L_3 = String_Ctor_mEB2415CFBCC1333759B9F27655F6B44325D10306(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.String System.String::CreateString(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mFBC28D2E3EB87D497F7E702E4FFAD65F635E44DF (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_val, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_val;
String_t* L_1;
L_1 = String_Ctor_m4FC33238E2954A8A959079BCA90B472E163F57EA(L_0, NULL);
return L_1;
}
}
// System.String System.String::CreateString(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mAA0705B41B390BDB42F67894B9B67C956814C71B (String_t* __this, Il2CppChar ___0_c, int32_t ___1_count, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___0_c;
int32_t L_1 = ___1_count;
String_t* L_2;
L_2 = String_Ctor_mCCCF4E70864FD0C9518ACF86F7F62675B264B04E(L_0, L_1, NULL);
return L_2;
}
}
// System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method)
{
{
int8_t* L_0 = ___0_value;
int32_t L_1 = ___1_startIndex;
int32_t L_2 = ___2_length;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3 = ___3_enc;
String_t* L_4;
L_4 = String_Ctor_mD65B24BDF79B6BA647F21B56C6B7007C4D579806(L_0, L_1, L_2, L_3, NULL);
return L_4;
}
}
// System.String System.String::CreateString(System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method)
{
{
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_value;
String_t* L_1;
L_1 = String_Ctor_m4378644906A85225C908E7CC37E86219CC2F0C86(L_0, NULL);
return L_1;
}
}
// 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)
{
{
int32_t L_0 = ___0_index;
int32_t L_1 = __this->____stringLength_4;
if ((((int64_t)((int64_t)(uint64_t)((uint32_t)L_0))) < ((int64_t)((int64_t)L_1))))
{
goto IL_0010;
}
}
{
ThrowHelper_ThrowIndexOutOfRangeException_m86F753A24E2765A35546BA6352A7E4F0BB8A66B5(NULL);
}
IL_0010:
{
Il2CppChar* L_2 = (&__this->____firstChar_5);
int32_t L_3 = ___0_index;
Il2CppChar* L_4;
L_4 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_2, L_3);
int32_t L_5 = *((uint16_t*)L_4);
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ErrorInfo_get_Error_mF34947899E06A00CA22985B73034CE96610FBD2B_inline (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____error_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeClassHandle__ctor_mCBFDB2FEABD43D5F1900DFE64DB401E3415E7D34_inline (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* ___0_value, const RuntimeMethod* method)
{
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_0 = ___0_value;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* RuntimeClassHandle_get_Value_m25D4B9C7BC4BB723CDD408E0F490D8DAB54B5EFB_inline (RuntimeClassHandle_t29423945E9504A998DE35448232198BBE08D8E72* __this, const RuntimeMethod* method)
{
{
MonoClass_t5D3CFC02F2F712B23EDBD78C02C8D37345E5CB90* L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeTypeHandle__ctor_m3B7A6EF106E5F7259DA89488C4D23622533C09A8_inline (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B* __this, intptr_t ___0_val, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_val;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeEventHandle__ctor_m9712CDDC8FAB489928A3C5C37D91A79E5C344F78_inline (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, intptr_t ___0_v, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_v;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t RuntimeEventHandle_get_Value_mE84A702C797FF1933824906BE69AE5E3D3304B30_inline (RuntimeEventHandle_t2EE549FFF9A46DFAEC860C2EA657429391369C26* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimePropertyHandle__ctor_m0D2C702D16F3F51A9E9AA1AC9E808C82F92E711E_inline (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, intptr_t ___0_v, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_v;
__this->___value_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t RuntimePropertyHandle_get_Value_mDF730CAE1334309B5B59074DCACBC34884C34406_inline (RuntimePropertyHandle_tF29419B6B585E14B11225E0AAE12911E93447C48* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_m46FD80414521FFE51B8D16D74A40D275EA99E338_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var);
bool L_0 = ((MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t26E4B9B0E049DBAFAB2189A2DFCEAD9A5893F29E_il2cpp_TypeInfo_var))->___isReady_18;
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 void SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, intptr_t ___0_handle, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___0_handle;
__this->___handle_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_CompareOrdinalHelper_mD7287520C026662FDDC0BEADFAA38A63A42D8456_inline (String_t* ___0_strA, int32_t ___1_indexA, int32_t ___2_countA, String_t* ___3_strB, int32_t ___4_indexB, int32_t ___5_countB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strA;
NullCheck(L_0);
Il2CppChar* L_1;
L_1 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_0, NULL);
int32_t L_2 = ___1_indexA;
Il2CppChar* L_3;
L_3 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_1, L_2);
int32_t L_4 = ___2_countA;
String_t* L_5 = ___3_strB;
NullCheck(L_5);
Il2CppChar* L_6;
L_6 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_5, NULL);
int32_t L_7 = ___4_indexB;
Il2CppChar* L_8;
L_8 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_6, L_7);
int32_t L_9 = ___5_countB;
int32_t L_10;
L_10 = SpanHelpers_SequenceCompareTo_mD219EEDAF772A34D5C68FFBC11A1EDB8C92662A0(L_3, L_4, L_8, L_9, NULL);
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool String_EqualsHelper_m5ADD2D84D2A2EDB94ADF57A70F78AF3FB4CCB7F7_inline (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method)
{
{
String_t* L_0 = ___0_strA;
NullCheck(L_0);
Il2CppChar* L_1;
L_1 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_0, NULL);
uint8_t* L_2;
L_2 = il2cpp_unsafe_as_ref<uint8_t>(L_1);
String_t* L_3 = ___1_strB;
NullCheck(L_3);
Il2CppChar* L_4;
L_4 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_3, NULL);
uint8_t* L_5;
L_5 = il2cpp_unsafe_as_ref<uint8_t>(L_4);
String_t* L_6 = ___0_strA;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
bool L_8;
L_8 = SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E(L_2, L_5, ((int64_t)il2cpp_codegen_multiply(((int64_t)L_7), ((int64_t)2))), NULL);
return L_8;
}
}
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<Il2CppChar,int32_t>(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_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 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<Il2CppChar,int32_t>(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 ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Func_2_Invoke_m911CDB96474C146DFAFB9E9CDA9CDE8D68BB87AC_gshared_inline (Func_2_t17D1F9D76B6D544ECA831BF2D9F94AE46EDFDAF8* __this, ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___0_arg, const RuntimeMethod* method)
{
typedef ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 (*FunctionPointerType) (RuntimeObject*, ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
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 Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __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<intptr_t> (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;
uint8_t* L_4;
L_4 = il2cpp_unsafe_as_ref<uint8_t>((uint8_t*)L_3);
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC 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 void ReadOnlySpan_1__ctor_m470D1527EF015478E8677C7BCB52C8410A1DB604_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __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<intptr_t> (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;
uint8_t* L_4;
L_4 = il2cpp_unsafe_as_ref<uint8_t>((uint8_t*)L_3);
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC 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 MemoryExtensions_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m508604BBCD7DCCB4DEC428F44BD554F030698FF7_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_span, uint8_t ___1_value, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_3;
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
bool L_4;
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
if (!L_4)
{
goto IL_003b;
}
}
{
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_5 = ___0_span;
uint8_t* L_6;
L_6 = (( uint8_t* (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, il2cpp_rgctx_method(method->rgctx_data, 1));
uint8_t* L_7;
L_7 = il2cpp_unsafe_as_ref<uint8_t>(L_6);
uint8_t* L_8;
L_8 = il2cpp_unsafe_as_ref<uint8_t>((&___1_value));
int32_t L_9 = *((uint8_t*)L_8);
int32_t L_10;
L_10 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 2));
int32_t L_11;
L_11 = SpanHelpers_IndexOf_mB37566B16F2F4C7D14E1CD6EA781AC67110E8C4C(L_7, (uint8_t)L_9, L_10, NULL);
return L_11;
}
IL_003b:
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_13;
L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_15;
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
bool L_16;
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
if (!L_16)
{
goto IL_0076;
}
}
{
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_17 = ___0_span;
uint8_t* L_18;
L_18 = (( uint8_t* (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_17, il2cpp_rgctx_method(method->rgctx_data, 1));
Il2CppChar* L_19;
L_19 = il2cpp_unsafe_as_ref<Il2CppChar>(L_18);
Il2CppChar* L_20;
L_20 = il2cpp_unsafe_as_ref<Il2CppChar>((&___1_value));
int32_t L_21 = *((uint16_t*)L_20);
int32_t L_22;
L_22 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 2));
int32_t L_23;
L_23 = SpanHelpers_IndexOf_m1EBE4594F5288D2297A3A8E8E4F365BE4BD211DC(L_19, (Il2CppChar)L_21, L_22, NULL);
return L_23;
}
IL_0076:
{
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_24 = ___0_span;
uint8_t* L_25;
L_25 = (( uint8_t* (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_24, il2cpp_rgctx_method(method->rgctx_data, 1));
uint8_t L_26 = ___1_value;
int32_t L_27;
L_27 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 2));
int32_t L_28;
L_28 = (( int32_t (*) (uint8_t*, uint8_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_25, L_26, L_27, il2cpp_rgctx_method(method->rgctx_data, 3));
return L_28;
}
}
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<Il2CppChar,int32_t>(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 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 void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
if (!true)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
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<il2cpp_array_size_t>(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 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 void Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __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<intptr_t> (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;
int32_t* L_4;
L_4 = il2cpp_unsafe_as_ref<int32_t>((uint8_t*)L_3);
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 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 void ValueListBuilder_1_Append_m82EED4641F554E01AB5A9D550671180EB977403A_gshared_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, int32_t ___0_item, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____pos_2;
V_0 = L_0;
int32_t L_1 = V_0;
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* L_2 = (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*)(&__this->____span_0);
int32_t L_3;
L_3 = Span_1_get_Length_m87AB3C694F2E4802F14D006F21C020816045285F_inline(L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_001b;
}
}
{
ValueListBuilder_1_Grow_m77CD139AE5695E19D15528EDCABC2DBC5232442A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 1));
}
IL_001b:
{
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* L_4 = (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*)(&__this->____span_0);
int32_t L_5 = V_0;
int32_t* L_6;
L_6 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&((L_4)->____pointer_0))->value, (L_5), (L_4)->____length_1);
int32_t L_7 = ___0_item;
*(int32_t*)L_6 = L_7;
int32_t L_8 = V_0;
__this->____pos_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueListBuilder_1_get_Length_m5E1004C3E00651D27A84A1622969B2552A47EC96_gshared_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____pos_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Dispose_mE3B9D4AD5CDC1E5D3B9F50469678BF99D2FD276D_gshared_inline (ValueListBuilder_1_t05C7BEF0D12A72F4844DD484512F333C34580D4B* __this, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____arrayFromPool_1;
if (!L_0)
{
goto IL_0020;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6));
ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01* L_1;
L_1 = (( ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01* (*) (const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____arrayFromPool_1;
NullCheck(L_1);
VirtualActionInvoker2< Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, bool >::Invoke(5 /* System.Void System.Buffers.ArrayPool`1<System.Int32>::Return(T[],System.Boolean) */, L_1, L_2, (bool)0);
__this->____arrayFromPool_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)NULL;
}
IL_0020:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m30A9A7FDA90B255CD058755FB136AC1E6E2F63F8_gshared_inline (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____length_1;
return L_0;
}
}
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;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __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<Il2CppChar,int32_t>(L_3, L_4);
int32_t L_6 = (int32_t)__this->____length_1;
int32_t L_7 = ___0_start;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_8;
memset((&L_8), 0, sizeof(L_8));
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_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 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 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 CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ((EmptyArray_1_t7BBC8CED754F364A777871A238BBBE3F94FFDDE1_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 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 int32_t Span_1_get_Length_m87AB3C694F2E4802F14D006F21C020816045285F_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____length_1;
return L_0;
}
}