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

30657 行
1.4 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
#include "mono/ThreadPool/threadpool-ms-io.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, 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 R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, 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);
}
};
struct GenericVirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct GenericVirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, 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, 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);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InvokerActionInvoker1;
template <typename T1>
struct InvokerActionInvoker1<T1*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2>
struct InvokerActionInvoker2;
template <typename T1, typename T2>
struct InvokerActionInvoker2<T1*, T2*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename R, typename T1>
struct InvokerFuncInvoker1;
template <typename R, typename T1>
struct InvokerFuncInvoker1<R, T1*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
R ret;
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2;
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2<R, T1*, T2*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
R ret;
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>
struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
// 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.Object,System.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710;
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
// System.Collections.Generic.Dictionary`2<System.String,System.UriParser>
struct Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238;
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Object>
struct Dictionary_2_tA06D47A9E83F6FE69E39F1FF32E19C633FF91318;
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
// System.Collections.Generic.EqualityComparer`1<System.Text.RegularExpressions.Group>
struct EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572;
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2;
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
struct EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7;
// System.Collections.Generic.IComparer`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>
struct IComparer_1_t159FEB1B1070E2EE853CD70A3DAF125998EE03D3;
// System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Group>
struct IEnumerator_1_tAB6D6FE62A6FC7EC727D508D1FE0ACE9DE829DA1;
// System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Match>
struct IEnumerator_1_tBE625E4C641A4448EE790B5212521559E54835D9;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.IEqualityComparer`1<System.Text.RegularExpressions.Regex/CachedCodeEntryKey>
struct IEqualityComparer_1_t984D540FC208A2CABAB23A4D766E1C17CA1D0833;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.UriParser>
struct KeyCollection_tFA85999EAC3DD3A927FBCF9A8766DE517F2CA09E;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
struct KeyCollection_t755C575B4744E7CC5BB256A2ADCA7B9477FED7CC;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
// System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>
struct List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC>
struct List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1;
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>
struct List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8;
// System.Collections.Generic.List`1<System.String>
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
struct ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.UriParser>
struct ValueCollection_t8492068D7F6BDD986232A9D83B972252F6592A74;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
struct ValueCollection_t7527D79A0F67C44B360B51B5FEB47DACBC975266;
// System.WeakReference`1<System.Object>
struct WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE;
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
struct EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.UriParser>[]
struct EntryU5BU5D_tEF2CC19489C607DB0BA4F40AFEA8E0F280AFA48C;
// System.Collections.Generic.Dictionary`2/Entry<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>[]
struct EntryU5BU5D_t24A044BE0C07CDF2E13EA861A1514664AE9A4CB6;
// System.Int32[][]
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
// System.String[][]
struct StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Text.RegularExpressions.Capture[]
struct CaptureU5BU5D_tC1C7568482C97A1529C2B061F0502A45FFFEEBD3;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Text.RegularExpressions.Group[]
struct GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Text.RegularExpressions.Match[]
struct MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Text.RegularExpressions.RegexFC[]
struct RegexFCU5BU5D_t3E922C821A602D0D6B0DEBB7FDC7B93A3E976EEF;
// System.Text.RegularExpressions.RegexNode[]
struct RegexNodeU5BU5D_t9B65B8909ADD9DB9D8B82F44D786BD8CA7640851;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[]
struct LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1;
// System.Text.RegularExpressions.RegexCharClass/SingleRange[]
struct SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6;
// System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.AssemblyLoadEventHandler
struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Text.RegularExpressions.Capture
struct Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A;
// System.Text.RegularExpressions.CaptureCollection
struct CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// 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.DecoderReplacementFallback
struct DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.EncoderReplacementFallback
struct EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.EventHandler
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82;
// System.Threading.EventWaitHandle
struct EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E;
// System.Exception
struct Exception_t;
// System.Text.RegularExpressions.ExclusiveReference
struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
// System.Text.RegularExpressions.Group
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881;
// System.Text.RegularExpressions.GroupCollection
struct GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.Collections.IEqualityComparer
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
// System.IOAsyncCallback
struct IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388;
// System.IOAsyncResult
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374;
// System.IOSelectorJob
struct IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31;
// System.ComponentModel.ITypeDescriptorContext
struct ITypeDescriptorContext_t514D0B45A781ED18AB6A0DC6673A95B8359443F4;
// System.Globalization.IdnMapping
struct IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81;
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158;
// System.Text.RegularExpressions.Match
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F;
// System.Text.RegularExpressions.MatchCollection
struct MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC;
// System.Text.RegularExpressions.MatchEvaluator
struct MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113;
// System.Text.RegularExpressions.MatchSparse
struct MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.PlatformNotSupportedException
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A;
// System.Globalization.Punycode
struct Punycode_t44EE1AAE844D2794F7B24173D738BC7120E37BF5;
// System.Text.RegularExpressions.Regex
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
// System.Text.RegularExpressions.RegexBoyerMoore
struct RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A;
// System.Text.RegularExpressions.RegexCharClass
struct RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C;
// System.Text.RegularExpressions.RegexCode
struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
// System.Text.RegularExpressions.RegexFC
struct RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4;
// System.Text.RegularExpressions.RegexInterpreter
struct RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7;
// System.Text.RegularExpressions.RegexNode
struct RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360;
// System.Text.RegularExpressions.RegexReplacement
struct RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E;
// System.Text.RegularExpressions.RegexRunner
struct RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B;
// System.Text.RegularExpressions.RegexRunnerFactory
struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
// System.Text.RegularExpressions.RegexTree
struct RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2;
// System.ResolveEventHandler
struct ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.Threading.ThreadAbortException
struct ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4;
// System.Type
struct Type_t;
// System.ComponentModel.TypeConverter
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C;
// System.UnhandledExceptionEventHandler
struct UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C;
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
// System.UriFormatException
struct UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF;
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
// System.UriTypeConverter
struct UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8;
// System.Text.RegularExpressions.GroupCollection/Enumerator
struct Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772;
// System.Text.RegularExpressions.MatchCollection/Enumerator
struct Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D;
// System.Text.RegularExpressions.Regex/CachedCodeEntry
struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
// System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer
struct SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0;
// System.Uri/MoreInfo
struct MoreInfo_tB58ABF2D5D75E92D35BBC37192CD0D5C02C3F0FA;
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
// System.UriParser/BuiltInUriParser
struct BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C;
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* BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39_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* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t0E677CEC3662A83D9FB579D268AD5C28BBEB68EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t4E7BA04D19E6966C7207F5A1C00C1020C9608509_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tDD508225C05789721D31C8EA0A0B7C5E116F37D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tE325109D143DAE3706FB4C733DB80BB58C2496F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_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* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF_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* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UriComponents_t92D6A11B001BCF2B97D0613FD0541637524A7A82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_5_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral000F57CC5E07B45534A096C11FC9672E840B7F68;
IL2CPP_EXTERN_C String_t* _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD;
IL2CPP_EXTERN_C String_t* _stringLiteral011DF8383E0C2BB51ACA74815C24731CD9E6CE0F;
IL2CPP_EXTERN_C String_t* _stringLiteral0140171DEC0E182AA67E7F6CFEEBAB7C8B5C0FCE;
IL2CPP_EXTERN_C String_t* _stringLiteral01AA0D36274A76E5B82E172EB39CD0A2B7C42F6F;
IL2CPP_EXTERN_C String_t* _stringLiteral04F6959FE66299139C73EEDA75304959291465E4;
IL2CPP_EXTERN_C String_t* _stringLiteral053D8D6CEEBA9453C97D0EE5374DB863E6F77AD4;
IL2CPP_EXTERN_C String_t* _stringLiteral070D6014844E6DF132D41B316BE8094A83EA1438;
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
IL2CPP_EXTERN_C String_t* _stringLiteral078B26963F0AABA0E769F9FE2FD2A435F23963D3;
IL2CPP_EXTERN_C String_t* _stringLiteral07C1C7BA92E50F21FFD892D17457CF1A69BB791D;
IL2CPP_EXTERN_C String_t* _stringLiteral08DD4EB050E73CCA4453097A7DBA79D40E0E3979;
IL2CPP_EXTERN_C String_t* _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10;
IL2CPP_EXTERN_C String_t* _stringLiteral096B13703C72B9AEA7C14C090DF850AD4A3A1041;
IL2CPP_EXTERN_C String_t* _stringLiteral0A4E2151BBA9A1D6C1D5A0AD327D1B10C9EE9832;
IL2CPP_EXTERN_C String_t* _stringLiteral0B9CA6E4B359F5055F5C4732939C6CF17D4D5CEA;
IL2CPP_EXTERN_C String_t* _stringLiteral0DB5D60B71A46B7795916FE26C1C4DBC53DE160A;
IL2CPP_EXTERN_C String_t* _stringLiteral0DF7C1A0741BEED9A8C63FAA83056EC4B6BEE7A6;
IL2CPP_EXTERN_C String_t* _stringLiteral0E356BA505631FBF715758BED27D503F8B260E3A;
IL2CPP_EXTERN_C String_t* _stringLiteral0EA4B1CC43D32D001CCC7AEB31AED2F319871953;
IL2CPP_EXTERN_C String_t* _stringLiteral0F622D75F0434A833C1A20335861864CB07278C7;
IL2CPP_EXTERN_C String_t* _stringLiteral101267D78B17257986305184E104E56DAAB7F530;
IL2CPP_EXTERN_C String_t* _stringLiteral10FD1944C65E314C0A29404FEA92EF36B361E76F;
IL2CPP_EXTERN_C String_t* _stringLiteral114F963FF5A99D30DEF5029A17A2882AE35F3351;
IL2CPP_EXTERN_C String_t* _stringLiteral1170C7BC5A746D6ACA6EDEF05E2564FF8B22FCBE;
IL2CPP_EXTERN_C String_t* _stringLiteral11E7A22EB71C40109AE6CB22789A72565B8017FC;
IL2CPP_EXTERN_C String_t* _stringLiteral1210E68C52ADBB898A6E113C26B325E97793204E;
IL2CPP_EXTERN_C String_t* _stringLiteral128334FD6CDD6094EC6C44C09CAD6FF7669AF5E2;
IL2CPP_EXTERN_C String_t* _stringLiteral130E357173B69D89809090B52517E63B39F780E8;
IL2CPP_EXTERN_C String_t* _stringLiteral13D9C88B313302420C8CFE519F4C703FF034E7EE;
IL2CPP_EXTERN_C String_t* _stringLiteral13FE9FD2E16CB2DFD4137039CFA338E990ED2CDC;
IL2CPP_EXTERN_C String_t* _stringLiteral143C872360343241D83008E13DCCEBD90A41C3C5;
IL2CPP_EXTERN_C String_t* _stringLiteral1489F923C4DCA729178B3E3233458550D8DDDF29;
IL2CPP_EXTERN_C String_t* _stringLiteral15040C7E5288B7B711A62DA4A28F41E54CDA46C6;
IL2CPP_EXTERN_C String_t* _stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2;
IL2CPP_EXTERN_C String_t* _stringLiteral15511681E57C6B2F87C98682ED71B8CA850A8F9D;
IL2CPP_EXTERN_C String_t* _stringLiteral1597D592E82DA28F57E15327C1FB8CCAA68433C3;
IL2CPP_EXTERN_C String_t* _stringLiteral15CF5C2792462326B481E11AC5840FB1C9BD9753;
IL2CPP_EXTERN_C String_t* _stringLiteral1617F2BEE10D5175D04111AF86F02617CABA97F8;
IL2CPP_EXTERN_C String_t* _stringLiteral16E57333086571811A55FB94A0709583DE6ED3ED;
IL2CPP_EXTERN_C String_t* _stringLiteral17138F1A25103243037965AF0DACDE016F009F1F;
IL2CPP_EXTERN_C String_t* _stringLiteral1957A3E746ABE2F553BFCCE9CB0D765AF0E28F1F;
IL2CPP_EXTERN_C String_t* _stringLiteral19A87220AA9460BCE77166C6A721ECA99780C3E7;
IL2CPP_EXTERN_C String_t* _stringLiteral19E0261B9934BD92A6FCAC8943D903675768820D;
IL2CPP_EXTERN_C String_t* _stringLiteral19F63BC67A386ED4A60194F8544D07544E0ED578;
IL2CPP_EXTERN_C String_t* _stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284;
IL2CPP_EXTERN_C String_t* _stringLiteral1A95536CFA43BE767A4C275A39B7BE4808E9089C;
IL2CPP_EXTERN_C String_t* _stringLiteral1AB68A0E52A32EE36A9AE0A3D6EFEB01F0F7FADA;
IL2CPP_EXTERN_C String_t* _stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E;
IL2CPP_EXTERN_C String_t* _stringLiteral1C7F51C9DB9BE64870719C518062BBF577083F00;
IL2CPP_EXTERN_C String_t* _stringLiteral1D91AAC2C6FB094296F989862225A9BA6B227573;
IL2CPP_EXTERN_C String_t* _stringLiteral1DCAF254E462C711D74E7655EF57F6ADFE0005F3;
IL2CPP_EXTERN_C String_t* _stringLiteral1DE5A73ADD8E12B2946578D4ECFC5F00255F2C55;
IL2CPP_EXTERN_C String_t* _stringLiteral1E972889E9B24A074D194A58B80B967B519863E2;
IL2CPP_EXTERN_C String_t* _stringLiteral1E9F798EB462039BB2177A8C3030D8E9736FDC2F;
IL2CPP_EXTERN_C String_t* _stringLiteral1EC89EE4781577447EF59AEA1BDCB577E3152BED;
IL2CPP_EXTERN_C String_t* _stringLiteral206A50481A582043159547C0CBBBBDCC728C7AEB;
IL2CPP_EXTERN_C String_t* _stringLiteral2086C9392E067629621EF48286148B3F05A73E71;
IL2CPP_EXTERN_C String_t* _stringLiteral20CB4BC9AD027C4DBCABC34553F9EDA5EF3DA0A5;
IL2CPP_EXTERN_C String_t* _stringLiteral21A998A9E8032EA402184FF6E9E027A017C5E340;
IL2CPP_EXTERN_C String_t* _stringLiteral234D19ACC97DBDDB4C2351D9B583DDC8AD958380;
IL2CPP_EXTERN_C String_t* _stringLiteral23F68F010E1BEF01AE1E817AB8CB5610B3123D6C;
IL2CPP_EXTERN_C String_t* _stringLiteral24313380B89749FA23D81C8CFE7ECADF5F282DF3;
IL2CPP_EXTERN_C String_t* _stringLiteral247E61BCA5CC999BD7DF819AFB4BD1625BD89B92;
IL2CPP_EXTERN_C String_t* _stringLiteral2532DF950B4388A092C5014E3ED2E06043E01B06;
IL2CPP_EXTERN_C String_t* _stringLiteral25AE09788E4F4652C4499CDB887696F30D3C0A14;
IL2CPP_EXTERN_C String_t* _stringLiteral26B8A55537BB75F22B06B27AB210733192EB9255;
IL2CPP_EXTERN_C String_t* _stringLiteral26F6EDFC76E72DC536C20E57742C3028CF19D0E4;
IL2CPP_EXTERN_C String_t* _stringLiteral27CDC5C40A6244DAB073099C8597F6AE59E64332;
IL2CPP_EXTERN_C String_t* _stringLiteral28B479468676DD63B85F4D86A55B2B645958E13F;
IL2CPP_EXTERN_C String_t* _stringLiteral291D5871DD89F1D30A07082FF0F885DB96ED978E;
IL2CPP_EXTERN_C String_t* _stringLiteral29588F1CB3A3C49E44B9901B49671B5BFACA26AD;
IL2CPP_EXTERN_C String_t* _stringLiteral2A6312F3D68C885205BF84CED395D8AF4B0AE871;
IL2CPP_EXTERN_C String_t* _stringLiteral2A7EF3D582665CA41115B9D210D25F834B8A136E;
IL2CPP_EXTERN_C String_t* _stringLiteral2A9DB411D2677142C609D070E692BAF2D45522FD;
IL2CPP_EXTERN_C String_t* _stringLiteral2B9C80C1D9D6D29DCFBF1AF4BBC3F8B76CA52758;
IL2CPP_EXTERN_C String_t* _stringLiteral2BA36E0ECAE4F6481FD29426D81E78B78AFC7010;
IL2CPP_EXTERN_C String_t* _stringLiteral2BC80923BC3E932EEF70C3EADA463E4AFCEAF41C;
IL2CPP_EXTERN_C String_t* _stringLiteral2DA4F5666B10D635F4124ED2863B7EDAE4456F97;
IL2CPP_EXTERN_C String_t* _stringLiteral2E36B6524DCDA0E1F8E3C5E4DE0EDEE1CE1D593E;
IL2CPP_EXTERN_C String_t* _stringLiteral2F15DCEA75308906FE22DC8E2CB71A007135A75B;
IL2CPP_EXTERN_C String_t* _stringLiteral2F627E050FC96CB06809DD00B72C043AF06DD74F;
IL2CPP_EXTERN_C String_t* _stringLiteral2FA567A6E7C4AF82CD3E48D19E671A027AA8C39F;
IL2CPP_EXTERN_C String_t* _stringLiteral2FE2C0AAB1B3726B4599067198204955DC8B58BC;
IL2CPP_EXTERN_C String_t* _stringLiteral300268D606563A63B1FA078DEEDF83AFCAAAE4F0;
IL2CPP_EXTERN_C String_t* _stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2;
IL2CPP_EXTERN_C String_t* _stringLiteral3311705E737BEADF911B313590BF8CF65EB59CC1;
IL2CPP_EXTERN_C String_t* _stringLiteral33283793135AFF6EA11C4E5C8BF20BFE3DCBA7D8;
IL2CPP_EXTERN_C String_t* _stringLiteral33AAE7E3BDF099D0868E4C15621108A967FE4DC4;
IL2CPP_EXTERN_C String_t* _stringLiteral340B59088D1E7ED96B802B2F82F9F37B545A0D7D;
IL2CPP_EXTERN_C String_t* _stringLiteral34557A7DCB2F8DBA8DB69871993A003A8F4D2956;
IL2CPP_EXTERN_C String_t* _stringLiteral34706AEB52EC7987B7354AFAEFBE4DE3FF8A91EF;
IL2CPP_EXTERN_C String_t* _stringLiteral34ACA0350B0D7DEE2485343251B1984C498672B7;
IL2CPP_EXTERN_C String_t* _stringLiteral34D4FC077E54157726AE9B0ADDA15B8BFF84A418;
IL2CPP_EXTERN_C String_t* _stringLiteral35896C163A11D689243E387537FCD8A2318B554F;
IL2CPP_EXTERN_C String_t* _stringLiteral35B8114AC69BEBAACEEF31EAE37667FA389CB075;
IL2CPP_EXTERN_C String_t* _stringLiteral36CB796E61D012C499558795200D7D4714DA234C;
IL2CPP_EXTERN_C String_t* _stringLiteral37B18B4FDEC37ECA95A5E9D9C8B31C5C413A09A6;
IL2CPP_EXTERN_C String_t* _stringLiteral382CEA341283C799FB6CF03C7FD23F5A61EA9F7E;
IL2CPP_EXTERN_C String_t* _stringLiteral38383EE49792CC3B3E578FC02137E10AFCD4758D;
IL2CPP_EXTERN_C String_t* _stringLiteral389A9F19C8A7AB79BBF990BB3DCB06B29F25F918;
IL2CPP_EXTERN_C String_t* _stringLiteral3AB04459C95BC4FFBBDA41BF1A685753EB83D903;
IL2CPP_EXTERN_C String_t* _stringLiteral3B74C4EE573585B536403D684B3EBF642E92483B;
IL2CPP_EXTERN_C String_t* _stringLiteral3C2555089D217F13B7AA63E80C445CC9BB96E4F8;
IL2CPP_EXTERN_C String_t* _stringLiteral3E0F8D65BB2C91CC1B08E6BF17D4F04D124FB22D;
IL2CPP_EXTERN_C String_t* _stringLiteral3E8C94A3E14E14AA02CE50BE5898BFE459EFF966;
IL2CPP_EXTERN_C String_t* _stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B;
IL2CPP_EXTERN_C String_t* _stringLiteral3EE5BCAF4F2ABF8C2E555D5760FA880AAB22CABF;
IL2CPP_EXTERN_C String_t* _stringLiteral3F312D3A9558BFCCCA55C437288461A61D8E1D93;
IL2CPP_EXTERN_C String_t* _stringLiteral3FF3E7DECFB9C95D2D63B46FEE99497F03EA7B17;
IL2CPP_EXTERN_C String_t* _stringLiteral4073D00CB09BBEA83C116CD6C23565C9EA25BD79;
IL2CPP_EXTERN_C String_t* _stringLiteral40C5D20526D3E1F271BCC96E4185E2B8D38D5CD6;
IL2CPP_EXTERN_C String_t* _stringLiteral417B904D495BF7B5B00D670B422777028B0F07DA;
IL2CPP_EXTERN_C String_t* _stringLiteral41DC862347F6094C3DE052ECE9EDE8691528B858;
IL2CPP_EXTERN_C String_t* _stringLiteral4251DBF5ADF22DF838851BDEA678ED6D151EF9C1;
IL2CPP_EXTERN_C String_t* _stringLiteral42B381340E99A7D1B67884D1B8FC702C25279D7E;
IL2CPP_EXTERN_C String_t* _stringLiteral430944DE69F10C0B23DC2BCA3D2D3116A748687C;
IL2CPP_EXTERN_C String_t* _stringLiteral43248ADAE46B03C6973C36912CF5A1F9388DA3CA;
IL2CPP_EXTERN_C String_t* _stringLiteral4366DE5220453B7E4119C139B5899C931A1996B1;
IL2CPP_EXTERN_C String_t* _stringLiteral44164D1EBC6AEE4BF7519590E8E1EC986D7AE6AB;
IL2CPP_EXTERN_C String_t* _stringLiteral44B60543C50583A2A430E5FA54F980E8284D55D1;
IL2CPP_EXTERN_C String_t* _stringLiteral44B9BD7E0CF8DFB1AE4286D58C477BC0EAD8DB8A;
IL2CPP_EXTERN_C String_t* _stringLiteral4647EBF68BAADB1E3B9B0C77F3A69B79BF1A0C1E;
IL2CPP_EXTERN_C String_t* _stringLiteral46E1FF853298BBE44C51916BE2DE99315FDA94EE;
IL2CPP_EXTERN_C String_t* _stringLiteral46FE6AEAF3CC2C63CB04108AD734B8F3343F9CEC;
IL2CPP_EXTERN_C String_t* _stringLiteral4713250C292B59C6AAA9A7591D3BB43ABA0A26E9;
IL2CPP_EXTERN_C String_t* _stringLiteral48B15371F248E055C6B88CA5F7E8908A2F9528A1;
IL2CPP_EXTERN_C String_t* _stringLiteral492FBC692FA08806670CCBD96D41280D1A10D87C;
IL2CPP_EXTERN_C String_t* _stringLiteral493CF4443F62774E118495D34076BBB67DA26447;
IL2CPP_EXTERN_C String_t* _stringLiteral49FDD37399D8F47722B2A2D5F3272B1F0A84C50A;
IL2CPP_EXTERN_C String_t* _stringLiteral4A94750FA069FF6E0CA4240635D562EC6A9A3CD9;
IL2CPP_EXTERN_C String_t* _stringLiteral4C301992B1F446471CFF312BEC98B68362ED7195;
IL2CPP_EXTERN_C String_t* _stringLiteral4C834A0A1BF9CAFE03A200455551D5F3BE9F6A17;
IL2CPP_EXTERN_C String_t* _stringLiteral4E22436534F7DDDA6023610945AD3FB84B08D5F2;
IL2CPP_EXTERN_C String_t* _stringLiteral4EE7674C61A1A731E18D5F2496FE39B31A85571E;
IL2CPP_EXTERN_C String_t* _stringLiteral4F6FCE005462468B85E1B17BF50DABD387E2AA0D;
IL2CPP_EXTERN_C String_t* _stringLiteral4F976B576FF11797205EF4CC68ACD9A800BE2AC1;
IL2CPP_EXTERN_C String_t* _stringLiteral5059FE07AF01D26644CD156256DE05A498559F40;
IL2CPP_EXTERN_C String_t* _stringLiteral507838B99A8D85F0312998B7DAFF905BD48ED124;
IL2CPP_EXTERN_C String_t* _stringLiteral516E5BE6DD9745A9A8953C8F5212FB4B0BAC5414;
IL2CPP_EXTERN_C String_t* _stringLiteral51B91EE138D75025CB4AD85CAE46A3613A4FE4F1;
IL2CPP_EXTERN_C String_t* _stringLiteral523A7FD96B12FF5B6C3751047058C6D7D1ACA3CB;
IL2CPP_EXTERN_C String_t* _stringLiteral536FBABA39FCBBBEAC12562490EE276814293C4E;
IL2CPP_EXTERN_C String_t* _stringLiteral5573AC6AB93A9166E7A15D98F63033348624AB14;
IL2CPP_EXTERN_C String_t* _stringLiteral5672E54AB2E54B13506540FFFD4046D50ADD13F5;
IL2CPP_EXTERN_C String_t* _stringLiteral56D7741BCA89552362FD24D11BB8980E3D8A444C;
IL2CPP_EXTERN_C String_t* _stringLiteral572C38B92C9B0B812EDF7214BF6A234D5B82A1BF;
IL2CPP_EXTERN_C String_t* _stringLiteral585541DFE94914F2247B4370A9C9041BA8A8817A;
IL2CPP_EXTERN_C String_t* _stringLiteral587B0E053519266A1A5628C5DBE03AA33A3BBE95;
IL2CPP_EXTERN_C String_t* _stringLiteral58B716FF5428F7961E1403E6D969E605D0F27EAF;
IL2CPP_EXTERN_C String_t* _stringLiteral58ECA1815AE37FF755F51324305C6B20EEB5CA43;
IL2CPP_EXTERN_C String_t* _stringLiteral5D0500A33A5D752B7F9B7739B149EF5093EB4A4C;
IL2CPP_EXTERN_C String_t* _stringLiteral5D06023694DC591611674259693BCE83EA3DB59D;
IL2CPP_EXTERN_C String_t* _stringLiteral5D81741866E0AFB5638DF15167E9A90CDC2CF124;
IL2CPP_EXTERN_C String_t* _stringLiteral5D87BBECD21302E784C8C8CBE6A07BB1F9F99A6A;
IL2CPP_EXTERN_C String_t* _stringLiteral5E2FCEA4A7480B304F0A57BA73C66905F03F82D8;
IL2CPP_EXTERN_C String_t* _stringLiteral5EA04EBADB6862D231CCC55599471F40B5853152;
IL2CPP_EXTERN_C String_t* _stringLiteral5F802F2CCDDC761DBC132CF3C338C39FE047A6C5;
IL2CPP_EXTERN_C String_t* _stringLiteral5FB56C8861544146EF414DAE01766AD43F440960;
IL2CPP_EXTERN_C String_t* _stringLiteral5FC154761871B7293BA5D77E57A16A71359FE4E5;
IL2CPP_EXTERN_C String_t* _stringLiteral60820866198451E7A511DDE45223B743485E091B;
IL2CPP_EXTERN_C String_t* _stringLiteral6384916204C3C792C7ADFE16CD44673450DC60BF;
IL2CPP_EXTERN_C String_t* _stringLiteral63CBAAA066EA660C960DD134AECF48535F87D341;
IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97;
IL2CPP_EXTERN_C String_t* _stringLiteral6400E1A9A53D55249951EBDFEFD090A6FEEA713C;
IL2CPP_EXTERN_C String_t* _stringLiteral6437668AAFF3C7A470F151AD7B4EE6B5D8AF0CDD;
IL2CPP_EXTERN_C String_t* _stringLiteral647DE9597222B23A6CBF484F4ACE45204FDF469C;
IL2CPP_EXTERN_C String_t* _stringLiteral64CEBA4D1E05040C825F3B67FF36104CDF8C140B;
IL2CPP_EXTERN_C String_t* _stringLiteral656D9E0C66BEC4E7D31947D0F46CDD1F3D0780C4;
IL2CPP_EXTERN_C String_t* _stringLiteral67A5CD5B9B1936E3A2E1D14DF804FE6F86F90FBF;
IL2CPP_EXTERN_C String_t* _stringLiteral688934845F22049CB14668832EFA33D45013B6B9;
IL2CPP_EXTERN_C String_t* _stringLiteral68C5BFBDA21C60E498829E6DC505022F5F16F460;
IL2CPP_EXTERN_C String_t* _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E;
IL2CPP_EXTERN_C String_t* _stringLiteral697C469609DEBC892F8465E2D7EFBE41919EE6C4;
IL2CPP_EXTERN_C String_t* _stringLiteral699E5CF5FC92D12C09117936E6A4F78CFD297C40;
IL2CPP_EXTERN_C String_t* _stringLiteral69E08279F3AF3F2F95DAE723B001E20161FBE38C;
IL2CPP_EXTERN_C String_t* _stringLiteral69E73A35FA56B5A7C368371EE1AA96E00AA5E7F6;
IL2CPP_EXTERN_C String_t* _stringLiteral6B1E5651A6A221CCC8E859CCB7CCB4C9377DAD2D;
IL2CPP_EXTERN_C String_t* _stringLiteral6B91749ECEA9F52797D5D7575432F93DA98ED9B6;
IL2CPP_EXTERN_C String_t* _stringLiteral6BBBCAD0FED20F4E716FA5226DA069AD1A531464;
IL2CPP_EXTERN_C String_t* _stringLiteral6D6909BC795B5728D6DDEA208DA7986143605B77;
IL2CPP_EXTERN_C String_t* _stringLiteral70A458D9D35DAA83073018B72782A5859364AEC2;
IL2CPP_EXTERN_C String_t* _stringLiteral70ACDB62BA3184CF43D7E26D62FB85E2340ED892;
IL2CPP_EXTERN_C String_t* _stringLiteral7156D4CC436B517B16046BA39F6FA35A225096BD;
IL2CPP_EXTERN_C String_t* _stringLiteral732A3DD582071D41FA00671D01893D635D8037D1;
IL2CPP_EXTERN_C String_t* _stringLiteral74037E48AC20A388E61DF94BF787B61C405AB756;
IL2CPP_EXTERN_C String_t* _stringLiteral74AE75B992F1B9D977C2A9EB14D1887671443FD9;
IL2CPP_EXTERN_C String_t* _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA;
IL2CPP_EXTERN_C String_t* _stringLiteral761474E731109EBFC61E66B2EA5CF80B189944C4;
IL2CPP_EXTERN_C String_t* _stringLiteral78FDF6509F51FFE965CF86F9D7B2D7478FBC3CC8;
IL2CPP_EXTERN_C String_t* _stringLiteral79872D0EDAA11B89BD19D3E51D0881503A87EDA1;
IL2CPP_EXTERN_C String_t* _stringLiteral7B5E86CF8187B91807877AF0725E3F9554E40645;
IL2CPP_EXTERN_C String_t* _stringLiteral7BB02F22CCAAAF38745BF587A5C3005D1AD136BE;
IL2CPP_EXTERN_C String_t* _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE;
IL2CPP_EXTERN_C String_t* _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A;
IL2CPP_EXTERN_C String_t* _stringLiteral7EADE718A2652FC00E2DC3C5311A1FC3B7EB0994;
IL2CPP_EXTERN_C String_t* _stringLiteral802D3A4E1213A50A2A168149B9FD26645A8A87A2;
IL2CPP_EXTERN_C String_t* _stringLiteral815CF156B85729CF6777A81E222C740FEE04C774;
IL2CPP_EXTERN_C String_t* _stringLiteral8175D6867E215079046783AF13663AA07AF75633;
IL2CPP_EXTERN_C String_t* _stringLiteral8259BDC645D534B5B71BDC6C8AD2D935199FFA07;
IL2CPP_EXTERN_C String_t* _stringLiteral8280C6CBF3DFC21B10377BE693A06682AF6F0152;
IL2CPP_EXTERN_C String_t* _stringLiteral82FE3474C49C05BF5FDB35ACB3EAFF407B81BEC2;
IL2CPP_EXTERN_C String_t* _stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29;
IL2CPP_EXTERN_C String_t* _stringLiteral847F72FEB0580436035F6D3588EE4923C9664F52;
IL2CPP_EXTERN_C String_t* _stringLiteral84A0343BF19D2274E807E1B6505C382F81D6E3C9;
IL2CPP_EXTERN_C String_t* _stringLiteral84D767750F508A5D8214DC4EF507F64102853819;
IL2CPP_EXTERN_C String_t* _stringLiteral8503C1230DB9F8ED4C302C9ACA86BE76005A7AD4;
IL2CPP_EXTERN_C String_t* _stringLiteral8524162C1D54A81B8F41E8ABC73B7F338BCBF999;
IL2CPP_EXTERN_C String_t* _stringLiteral85A82DCF7E610B3F027071C9E03590C558821E8B;
IL2CPP_EXTERN_C String_t* _stringLiteral86AAD9106A4B33A52D356C887F9FCCD9575A84FD;
IL2CPP_EXTERN_C String_t* _stringLiteral88CC141217D41B201641CF8FBC99ABE39D231BED;
IL2CPP_EXTERN_C String_t* _stringLiteral89E1EA169C60546C4BD1EF37579FE39231438D24;
IL2CPP_EXTERN_C String_t* _stringLiteral8AA46685E79CC9C6CF70A788C04B335A1EDB671A;
IL2CPP_EXTERN_C String_t* _stringLiteral8B196021BB84888FED22FF4F69DE2891530E658E;
IL2CPP_EXTERN_C String_t* _stringLiteral8BF693870A1CA202D2EE1A186395E62B409214FD;
IL2CPP_EXTERN_C String_t* _stringLiteral8C1BBD97ACA7E0F0DABD7D5A3480E8D91A8BF27E;
IL2CPP_EXTERN_C String_t* _stringLiteral8CB0CD7CE18209A25B0A83FA41BF1814407366B2;
IL2CPP_EXTERN_C String_t* _stringLiteral8CB5CAE4A06CBA4A72564C688228877DD24B9906;
IL2CPP_EXTERN_C String_t* _stringLiteral8D8FB160B4C212DAD2E50C479B19DFEAE167F4A3;
IL2CPP_EXTERN_C String_t* _stringLiteral8DE7291AD6C60143F257C33D0032851C6605B3D5;
IL2CPP_EXTERN_C String_t* _stringLiteral8EA5CF52FFE7CFAC422779A2A3A79A89B2C32DD0;
IL2CPP_EXTERN_C String_t* _stringLiteral8FC9007895DB64A6B839275F76D1C08A3877082E;
IL2CPP_EXTERN_C String_t* _stringLiteral905A5E6884BC6877A3AB37B1447674394A694C9D;
IL2CPP_EXTERN_C String_t* _stringLiteral90CE8CBDC840E407D5B2A4C6CF6E6A4F4794897F;
IL2CPP_EXTERN_C String_t* _stringLiteral923C91A55674664C20A3103F09FC6FC4F3831DEF;
IL2CPP_EXTERN_C String_t* _stringLiteral92A5652D382A18E89C4881EC57041FC7D885CA80;
IL2CPP_EXTERN_C String_t* _stringLiteral958F6341A9F87CE00B85F8434E98205AFF29E113;
IL2CPP_EXTERN_C String_t* _stringLiteral9646358C9E75E51D9842A7C6E688647074D38F76;
IL2CPP_EXTERN_C String_t* _stringLiteral96C094BE3157837A8972ED02015161B75EBCF5C8;
IL2CPP_EXTERN_C String_t* _stringLiteral974BB14506DAA8EED27240396BEDF6F88D18365F;
IL2CPP_EXTERN_C String_t* _stringLiteral9753F194FF9C1EAC5D2E1FAADADC2E63D96E516E;
IL2CPP_EXTERN_C String_t* _stringLiteral9782BAAC1929C850665C4846404B90AE23B25CD5;
IL2CPP_EXTERN_C String_t* _stringLiteral98A4DE8EF9F62DFF4A8C0BECFE7D99D6D24B4F04;
IL2CPP_EXTERN_C String_t* _stringLiteral9957B21B361EC3B1754C930C5A1C41F851A55813;
IL2CPP_EXTERN_C String_t* _stringLiteral9AB8B9167B4BF3DC7E58D6977773F1FFF5B866E9;
IL2CPP_EXTERN_C String_t* _stringLiteral9ACABBE7C959ED3E3557E5F849A9541171B808CB;
IL2CPP_EXTERN_C String_t* _stringLiteral9B99593353A610C4BEE0D6A94A01A3296080C0FB;
IL2CPP_EXTERN_C String_t* _stringLiteral9DD0CB5BBF8C6FB7DD693869683F1175C428DA5C;
IL2CPP_EXTERN_C String_t* _stringLiteral9DD8BCA1A64695C9743B1D5588BFE0E1402EEC02;
IL2CPP_EXTERN_C String_t* _stringLiteral9E0521A25097CB5A78F7F365E792997998243F33;
IL2CPP_EXTERN_C String_t* _stringLiteral9E866232FC6EBE054D645DFC95919F28F962D426;
IL2CPP_EXTERN_C String_t* _stringLiteral9F11BF96AA5B3A5F06F42DC23DCB6903ADA909CB;
IL2CPP_EXTERN_C String_t* _stringLiteral9FC89E4E581ACD10FED351BAADA0107858CD0772;
IL2CPP_EXTERN_C String_t* _stringLiteral9FEB4C9AB9914D2D0C51EA57D72B50A208A74A7C;
IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
IL2CPP_EXTERN_C String_t* _stringLiteralA0CEAF0BD3FADF6359126DC7C9D79D9E24E0C446;
IL2CPP_EXTERN_C String_t* _stringLiteralA0E4803448ED328FB6169A86026FEEFF36A78441;
IL2CPP_EXTERN_C String_t* _stringLiteralA13DE744B01F63C5DE74C2AEADCEEB872A243DC4;
IL2CPP_EXTERN_C String_t* _stringLiteralA17E97D5B68A896AB2F537CA1EE9FD4C545D7923;
IL2CPP_EXTERN_C String_t* _stringLiteralA185F0FDE2E3A93D140F407291AA8AA60D14D5DA;
IL2CPP_EXTERN_C String_t* _stringLiteralA1927043DBE274F716E7BB98AC63A1A852D80205;
IL2CPP_EXTERN_C String_t* _stringLiteralA25635816BE6BF5F9885D4A2338FD40C8B7DC8F9;
IL2CPP_EXTERN_C String_t* _stringLiteralA329D18BF9C9A4F354B5EC57F9B7D834C6032C03;
IL2CPP_EXTERN_C String_t* _stringLiteralA392C242A443C3023ABF204424167CEB86A765BB;
IL2CPP_EXTERN_C String_t* _stringLiteralA3C5DC11C0F491C18EA087784CC4C662A0629733;
IL2CPP_EXTERN_C String_t* _stringLiteralA453C374F6792B40611F98BF51F5D93A3E737CF6;
IL2CPP_EXTERN_C String_t* _stringLiteralA46556E3586F9581468C3C15BA58F8F32AA80D97;
IL2CPP_EXTERN_C String_t* _stringLiteralA4FC45147C51541AA3B68C8DE185FC773C7F6CAD;
IL2CPP_EXTERN_C String_t* _stringLiteralA78E6DE17205365FF846BB0AEBE6FFBC845BDDCB;
IL2CPP_EXTERN_C String_t* _stringLiteralA81B3CACE590267ABAC8F88DC90A961A186D07CF;
IL2CPP_EXTERN_C String_t* _stringLiteralA922C7ADD6A014291A7FFA692FA08A7256871463;
IL2CPP_EXTERN_C String_t* _stringLiteralAA47367E18DA97EF3E14E15715D8040CD17C608E;
IL2CPP_EXTERN_C String_t* _stringLiteralAAB6296466565113D9AAC1E6D930A78C4D894D6A;
IL2CPP_EXTERN_C String_t* _stringLiteralABE9CD4CAAC47E6616956B57C733BDA8F7C48677;
IL2CPP_EXTERN_C String_t* _stringLiteralADF2661D275D11E81149306F5D08B9D5E84C7307;
IL2CPP_EXTERN_C String_t* _stringLiteralAE073D669EEEC0D4EBD6B8BA56FC2EB068FC8CC5;
IL2CPP_EXTERN_C String_t* _stringLiteralAEB44B3AF9B25AF5609DB2851CC6DBBFBD804E36;
IL2CPP_EXTERN_C String_t* _stringLiteralAF8BC0EC6A1874C3FFEB5694BC36974F673E80C2;
IL2CPP_EXTERN_C String_t* _stringLiteralB10277638EC53EB7D22B3B79D907BFD78922FC76;
IL2CPP_EXTERN_C String_t* _stringLiteralB132716D89EF0EE2CEF39498DA0895B2449AB344;
IL2CPP_EXTERN_C String_t* _stringLiteralB17AD117813334488CF4057081F2A11E84A72B95;
IL2CPP_EXTERN_C String_t* _stringLiteralB209143BAEF9A40C448BD5BA6F688685DAED7B15;
IL2CPP_EXTERN_C String_t* _stringLiteralB3540DC5F4E7161FB5ACC0E521B524D09EFBB39D;
IL2CPP_EXTERN_C String_t* _stringLiteralB3BEEC8B86540DA8BBF1877930CF5FDDA2E8F963;
IL2CPP_EXTERN_C String_t* _stringLiteralB596320AE4D74537B29168E9BDF95B753E2B5301;
IL2CPP_EXTERN_C String_t* _stringLiteralB5A115BB1CE4803865CD66B55FC8156AC0679670;
IL2CPP_EXTERN_C String_t* _stringLiteralB5D9D630D3F3D38953C83CBDD8DFE9F787ED2539;
IL2CPP_EXTERN_C String_t* _stringLiteralB62F98976C11D79674B019EA78A7CE4D6D78B479;
IL2CPP_EXTERN_C String_t* _stringLiteralB7A8E72255793F3D559B82C227A7B54D89AB39C9;
IL2CPP_EXTERN_C String_t* _stringLiteralB7DE1ACA72F835F3396AD81830488D0727FF94A3;
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
IL2CPP_EXTERN_C String_t* _stringLiteralBB91B6F05EA4E92AA0B68BF2F9397F4B779488A3;
IL2CPP_EXTERN_C String_t* _stringLiteralBBEC53F210EEFBB98EF2CAE4411F7B8752E7FACC;
IL2CPP_EXTERN_C String_t* _stringLiteralBC0BAEBA6F8E2018F25D23B1BD64D592B35B4069;
IL2CPP_EXTERN_C String_t* _stringLiteralBE9CA5A938D04349B649020FA52D9EC24C97099D;
IL2CPP_EXTERN_C String_t* _stringLiteralBED8BA080781189AD5278F5FD0FDA9B4C6C100ED;
IL2CPP_EXTERN_C String_t* _stringLiteralBF2221AB16FB9687DDA842ED1CFE5633B877E6F0;
IL2CPP_EXTERN_C String_t* _stringLiteralBF53E31F872A964047C43886D54F04889191A28A;
IL2CPP_EXTERN_C String_t* _stringLiteralBF86C9E9E7FE0EF09A2EAE8066CDC31F859254CC;
IL2CPP_EXTERN_C String_t* _stringLiteralBFF9CD3D2942E27EF1ABAF545D8B0E0B86603731;
IL2CPP_EXTERN_C String_t* _stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4;
IL2CPP_EXTERN_C String_t* _stringLiteralC05DD95A56B355AAD74E9CE147B236E03FF8905E;
IL2CPP_EXTERN_C String_t* _stringLiteralC44C2F590228488B806D8213DBB719C19809D150;
IL2CPP_EXTERN_C String_t* _stringLiteralC4FCD561B8C5DA432455F7E3ADBAC02546B61A38;
IL2CPP_EXTERN_C String_t* _stringLiteralC6BDE6281A6DDE809EBE72900994CBF891E78F10;
IL2CPP_EXTERN_C String_t* _stringLiteralC7B7AF7E20FE503A74EE797E05BBC5470FF66124;
IL2CPP_EXTERN_C String_t* _stringLiteralC86FCE1203EE3CAA6611690288314B0C99D501B9;
IL2CPP_EXTERN_C String_t* _stringLiteralCB538922875B62DA11C3262AEB634351322DC418;
IL2CPP_EXTERN_C String_t* _stringLiteralCB67ED3E50C5654AA77B99B4554E3AFAEEE311B7;
IL2CPP_EXTERN_C String_t* _stringLiteralCB8A88570CBF36DC78148EBD758CD3F8AEA5314C;
IL2CPP_EXTERN_C String_t* _stringLiteralCBD3E9D3F4E9D9956F458F1B0BAECA6A02588D00;
IL2CPP_EXTERN_C String_t* _stringLiteralCC6FC188750EC9797EBFA0909E85EDB331E88EE7;
IL2CPP_EXTERN_C String_t* _stringLiteralCC86C197E0FEFBC58402C83C0D74784A5C39CD74;
IL2CPP_EXTERN_C String_t* _stringLiteralCE0F5818CCD7D6797586BC1FA0752C6E48E439B5;
IL2CPP_EXTERN_C String_t* _stringLiteralCEB6FFBDFB48FCAF07F10A052F01C570D7215633;
IL2CPP_EXTERN_C String_t* _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A;
IL2CPP_EXTERN_C String_t* _stringLiteralD0B508D8B38DC8221EF81CCB26367A9A83211BC9;
IL2CPP_EXTERN_C String_t* _stringLiteralD13061BFE442388F8BF8B53BE38AA80ED585E8B5;
IL2CPP_EXTERN_C String_t* _stringLiteralD1544DEAD240C6096C5860AB974ECDD19CA2E201;
IL2CPP_EXTERN_C String_t* _stringLiteralD1CEBB9049B4505763F2EE8BDFDC123DF8F1DF08;
IL2CPP_EXTERN_C String_t* _stringLiteralD22FB8178574254C2A9BCF06DF9F5835B11AC8D3;
IL2CPP_EXTERN_C String_t* _stringLiteralD39E208E1EDCA34C72FCD76197E0EA7CD671D2F9;
IL2CPP_EXTERN_C String_t* _stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1;
IL2CPP_EXTERN_C String_t* _stringLiteralD40F98F04519E8B839CB845B706DE89A31373E6D;
IL2CPP_EXTERN_C String_t* _stringLiteralD513926BC65531B10DF4D71DB0A350013DA25BDB;
IL2CPP_EXTERN_C String_t* _stringLiteralD6A89F463B2D89A9279731202698C58374A26D23;
IL2CPP_EXTERN_C String_t* _stringLiteralD7CC7E478F16C73256D19059051F024252A028A8;
IL2CPP_EXTERN_C String_t* _stringLiteralD884F35E59A1E1A56C51BCEE6A01D6B3DDBA9CAD;
IL2CPP_EXTERN_C String_t* _stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0;
IL2CPP_EXTERN_C String_t* _stringLiteralD99B048E5E2132B0C4C39A7C2BF2D6C91DE6C0F3;
IL2CPP_EXTERN_C String_t* _stringLiteralDA1679121AAD822018502ECC16BA2D35114EF119;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDAAC8074AC3DFB6E43BF44F036CA368289069A09;
IL2CPP_EXTERN_C String_t* _stringLiteralDAFE8F412E5C9A2B1CB554D39DEA0D6CD543C0E7;
IL2CPP_EXTERN_C String_t* _stringLiteralDB5B55A9B215F744DB82517864984D073F2E8F8C;
IL2CPP_EXTERN_C String_t* _stringLiteralDBAE7A16641727E84CF74581E4727DAC4B78897A;
IL2CPP_EXTERN_C String_t* _stringLiteralDC86C4C7779BA26AAC7ABC828D643C5F57E2DED0;
IL2CPP_EXTERN_C String_t* _stringLiteralDD7461C99FE0AF610527A1F4273DBC4696AB5F17;
IL2CPP_EXTERN_C String_t* _stringLiteralDDA0FEDECC3765A8D5F295C4B302D615D29F3483;
IL2CPP_EXTERN_C String_t* _stringLiteralDE0A8A4B33338D09BDE82F544CF26FB4B56B9F98;
IL2CPP_EXTERN_C String_t* _stringLiteralDE28F98354F48E7C0878BBA93033C6BDC68B27E2;
IL2CPP_EXTERN_C String_t* _stringLiteralDEF14698D1C0D2A1D64529BEAB4A86A685650609;
IL2CPP_EXTERN_C String_t* _stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B;
IL2CPP_EXTERN_C String_t* _stringLiteralE13258345AC5ED7FA38D641004219DBE3A3FB56C;
IL2CPP_EXTERN_C String_t* _stringLiteralE14F1B14BE116CFA355535FCD1863D382601BDE0;
IL2CPP_EXTERN_C String_t* _stringLiteralE3234876E15804436882B2C3806341594D339F4F;
IL2CPP_EXTERN_C String_t* _stringLiteralE35D6A21B557408AC6AD57457A73222633C0C7B7;
IL2CPP_EXTERN_C String_t* _stringLiteralE3AECE0361D3EBD6F53120D1A60E09EDF69E0C2D;
IL2CPP_EXTERN_C String_t* _stringLiteralE42E8BB820D4F7550A0F04619F4E15FDC56943B9;
IL2CPP_EXTERN_C String_t* _stringLiteralE451A00E15058124C55AB7BE480EFAEDB11B2B9C;
IL2CPP_EXTERN_C String_t* _stringLiteralE56748CDD247AC396C7847513B2D2D24821D48DA;
IL2CPP_EXTERN_C String_t* _stringLiteralE657126EBF76C06687ED6EAD2C714E37315C927F;
IL2CPP_EXTERN_C String_t* _stringLiteralE737077F82A6A1C9D7B4A05167CF04250F549BC4;
IL2CPP_EXTERN_C String_t* _stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB;
IL2CPP_EXTERN_C String_t* _stringLiteralE7E8A279C6B408C8115ECB8D5D20FFD0A71025C3;
IL2CPP_EXTERN_C String_t* _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB;
IL2CPP_EXTERN_C String_t* _stringLiteralE8F8956EC2DD3FD7AA7C20BA5CD0ED3EE5739BED;
IL2CPP_EXTERN_C String_t* _stringLiteralEA8E729CC5987110F10D39A9A665EE53E922C344;
IL2CPP_EXTERN_C String_t* _stringLiteralEB8804A531370DBDDE190078E101C64B7CB3BC7F;
IL2CPP_EXTERN_C String_t* _stringLiteralEBE46DF54B01B606DB21F86C7C40D5E6231B0C66;
IL2CPP_EXTERN_C String_t* _stringLiteralED4642B9462EF943DD5E810FB4B4B61803DB85A8;
IL2CPP_EXTERN_C String_t* _stringLiteralED5AFE132A97BA24E8306366DD70B9A8D78BFA48;
IL2CPP_EXTERN_C String_t* _stringLiteralEDD0B5EECD58DD1FC50E50A6FDCB780B42076BDB;
IL2CPP_EXTERN_C String_t* _stringLiteralEE17B9A3774B84CC5EF248A0C6133425A90545CB;
IL2CPP_EXTERN_C String_t* _stringLiteralEE8F28023EC9CDDD92DEF34472DB9261ECBF59AD;
IL2CPP_EXTERN_C String_t* _stringLiteralEF3BAED9292CF98983DB6849376890F2994BFFD8;
IL2CPP_EXTERN_C String_t* _stringLiteralEF4B6098669A6B78CCE056EF8FB491E9E9332C1B;
IL2CPP_EXTERN_C String_t* _stringLiteralEFA8BED8E96B526AE693D294B1F2669AE609AB32;
IL2CPP_EXTERN_C String_t* _stringLiteralF23271A51B0CAD6D72E7ADE5AD13B8927F6F770C;
IL2CPP_EXTERN_C String_t* _stringLiteralF2564EEB56D40593CB508FC692C0A8909F572CA6;
IL2CPP_EXTERN_C String_t* _stringLiteralF25C8369F2CB39B76E314E1965B832A8A976C9B9;
IL2CPP_EXTERN_C String_t* _stringLiteralF263CCD44CB2B9304F9F18DC1F6912F785B7E34C;
IL2CPP_EXTERN_C String_t* _stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF4509A041EA8302549B9E119D97A7AB78C63BC8C;
IL2CPP_EXTERN_C String_t* _stringLiteralF53390C74D60B2DC19B777A65C813262B3859D6C;
IL2CPP_EXTERN_C String_t* _stringLiteralF5A563DA7422888CC118DE9B7F5BE8C5EF1BFB50;
IL2CPP_EXTERN_C String_t* _stringLiteralF7C03E97995F6950303A46C204A216735E6B4582;
IL2CPP_EXTERN_C String_t* _stringLiteralF8480841753DCB62E4006AD3F6DF510C0D0EFC29;
IL2CPP_EXTERN_C String_t* _stringLiteralF8D8397ADB5D5049DE1EA528891B9EFEA8264944;
IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024;
IL2CPP_EXTERN_C String_t* _stringLiteralF9B788DCC0D65BA8F1E9F11D9E451C2E37BACE77;
IL2CPP_EXTERN_C String_t* _stringLiteralFA1D72164D93990AA279210A8D4332B3E0A6C411;
IL2CPP_EXTERN_C String_t* _stringLiteralFCA440D9A4F7E2D10772A726D6FB427BAE128D34;
IL2CPP_EXTERN_C String_t* _stringLiteralFDE0C40B48F344565494A602561F2C8DD806E00F;
IL2CPP_EXTERN_C String_t* _stringLiteralFE0B3298C2A71B0C504421DE1D5782EBAD7F5CD8;
IL2CPP_EXTERN_C String_t* _stringLiteralFEAE53A3E63FA5CCDEAD64D8BA28ACCD560BA205;
IL2CPP_EXTERN_C String_t* _stringLiteralFEE32A45D8A04516F9D627B9E45532DCB07259F7;
IL2CPP_EXTERN_C String_t* _stringLiteralFFD23053085F6DD265328D7B65A7C42E13AC3DA7;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m15851D727EEB432B18111F32D3F43D298CFE44DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m6D12AF4D9B1DF19B3C0A2C1D93068550DB2314F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5A1460881FED052D973F8F540B9406B0605D9333_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5D77EB3F62FED2B879551BFADA7FE409B56F99F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_m4DA3282515038AFB506664081150706476F29005_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mB13DFB3E7499031847CF544977D4EFB1AC0157AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DomainNameHelper_IdnEquivalent_mD8EBF17C7A0A50FFAA03EAA9CA737899C9A0881E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DomainNameHelper_UnicodeEquivalent_m62B17C161795C1C6AC76D49A3FB50B16693CC9DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_m6D30896A5A1B93A06BCDC13116BD1EAFE0AEE336_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_CopyTo_m122BEB82372AC34C575FCB8C71188A2A49CCC482_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Add_m96D9B7FCEC33784ED88BAC3C291146E64A921D8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Clear_m67DAFAB787617D8A9B720AAF612436587E2C3172_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Remove_m008F559DB848823129DDCB7B832C731F0D4AFF83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_Insert_m515A74F3095C972A28657B89FE6B65A3EC5324FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_RemoveAt_m981151BB2C68E7F2DC0BF4DD61D4AD4AB5B5AE3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_set_Item_mB5DBB39B4E6F360B8105064E6659EFC49E8B1C85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_IList_Add_m08D9178D05AE66397CBCF2184448AE712741E4D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_IList_Clear_mCFF90C2303D7106D722E8B574ED3261C80F250CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_IList_Insert_m3CDAAB43F292FD0ABD2D9595F02233FB55577623_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_IList_RemoveAt_m32BF4A16212F4849AD46F680E5D0D14268CB7C58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_IList_Remove_m32982B763D442200E71B8A5E6C85C9501A555F23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_System_Collections_IList_set_Item_mDDFE5D350953DB61758FE64D556670EA5A402C48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection__ctor_mB178F93E8DB52AA6412FF28E5FE50943E2BABFFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Group__ctor_mEB6936CDFD191A4C92766CE3F3301161D7505C5E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0C7F89C2A5D3E5A10B256D77E8A5EDEE64A95D33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m13AFB49515C3E17A2B0542E030545352978F3C61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_mB134DEE35BA3C32509C72B86A139B44803AB74E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_CopyTo_m9295FB8910941CACEDB7EC990AE5B4E996AABB60_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_mA83B0825AAD38553B619F13DB175B5C22EDDF07E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m6080E9C1661919ED369F1ED2BC417C7B714D8CB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m577E237486A82F977367542706CB743B4ED0C7C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m781B70C57EDA95F60B8836BC2ACC28D081D51FAE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m40508D1183F77F83F5FA073B2ED5DEB05070E6D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mDFDA85F2FA83EA93846A5A4EF398CC153D64A575_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Add_m154176CEDE7E9E069DDA9DDE0A81EF6B37BD0165_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Clear_m9BB9C93A481537B734AF3EB6715BFC00B94547BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Remove_mEBB078E88FD8336140F2B4B0359CA4DF5D61D903_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_Insert_m8F23643755F8DBBDB9F62C93983A65467B3C9ACE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_RemoveAt_m35604FC5400522F86CAE7CAA4D13935A81BE8752_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_set_Item_mEAF77169289374758416D2911AF012C7DCE9378A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_IList_Add_mC16406A9EE094327248A90E65F4E36CD53DFEFEE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_IList_Clear_mCFB22D61C256132062B66F3D91721F71B32C02E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_IList_Insert_m3D517C0C55A72CDD8D2AD7D59D7D1423C807231C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_IList_RemoveAt_m5177AB0687CF2F1EB97C591DB987491DDDD7B2C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_IList_Remove_mAD17E6DAC2834015AB24C4D66EABB9353C24089A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_System_Collections_IList_set_Item_mF5EE10AA5EF639CB97DCA5D5F82A41DA2C196E32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection__ctor_m816A933886BCC9F63F61F20057F42B2322B5E512_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MatchCollection_get_Item_m22EC679C4BB2C29C63AF2195C98C886EB73303D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Match__ctor_mBABEF8F11A3BC6DB713519819D135CC87AC1B4CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegexCharClass_SetFromProperty_m75FD04D8F9EA5FD996E4C8B4A2DF45BEEE6BABC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegexInterpreter_Go_m1CF26F8D95231F3B2235EA98AFB286C3F1629BED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Escape_m2E4E071ABAFAE1BF55932725F28F4194CD56D7DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_InitDefaultMatchTimeout_mC441DFFACCC15C2710E85B95820DAB49AE9C47A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Matches_mD0E47C23B403AC380AF7EAECA48E63C61DC39CDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Replace_m424B7F3F25D939A4DC43BFE31F4E8C5ACC1B69E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Replace_m600AC2C22F66C22022AD4A34B16F357A82D568FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_System_Runtime_Serialization_ISerializable_GetObjectData_mD788EE38607BF5D618FDA920048707DF4CA4B99C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex_ValidateMatchTimeout_mA50CD0CB49AB9B42B548900335CA6EABC30BD18F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriHelper_EscapeString_m616525587FFF13665945B9173F3C2EC41C9EDDA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriHelper_UnescapeString_mD137E2B3F648504A96E7F244796CDCEBE6BB9BE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriParser_Resolve_m7CC03524A2848FBD24BAB57CC62A19C751937182_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriTypeConverter_CanConvertFrom_mD5D419C5B80FC3A5D175655A6278E54FC80928E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriTypeConverter_ConvertFrom_m079712540B92F2B6AF1780A5793F36EA77CA32ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UriTypeConverter_ConvertTo_mA975FACF630714EBEA487EFC770EA0742756A764_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WeakReference_1__ctor_mC8D9C90EA52FB1398802269D249E2CEC97A6269F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_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 IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374;;
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com;
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com;;
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke;
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke;;
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
struct StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1;
struct SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Buffers.ArrayPool`1<System.Int32>
struct ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01 : public RuntimeObject
{
};
struct ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01_StaticFields
{
// System.Buffers.ArrayPool`1<T> System.Buffers.ArrayPool`1::<Shared>k__BackingField
ArrayPool_1_tEE934B4A44CDA39BED8CBAF50F7C0E2E9E1ACC01* ___U3CSharedU3Ek__BackingField_0;
};
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.String,System.UriParser>
struct Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_tEF2CC19489C607DB0BA4F40AFEA8E0F280AFA48C* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_tFA85999EAC3DD3A927FBCF9A8766DE517F2CA09E* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t8492068D7F6BDD986232A9D83B972252F6592A74* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t24A044BE0C07CDF2E13EA861A1514664AE9A4CB6* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_t755C575B4744E7CC5BB256A2ADCA7B9477FED7CC* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t7527D79A0F67C44B360B51B5FEB47DACBC975266* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.EmptyArray`1<System.Int32>
struct EmptyArray_1_tE700FA647008891EF64C31436B092B253493667F : public RuntimeObject
{
};
struct EmptyArray_1_tE700FA647008891EF64C31436B092B253493667F_StaticFields
{
// T[] System.EmptyArray`1::Value
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Value_0;
};
// System.Collections.Generic.EqualityComparer`1<System.Text.RegularExpressions.Group>
struct EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572 : public RuntimeObject
{
};
struct EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572_StaticFields
{
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572* ___defaultComparer_0;
};
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2 : public RuntimeObject
{
};
struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields
{
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* ___defaultComparer_0;
};
// System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>
struct List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC>
struct List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RegexFCU5BU5D_t3E922C821A602D0D6B0DEBB7FDC7B93A3E976EEF* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RegexFCU5BU5D_t3E922C821A602D0D6B0DEBB7FDC7B93A3E976EEF* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>
struct List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RegexNodeU5BU5D_t9B65B8909ADD9DB9D8B82F44D786BD8CA7640851* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RegexNodeU5BU5D_t9B65B8909ADD9DB9D8B82F44D786BD8CA7640851* ___s_emptyArray_5;
};
// 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;
};
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___s_emptyArray_5;
};
struct Il2CppArrayBounds;
// System.Runtime.Versioning.BinaryCompatibility
struct BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843 : public RuntimeObject
{
};
struct BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843_StaticFields
{
// System.Boolean System.Runtime.Versioning.BinaryCompatibility::TargetsAtLeast_Desktop_V4_5
bool ___TargetsAtLeast_Desktop_V4_5_0;
// System.Boolean System.Runtime.Versioning.BinaryCompatibility::TargetsAtLeast_Desktop_V4_5_1
bool ___TargetsAtLeast_Desktop_V4_5_1_1;
};
// System.Text.RegularExpressions.Capture
struct Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A : public RuntimeObject
{
// System.Int32 System.Text.RegularExpressions.Capture::<Index>k__BackingField
int32_t ___U3CIndexU3Ek__BackingField_0;
// System.Int32 System.Text.RegularExpressions.Capture::<Length>k__BackingField
int32_t ___U3CLengthU3Ek__BackingField_1;
// System.String System.Text.RegularExpressions.Capture::<Text>k__BackingField
String_t* ___U3CTextU3Ek__BackingField_2;
};
// System.Text.RegularExpressions.CaptureCollection
struct CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93 : public RuntimeObject
{
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.CaptureCollection::_group
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ____group_0;
// System.Int32 System.Text.RegularExpressions.CaptureCollection::_capcount
int32_t ____capcount_1;
// System.Text.RegularExpressions.Capture[] System.Text.RegularExpressions.CaptureCollection::_captures
CaptureU5BU5D_tC1C7568482C97A1529C2B061F0502A45FFFEEBD3* ____captures_2;
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject* ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.Text.DecoderFallback
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90 : public RuntimeObject
{
};
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90_StaticFields
{
// System.Text.DecoderFallback System.Text.DecoderFallback::s_replacementFallback
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___s_replacementFallback_0;
// System.Text.DecoderFallback System.Text.DecoderFallback::s_exceptionFallback
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___s_exceptionFallback_1;
};
// System.DomainNameHelper
struct DomainNameHelper_t91103C5A621B8E26FF60AA0B2F1EC59D70949C79 : public RuntimeObject
{
};
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293 : public RuntimeObject
{
};
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293_StaticFields
{
// System.Text.EncoderFallback System.Text.EncoderFallback::s_replacementFallback
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___s_replacementFallback_0;
// System.Text.EncoderFallback System.Text.EncoderFallback::s_exceptionFallback
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___s_exceptionFallback_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;
};
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.RegularExpressions.GroupCollection
struct GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E : public RuntimeObject
{
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.GroupCollection::_match
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ____match_0;
// System.Collections.Hashtable System.Text.RegularExpressions.GroupCollection::_captureMap
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____captureMap_1;
// System.Text.RegularExpressions.Group[] System.Text.RegularExpressions.GroupCollection::_groups
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* ____groups_2;
};
// System.IOAsyncResult
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374 : public RuntimeObject
{
// System.AsyncCallback System.IOAsyncResult::async_callback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___async_callback_0;
// System.Object System.IOAsyncResult::async_state
RuntimeObject* ___async_state_1;
// System.Threading.ManualResetEvent System.IOAsyncResult::wait_handle
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___wait_handle_2;
// System.Boolean System.IOAsyncResult::completed_synchronously
bool ___completed_synchronously_3;
// System.Boolean System.IOAsyncResult::completed
bool ___completed_4;
};
// Native definition for P/Invoke marshalling of System.IOAsyncResult
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke
{
Il2CppMethodPointer ___async_callback_0;
Il2CppIUnknown* ___async_state_1;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___wait_handle_2;
int32_t ___completed_synchronously_3;
int32_t ___completed_4;
};
// Native definition for COM marshalling of System.IOAsyncResult
struct IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com
{
Il2CppMethodPointer ___async_callback_0;
Il2CppIUnknown* ___async_state_1;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___wait_handle_2;
int32_t ___completed_synchronously_3;
int32_t ___completed_4;
};
// System.IOSelector
struct IOSelector_t5159CD0631838EB4B6C75EDC596305B683BD881A : public RuntimeObject
{
};
// System.Globalization.IdnMapping
struct IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81 : public RuntimeObject
{
// System.Boolean System.Globalization.IdnMapping::allow_unassigned
bool ___allow_unassigned_0;
// System.Boolean System.Globalization.IdnMapping::use_std3
bool ___use_std3_1;
// System.Globalization.Punycode System.Globalization.IdnMapping::puny
Punycode_t44EE1AAE844D2794F7B24173D738BC7120E37BF5* ___puny_2;
};
// System.LocalAppContextSwitches
struct LocalAppContextSwitches_tE040790D0ACC1DCF3C95D173ACBDADABDCDD37F6 : public RuntimeObject
{
};
struct LocalAppContextSwitches_tE040790D0ACC1DCF3C95D173ACBDADABDCDD37F6_StaticFields
{
// System.Boolean System.LocalAppContextSwitches::MemberDescriptorEqualsReturnsFalseIfEquivalent
bool ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0;
};
// 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.Text.RegularExpressions.MatchCollection
struct MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC : public RuntimeObject
{
// System.Text.RegularExpressions.Regex System.Text.RegularExpressions.MatchCollection::_regex
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ____regex_0;
// System.Collections.Generic.List`1<System.Text.RegularExpressions.Match> System.Text.RegularExpressions.MatchCollection::_matches
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* ____matches_1;
// System.Boolean System.Text.RegularExpressions.MatchCollection::_done
bool ____done_2;
// System.String System.Text.RegularExpressions.MatchCollection::_input
String_t* ____input_3;
// System.Int32 System.Text.RegularExpressions.MatchCollection::_beginning
int32_t ____beginning_4;
// System.Int32 System.Text.RegularExpressions.MatchCollection::_length
int32_t ____length_5;
// System.Int32 System.Text.RegularExpressions.MatchCollection::_startat
int32_t ____startat_6;
// System.Int32 System.Text.RegularExpressions.MatchCollection::_prevlen
int32_t ____prevlen_7;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// System.Text.RegularExpressions.RegexBoyerMoore
struct RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A : public RuntimeObject
{
// System.Int32[] System.Text.RegularExpressions.RegexBoyerMoore::Positive
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Positive_0;
// System.Int32[] System.Text.RegularExpressions.RegexBoyerMoore::NegativeASCII
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___NegativeASCII_1;
// System.Int32[][] System.Text.RegularExpressions.RegexBoyerMoore::NegativeUnicode
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ___NegativeUnicode_2;
// System.String System.Text.RegularExpressions.RegexBoyerMoore::Pattern
String_t* ___Pattern_3;
// System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::LowASCII
int32_t ___LowASCII_4;
// System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::HighASCII
int32_t ___HighASCII_5;
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::RightToLeft
bool ___RightToLeft_6;
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::CaseInsensitive
bool ___CaseInsensitive_7;
// System.Globalization.CultureInfo System.Text.RegularExpressions.RegexBoyerMoore::_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_8;
};
// System.Text.RegularExpressions.RegexCharClass
struct RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C : public RuntimeObject
{
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange> System.Text.RegularExpressions.RegexCharClass::_rangelist
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ____rangelist_14;
// System.Text.StringBuilder System.Text.RegularExpressions.RegexCharClass::_categories
StringBuilder_t* ____categories_15;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::_canonical
bool ____canonical_16;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::_negate
bool ____negate_17;
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::_subtractor
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ____subtractor_18;
};
struct RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields
{
// System.String System.Text.RegularExpressions.RegexCharClass::s_internalRegexIgnoreCase
String_t* ___s_internalRegexIgnoreCase_0;
// System.String System.Text.RegularExpressions.RegexCharClass::s_space
String_t* ___s_space_1;
// System.String System.Text.RegularExpressions.RegexCharClass::s_notSpace
String_t* ___s_notSpace_2;
// System.String System.Text.RegularExpressions.RegexCharClass::s_word
String_t* ___s_word_3;
// System.String System.Text.RegularExpressions.RegexCharClass::s_notWord
String_t* ___s_notWord_4;
// System.String System.Text.RegularExpressions.RegexCharClass::SpaceClass
String_t* ___SpaceClass_5;
// System.String System.Text.RegularExpressions.RegexCharClass::NotSpaceClass
String_t* ___NotSpaceClass_6;
// System.String System.Text.RegularExpressions.RegexCharClass::WordClass
String_t* ___WordClass_7;
// System.String System.Text.RegularExpressions.RegexCharClass::NotWordClass
String_t* ___NotWordClass_8;
// System.String System.Text.RegularExpressions.RegexCharClass::DigitClass
String_t* ___DigitClass_9;
// System.String System.Text.RegularExpressions.RegexCharClass::NotDigitClass
String_t* ___NotDigitClass_10;
// System.Collections.Generic.Dictionary`2<System.String,System.String> System.Text.RegularExpressions.RegexCharClass::s_definedCategories
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ___s_definedCategories_11;
// System.String[][] System.Text.RegularExpressions.RegexCharClass::s_propTable
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* ___s_propTable_12;
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[] System.Text.RegularExpressions.RegexCharClass::s_lcTable
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* ___s_lcTable_13;
};
// System.Text.RegularExpressions.RegexFC
struct RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4 : public RuntimeObject
{
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexFC::_cc
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ____cc_0;
// System.Boolean System.Text.RegularExpressions.RegexFC::_nullable
bool ____nullable_1;
// System.Boolean System.Text.RegularExpressions.RegexFC::<CaseInsensitive>k__BackingField
bool ___U3CCaseInsensitiveU3Ek__BackingField_2;
};
// System.Text.RegularExpressions.RegexReplacement
struct RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E : public RuntimeObject
{
// System.Collections.Generic.List`1<System.String> System.Text.RegularExpressions.RegexReplacement::_strings
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____strings_5;
// System.Collections.Generic.List`1<System.Int32> System.Text.RegularExpressions.RegexReplacement::_rules
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ____rules_6;
// System.String System.Text.RegularExpressions.RegexReplacement::<Pattern>k__BackingField
String_t* ___U3CPatternU3Ek__BackingField_7;
};
// System.Text.RegularExpressions.RegexRunner
struct RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B : public RuntimeObject
{
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextbeg
int32_t ___runtextbeg_0;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextend
int32_t ___runtextend_1;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextstart
int32_t ___runtextstart_2;
// System.String System.Text.RegularExpressions.RegexRunner::runtext
String_t* ___runtext_3;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextpos
int32_t ___runtextpos_4;
// System.Int32[] System.Text.RegularExpressions.RegexRunner::runtrack
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___runtrack_5;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtrackpos
int32_t ___runtrackpos_6;
// System.Int32[] System.Text.RegularExpressions.RegexRunner::runstack
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___runstack_7;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runstackpos
int32_t ___runstackpos_8;
// System.Int32[] System.Text.RegularExpressions.RegexRunner::runcrawl
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___runcrawl_9;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runcrawlpos
int32_t ___runcrawlpos_10;
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtrackcount
int32_t ___runtrackcount_11;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::runmatch
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___runmatch_12;
// System.Text.RegularExpressions.Regex System.Text.RegularExpressions.RegexRunner::runregex
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___runregex_13;
// System.Int32 System.Text.RegularExpressions.RegexRunner::_timeout
int32_t ____timeout_14;
// System.Boolean System.Text.RegularExpressions.RegexRunner::_ignoreTimeout
bool ____ignoreTimeout_15;
// System.Int32 System.Text.RegularExpressions.RegexRunner::_timeoutOccursAt
int32_t ____timeoutOccursAt_16;
// System.Int32 System.Text.RegularExpressions.RegexRunner::_timeoutChecksToSkip
int32_t ____timeoutChecksToSkip_18;
};
// System.Text.RegularExpressions.RegexRunnerFactory
struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7 : public RuntimeObject
{
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
{
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex_6;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_7;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_8;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_9;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_10;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t* ___objectType_11;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_12;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_13;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_14;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// System.UncNameHelper
struct UncNameHelper_t51469D12F40880B59D944F0191025DEBA80BEB0C : public RuntimeObject
{
};
// System.UriHelper
struct UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635 : public RuntimeObject
{
};
struct UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_StaticFields
{
// System.Char[] System.UriHelper::HexUpperChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexUpperChars_0;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// System.Text.RegularExpressions.GroupCollection/Enumerator
struct Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772 : public RuntimeObject
{
// System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.GroupCollection/Enumerator::_collection
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* ____collection_0;
// System.Int32 System.Text.RegularExpressions.GroupCollection/Enumerator::_index
int32_t ____index_1;
};
// System.Text.RegularExpressions.MatchCollection/Enumerator
struct Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D : public RuntimeObject
{
// System.Text.RegularExpressions.MatchCollection System.Text.RegularExpressions.MatchCollection/Enumerator::_collection
MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* ____collection_0;
// System.Int32 System.Text.RegularExpressions.MatchCollection/Enumerator::_index
int32_t ____index_1;
};
// System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer
struct SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0 : public RuntimeObject
{
};
struct SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_StaticFields
{
// System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::Instance
SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0* ___Instance_0;
};
// System.Uri/MoreInfo
struct MoreInfo_tB58ABF2D5D75E92D35BBC37192CD0D5C02C3F0FA : public RuntimeObject
{
// System.String System.Uri/MoreInfo::Path
String_t* ___Path_0;
// System.String System.Uri/MoreInfo::Query
String_t* ___Query_1;
// System.String System.Uri/MoreInfo::Fragment
String_t* ___Fragment_2;
// System.String System.Uri/MoreInfo::AbsoluteUri
String_t* ___AbsoluteUri_3;
// System.Int32 System.Uri/MoreInfo::Hash
int32_t ___Hash_4;
// System.String System.Uri/MoreInfo::RemoteUrl
String_t* ___RemoteUrl_5;
};
// 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;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.Text.DecoderReplacementFallback
struct DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0 : public DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90
{
// System.String System.Text.DecoderReplacementFallback::_strDefault
String_t* ____strDefault_2;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Text.EncoderReplacementFallback
struct EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16 : public EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293
{
// System.String System.Text.EncoderReplacementFallback::_strDefault
String_t* ____strDefault_2;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// System.Text.RegularExpressions.Group
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881 : public Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A
{
// System.Int32[] System.Text.RegularExpressions.Group::_caps
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____caps_4;
// System.Int32 System.Text.RegularExpressions.Group::_capcount
int32_t ____capcount_5;
// System.Text.RegularExpressions.CaptureCollection System.Text.RegularExpressions.Group::_capcoll
CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93* ____capcoll_6;
// System.String System.Text.RegularExpressions.Group::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_7;
};
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881_StaticFields
{
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.Group::s_emptyGroup
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___s_emptyGroup_3;
};
// 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.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// System.Text.RegularExpressions.RegexInterpreter
struct RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7 : public RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B
{
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexInterpreter::_code
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code_19;
// System.Globalization.CultureInfo System.Text.RegularExpressions.RegexInterpreter::_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_20;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::_operator
int32_t ____operator_21;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::_codepos
int32_t ____codepos_22;
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::_rightToLeft
bool ____rightToLeft_23;
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::_caseInsensitive
bool ____caseInsensitive_24;
};
// System.Text.RegularExpressions.RegexPrefix
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044
{
// System.Boolean System.Text.RegularExpressions.RegexPrefix::<CaseInsensitive>k__BackingField
bool ___U3CCaseInsensitiveU3Ek__BackingField_0;
// System.String System.Text.RegularExpressions.RegexPrefix::<Prefix>k__BackingField
String_t* ___U3CPrefixU3Ek__BackingField_2;
};
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_StaticFields
{
// System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::<Empty>k__BackingField
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 ___U3CEmptyU3Ek__BackingField_1;
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexPrefix
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_pinvoke
{
int32_t ___U3CCaseInsensitiveU3Ek__BackingField_0;
char* ___U3CPrefixU3Ek__BackingField_2;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexPrefix
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_com
{
int32_t ___U3CCaseInsensitiveU3Ek__BackingField_0;
Il2CppChar* ___U3CPrefixU3Ek__BackingField_2;
};
// System.TimeSpan
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
{
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
};
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
{
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1
{
// System.Char System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::ChMin
Il2CppChar ___ChMin_0;
// System.Char System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::ChMax
Il2CppChar ___ChMax_1;
// System.Int32 System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::LcOp
int32_t ___LcOp_2;
// System.Int32 System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::Data
int32_t ___Data_3;
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_pinvoke
{
uint8_t ___ChMin_0;
uint8_t ___ChMax_1;
int32_t ___LcOp_2;
int32_t ___Data_3;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_com
{
uint8_t ___ChMin_0;
uint8_t ___ChMax_1;
int32_t ___LcOp_2;
int32_t ___Data_3;
};
// System.Text.RegularExpressions.RegexCharClass/SingleRange
struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC
{
// System.Char System.Text.RegularExpressions.RegexCharClass/SingleRange::First
Il2CppChar ___First_0;
// System.Char System.Text.RegularExpressions.RegexCharClass/SingleRange::Last
Il2CppChar ___Last_1;
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/SingleRange
struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke
{
uint8_t ___First_0;
uint8_t ___Last_1;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/SingleRange
struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com
{
uint8_t ___First_0;
uint8_t ___Last_1;
};
// System.Uri/Offset
#pragma pack(push, tp, 1)
struct Offset_tE612E8724BE1BAC109CDFA8ED5567B5979139493
{
// System.UInt16 System.Uri/Offset::Scheme
uint16_t ___Scheme_0;
// System.UInt16 System.Uri/Offset::User
uint16_t ___User_1;
// System.UInt16 System.Uri/Offset::Host
uint16_t ___Host_2;
// System.UInt16 System.Uri/Offset::PortValue
uint16_t ___PortValue_3;
// System.UInt16 System.Uri/Offset::Path
uint16_t ___Path_4;
// System.UInt16 System.Uri/Offset::Query
uint16_t ___Query_5;
// System.UInt16 System.Uri/Offset::Fragment
uint16_t ___Fragment_6;
// System.UInt16 System.Uri/Offset::End
uint16_t ___End_7;
};
#pragma pack(pop, tp)
// 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.Nullable`1<System.Text.RegularExpressions.RegexPrefix>
struct Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 ___value_1;
};
// System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IntPtr System.AppDomain::_mono_app_domain
intptr_t ____mono_app_domain_1;
// System.Object System.AppDomain::_evidence
RuntimeObject* ____evidence_6;
// System.Object System.AppDomain::_granted
RuntimeObject* ____granted_7;
// System.Int32 System.AppDomain::_principalPolicy
int32_t ____principalPolicy_8;
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* ___AssemblyLoad_10;
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___AssemblyResolve_11;
// System.EventHandler System.AppDomain::DomainUnload
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___DomainUnload_12;
// System.EventHandler System.AppDomain::ProcessExit
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___ProcessExit_13;
// System.ResolveEventHandler System.AppDomain::ResourceResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ResourceResolve_14;
// System.ResolveEventHandler System.AppDomain::TypeResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___TypeResolve_15;
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C* ___UnhandledException_16;
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException
EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7* ___FirstChanceException_17;
// System.Object System.AppDomain::_domain_manager
RuntimeObject* ____domain_manager_18;
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ReflectionOnlyAssemblyResolve_19;
// System.Object System.AppDomain::_activation
RuntimeObject* ____activation_20;
// System.Object System.AppDomain::_applicationIdentity
RuntimeObject* ____applicationIdentity_21;
// System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_22;
};
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_StaticFields
{
// System.String System.AppDomain::_process_guid
String_t* ____process_guid_2;
};
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_ThreadStaticFields
{
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___type_resolve_in_progress_3;
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_refonly_5;
// System.Object System.AppDomain::_principal
RuntimeObject* ____principal_9;
};
// Native definition for P/Invoke marshalling of System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
intptr_t ____mono_app_domain_1;
Il2CppIUnknown* ____evidence_6;
Il2CppIUnknown* ____granted_7;
int32_t ____principalPolicy_8;
Il2CppMethodPointer ___AssemblyLoad_10;
Il2CppMethodPointer ___AssemblyResolve_11;
Il2CppMethodPointer ___DomainUnload_12;
Il2CppMethodPointer ___ProcessExit_13;
Il2CppMethodPointer ___ResourceResolve_14;
Il2CppMethodPointer ___TypeResolve_15;
Il2CppMethodPointer ___UnhandledException_16;
Il2CppMethodPointer ___FirstChanceException_17;
Il2CppIUnknown* ____domain_manager_18;
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_19;
Il2CppIUnknown* ____activation_20;
Il2CppIUnknown* ____applicationIdentity_21;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_22;
};
// Native definition for COM marshalling of System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
intptr_t ____mono_app_domain_1;
Il2CppIUnknown* ____evidence_6;
Il2CppIUnknown* ____granted_7;
int32_t ____principalPolicy_8;
Il2CppMethodPointer ___AssemblyLoad_10;
Il2CppMethodPointer ___AssemblyResolve_11;
Il2CppMethodPointer ___DomainUnload_12;
Il2CppMethodPointer ___ProcessExit_13;
Il2CppMethodPointer ___ResourceResolve_14;
Il2CppMethodPointer ___TypeResolve_15;
Il2CppMethodPointer ___UnhandledException_16;
Il2CppMethodPointer ___FirstChanceException_17;
Il2CppIUnknown* ____domain_manager_18;
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_19;
Il2CppIUnknown* ____activation_20;
Il2CppIUnknown* ____applicationIdentity_21;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_22;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.ExceptionArgument
struct ExceptionArgument_t60E7F8D9DE5362CBE9365893983C30302D83B778
{
// System.Int32 System.ExceptionArgument::value__
int32_t ___value___2;
};
// System.Text.RegularExpressions.ExclusiveReference
struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837 : public RuntimeObject
{
// System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.ExclusiveReference::_ref
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* ____ref_0;
// System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.ExclusiveReference::_obj
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* ____obj_1;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.RegularExpressions.ExclusiveReference::_locked
int32_t ____locked_2;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
{
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
intptr_t ___handle_0;
};
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
{
// System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets
bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10;
// System.Int32 System.Collections.Hashtable::_count
int32_t ____count_11;
// System.Int32 System.Collections.Hashtable::_occupancy
int32_t ____occupancy_12;
// System.Int32 System.Collections.Hashtable::_loadsize
int32_t ____loadsize_13;
// System.Single System.Collections.Hashtable::_loadFactor
float ____loadFactor_14;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version
int32_t ____version_15;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress
bool ____isWriterInProgress_16;
// System.Collections.ICollection System.Collections.Hashtable::_keys
RuntimeObject* ____keys_17;
// System.Collections.ICollection System.Collections.Hashtable::_values
RuntimeObject* ____values_18;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_19;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject* ____syncRoot_20;
};
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
{
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Hashtable::s_serializationInfoTable
ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21;
};
// System.IOOperation
struct IOOperation_tD09DB9BCCD9A9FE48E5606CE703934EEB95A67B2
{
// System.Int32 System.IOOperation::value__
int32_t ___value___2;
};
// System.Text.RegularExpressions.Match
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F : public Group_t26371E9136D6F43782C487B63C67C5FC4F472881
{
// System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.Match::_groupcoll
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* ____groupcoll_8;
// System.Text.RegularExpressions.Regex System.Text.RegularExpressions.Match::_regex
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ____regex_9;
// System.Int32 System.Text.RegularExpressions.Match::_textbeg
int32_t ____textbeg_10;
// System.Int32 System.Text.RegularExpressions.Match::_textpos
int32_t ____textpos_11;
// System.Int32 System.Text.RegularExpressions.Match::_textend
int32_t ____textend_12;
// System.Int32 System.Text.RegularExpressions.Match::_textstart
int32_t ____textstart_13;
// System.Int32[][] System.Text.RegularExpressions.Match::_matches
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ____matches_14;
// System.Int32[] System.Text.RegularExpressions.Match::_matchcount
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____matchcount_15;
// System.Boolean System.Text.RegularExpressions.Match::_balancing
bool ____balancing_16;
};
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields
{
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::<Empty>k__BackingField
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___U3CEmptyU3Ek__BackingField_17;
};
// System.ParsingError
struct ParsingError_t4DA7B5ED39FC185DA72BCB7E278C204762B57DE6
{
// System.Int32 System.ParsingError::value__
int32_t ___value___2;
};
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
{
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
{
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
{
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
};
// System.StringComparison
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
{
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
};
// 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;
};
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4_StaticFields
{
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___s_Invariant_6;
};
// System.Threading.Timeout
struct Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41 : public RuntimeObject
{
};
struct Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41_StaticFields
{
// System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteTimeSpan_0;
};
// System.ComponentModel.TypeConverter
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C : public RuntimeObject
{
};
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C_StaticFields
{
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
bool ___useCompatibleTypeConversion_1;
};
// System.UnescapeMode
struct UnescapeMode_t221E12F33D6CD593C6E09DE2B66DA342EC6C4F2F
{
// System.Int32 System.UnescapeMode::value__
int32_t ___value___2;
};
// System.Globalization.UnicodeCategory
struct UnicodeCategory_tC5D046642FA3366AD265B73F3F43140D8CD9CB2A
{
// System.Int32 System.Globalization.UnicodeCategory::value__
int32_t ___value___2;
};
// System.UriComponents
struct UriComponents_t92D6A11B001BCF2B97D0613FD0541637524A7A82
{
// System.Int32 System.UriComponents::value__
int32_t ___value___2;
};
// System.UriFormat
struct UriFormat_tCFECBDF50112D695E5A4C3F05AE60480FB77A2C0
{
// System.Int32 System.UriFormat::value__
int32_t ___value___2;
};
// System.UriHostNameType
struct UriHostNameType_t9BDBA62A4F46D00945BB64D0E6E8FF14EB5B7409
{
// System.Int32 System.UriHostNameType::value__
int32_t ___value___2;
};
// System.UriIdnScope
struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
{
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
};
// System.UriKind
struct UriKind_t6597BD6BF48C695D63244DF8541B5EA48FF7F9E7
{
// System.Int32 System.UriKind::value__
int32_t ___value___2;
};
// System.UriSyntaxFlags
struct UriSyntaxFlags_t6CAAB5E302AE2F84F42D8C4AF2FA8656EC5F97C8
{
// System.Int32 System.UriSyntaxFlags::value__
int32_t ___value___2;
};
// System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
};
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_StaticFields
{
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_11;
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// System.Uri/Check
struct Check_t9871FC2033ABF87812304D4DB64241F2D0981230
{
// System.Int32 System.Uri/Check::value__
int32_t ___value___2;
};
// System.Uri/Flags
struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
{
// System.UInt64 System.Uri/Flags::value__
uint64_t ___value___2;
};
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09 : public RuntimeObject
{
// System.String System.Uri/UriInfo::Host
String_t* ___Host_0;
// System.String System.Uri/UriInfo::ScopeId
String_t* ___ScopeId_1;
// System.String System.Uri/UriInfo::String
String_t* ___String_2;
// System.Uri/Offset System.Uri/UriInfo::Offset
Offset_tE612E8724BE1BAC109CDFA8ED5567B5979139493 ___Offset_3;
// System.String System.Uri/UriInfo::DnsSafeHost
String_t* ___DnsSafeHost_4;
// System.Uri/MoreInfo System.Uri/UriInfo::MoreInfo
MoreInfo_tB58ABF2D5D75E92D35BBC37192CD0D5C02C3F0FA* ___MoreInfo_5;
};
// System.UriParser/UriQuirksVersion
struct UriQuirksVersion_tC8E3F60985AD631D7F8894B1136B33BD9D03C72D
{
// System.Int32 System.UriParser/UriQuirksVersion::value__
int32_t ___value___2;
};
// 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.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.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257 : public RuntimeObject
{
// System.Runtime.InteropServices.GCHandle System.WeakReference`1::handle
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___handle_0;
// System.Boolean System.WeakReference`1::trackResurrection
bool ___trackResurrection_1;
};
// System.Threading.EventWaitHandle
struct EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E : public WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8
{
};
// System.IOSelectorJob
struct IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31 : public RuntimeObject
{
// System.IOOperation System.IOSelectorJob::operation
int32_t ___operation_0;
// System.IOAsyncCallback System.IOSelectorJob::callback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___callback_1;
// System.IOAsyncResult System.IOSelectorJob::state
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___state_2;
};
// Native definition for P/Invoke marshalling of System.IOSelectorJob
struct IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_pinvoke
{
int32_t ___operation_0;
Il2CppMethodPointer ___callback_1;
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke* ___state_2;
};
// Native definition for COM marshalling of System.IOSelectorJob
struct IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_com
{
int32_t ___operation_0;
Il2CppMethodPointer ___callback_1;
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com* ___state_2;
};
// System.Text.RegularExpressions.MatchSparse
struct MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906 : public Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F
{
// System.Collections.Hashtable System.Text.RegularExpressions.MatchSparse::_caps
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____caps_18;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// System.Text.RegularExpressions.Regex
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
{
// System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout_10;
// System.String System.Text.RegularExpressions.Regex::pattern
String_t* ___pattern_12;
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
int32_t ___roptions_13;
// System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory_14;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps_15;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames_16;
// System.String[] System.Text.RegularExpressions.Regex::capslist
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist_17;
// System.Int32 System.Text.RegularExpressions.Regex::capsize
int32_t ___capsize_18;
// System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::_runnerref
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref_19;
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement> System.Text.RegularExpressions.Regex::_replref
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref_20;
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::_code
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code_21;
// System.Boolean System.Text.RegularExpressions.Regex::_refsInitialized
bool ____refsInitialized_22;
};
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
{
// System.Int32 System.Text.RegularExpressions.Regex::s_cacheSize
int32_t ___s_cacheSize_1;
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry> System.Text.RegularExpressions.Regex::s_cache
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache_2;
// System.Int32 System.Text.RegularExpressions.Regex::s_cacheCount
int32_t ___s_cacheCount_3;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheFirst
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst_4;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheLast
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast_5;
// System.TimeSpan System.Text.RegularExpressions.Regex::s_maximumMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout_6;
// System.TimeSpan System.Text.RegularExpressions.Regex::s_defaultMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout_8;
// System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout_9;
};
// System.Text.RegularExpressions.RegexCode
struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7 : public RuntimeObject
{
// System.Int32[] System.Text.RegularExpressions.RegexCode::Codes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Codes_48;
// System.String[] System.Text.RegularExpressions.RegexCode::Strings
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___Strings_49;
// System.Int32 System.Text.RegularExpressions.RegexCode::TrackCount
int32_t ___TrackCount_50;
// System.Collections.Hashtable System.Text.RegularExpressions.RegexCode::Caps
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___Caps_51;
// System.Int32 System.Text.RegularExpressions.RegexCode::CapSize
int32_t ___CapSize_52;
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix> System.Text.RegularExpressions.RegexCode::FCPrefix
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 ___FCPrefix_53;
// System.Text.RegularExpressions.RegexBoyerMoore System.Text.RegularExpressions.RegexCode::BMPrefix
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* ___BMPrefix_54;
// System.Int32 System.Text.RegularExpressions.RegexCode::Anchors
int32_t ___Anchors_55;
// System.Boolean System.Text.RegularExpressions.RegexCode::RightToLeft
bool ___RightToLeft_56;
};
// System.Text.RegularExpressions.RegexNode
struct RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360 : public RuntimeObject
{
// System.Int32 System.Text.RegularExpressions.RegexNode::NType
int32_t ___NType_0;
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode> System.Text.RegularExpressions.RegexNode::Children
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* ___Children_1;
// System.String System.Text.RegularExpressions.RegexNode::Str
String_t* ___Str_2;
// System.Char System.Text.RegularExpressions.RegexNode::Ch
Il2CppChar ___Ch_3;
// System.Int32 System.Text.RegularExpressions.RegexNode::M
int32_t ___M_4;
// System.Int32 System.Text.RegularExpressions.RegexNode::N
int32_t ___N_5;
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexNode::Options
int32_t ___Options_6;
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Next
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___Next_7;
};
// System.Text.RegularExpressions.RegexTree
struct RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2 : public RuntimeObject
{
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexTree::Root
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___Root_0;
// System.Collections.Hashtable System.Text.RegularExpressions.RegexTree::Caps
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___Caps_1;
// System.Int32[] System.Text.RegularExpressions.RegexTree::CapNumList
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___CapNumList_2;
// System.Int32 System.Text.RegularExpressions.RegexTree::CapTop
int32_t ___CapTop_3;
// System.Collections.Hashtable System.Text.RegularExpressions.RegexTree::CapNames
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___CapNames_4;
// System.String[] System.Text.RegularExpressions.RegexTree::CapsList
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___CapsList_5;
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexTree::Options
int32_t ___Options_6;
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
{
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject* ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
{
// System.String System.Uri::m_String
String_t* ___m_String_13;
// System.String System.Uri::m_originalUnicodeString
String_t* ___m_originalUnicodeString_14;
// System.UriParser System.Uri::m_Syntax
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_15;
// System.String System.Uri::m_DnsSafeHost
String_t* ___m_DnsSafeHost_16;
// System.Uri/Flags System.Uri::m_Flags
uint64_t ___m_Flags_17;
// System.Uri/UriInfo System.Uri::m_Info
UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18;
// System.Boolean System.Uri::m_iriParsing
bool ___m_iriParsing_19;
};
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
{
// System.String System.Uri::UriSchemeFile
String_t* ___UriSchemeFile_0;
// System.String System.Uri::UriSchemeFtp
String_t* ___UriSchemeFtp_1;
// System.String System.Uri::UriSchemeGopher
String_t* ___UriSchemeGopher_2;
// System.String System.Uri::UriSchemeHttp
String_t* ___UriSchemeHttp_3;
// System.String System.Uri::UriSchemeHttps
String_t* ___UriSchemeHttps_4;
// System.String System.Uri::UriSchemeWs
String_t* ___UriSchemeWs_5;
// System.String System.Uri::UriSchemeWss
String_t* ___UriSchemeWss_6;
// System.String System.Uri::UriSchemeMailto
String_t* ___UriSchemeMailto_7;
// System.String System.Uri::UriSchemeNews
String_t* ___UriSchemeNews_8;
// System.String System.Uri::UriSchemeNntp
String_t* ___UriSchemeNntp_9;
// System.String System.Uri::UriSchemeNetTcp
String_t* ___UriSchemeNetTcp_10;
// System.String System.Uri::UriSchemeNetPipe
String_t* ___UriSchemeNetPipe_11;
// System.String System.Uri::SchemeDelimiter
String_t* ___SchemeDelimiter_12;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
bool ___s_ConfigInitialized_20;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
bool ___s_ConfigInitializing_21;
// System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
int32_t ___s_IdnScope_22;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
bool ___s_IriParsing_23;
// System.Boolean System.Uri::useDotNetRelativeOrAbsolute
bool ___useDotNetRelativeOrAbsolute_24;
// System.Boolean System.Uri::IsWindowsFileSystem
bool ___IsWindowsFileSystem_25;
// System.Object System.Uri::s_initLock
RuntimeObject* ___s_initLock_26;
// System.Char[] System.Uri::HexLowerChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27;
// System.Char[] System.Uri::_WSchars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28;
};
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81 : public RuntimeObject
{
// System.UriSyntaxFlags System.UriParser::m_Flags
int32_t ___m_Flags_2;
// System.UriSyntaxFlags modreq(System.Runtime.CompilerServices.IsVolatile) System.UriParser::m_UpdatableFlags
int32_t ___m_UpdatableFlags_3;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.UriParser::m_UpdatableFlagsUsed
bool ___m_UpdatableFlagsUsed_4;
// System.Int32 System.UriParser::m_Port
int32_t ___m_Port_5;
// System.String System.UriParser::m_Scheme
String_t* ___m_Scheme_6;
};
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields
{
// System.Collections.Generic.Dictionary`2<System.String,System.UriParser> System.UriParser::m_Table
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* ___m_Table_0;
// System.Collections.Generic.Dictionary`2<System.String,System.UriParser> System.UriParser::m_TempTable
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* ___m_TempTable_1;
// System.UriParser System.UriParser::HttpUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___HttpUri_7;
// System.UriParser System.UriParser::HttpsUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___HttpsUri_8;
// System.UriParser System.UriParser::WsUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___WsUri_9;
// System.UriParser System.UriParser::WssUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___WssUri_10;
// System.UriParser System.UriParser::FtpUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___FtpUri_11;
// System.UriParser System.UriParser::FileUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___FileUri_12;
// System.UriParser System.UriParser::GopherUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___GopherUri_13;
// System.UriParser System.UriParser::NntpUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___NntpUri_14;
// System.UriParser System.UriParser::NewsUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___NewsUri_15;
// System.UriParser System.UriParser::MailToUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___MailToUri_16;
// System.UriParser System.UriParser::UuidUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___UuidUri_17;
// System.UriParser System.UriParser::TelnetUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___TelnetUri_18;
// System.UriParser System.UriParser::LdapUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___LdapUri_19;
// System.UriParser System.UriParser::NetTcpUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___NetTcpUri_20;
// System.UriParser System.UriParser::NetPipeUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___NetPipeUri_21;
// System.UriParser System.UriParser::VsMacrosUri
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___VsMacrosUri_22;
// System.UriParser/UriQuirksVersion System.UriParser::s_QuirksVersion
int32_t ___s_QuirksVersion_23;
// System.UriSyntaxFlags System.UriParser::HttpSyntaxFlags
int32_t ___HttpSyntaxFlags_24;
// System.UriSyntaxFlags System.UriParser::FileSyntaxFlags
int32_t ___FileSyntaxFlags_25;
};
// System.UriTypeConverter
struct UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3 : public TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C
{
};
// System.Text.RegularExpressions.Regex/CachedCodeEntryKey
struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31
{
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_options
int32_t ____options_0;
// System.String System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_cultureKey
String_t* ____cultureKey_1;
// System.String System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_pattern
String_t* ____pattern_2;
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.Regex/CachedCodeEntryKey
struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_pinvoke
{
int32_t ____options_0;
char* ____cultureKey_1;
char* ____pattern_2;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.Regex/CachedCodeEntryKey
struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_com
{
int32_t ____options_0;
Il2CppChar* ____cultureKey_1;
Il2CppChar* ____pattern_2;
};
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
struct ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961
{
// 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.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
{
};
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.IOAsyncCallback
struct IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388 : public MulticastDelegate_t
{
};
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ManualResetEvent
struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158 : public EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E
{
};
// System.Text.RegularExpressions.MatchEvaluator
struct MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113 : public MulticastDelegate_t
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ThreadAbortException
struct ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Text.RegularExpressions.Regex/CachedCodeEntry
struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39 : public RuntimeObject
{
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex/CachedCodeEntry::Next
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___Next_0;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex/CachedCodeEntry::Previous
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___Previous_1;
// System.Text.RegularExpressions.Regex/CachedCodeEntryKey System.Text.RegularExpressions.Regex/CachedCodeEntry::Key
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___Key_2;
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex/CachedCodeEntry::Code
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ___Code_3;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex/CachedCodeEntry::Caps
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___Caps_4;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex/CachedCodeEntry::Capnames
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___Capnames_5;
// System.String[] System.Text.RegularExpressions.Regex/CachedCodeEntry::Capslist
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___Capslist_6;
// System.Int32 System.Text.RegularExpressions.Regex/CachedCodeEntry::Capsize
int32_t ___Capsize_7;
// System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex/CachedCodeEntry::Runnerref
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ___Runnerref_8;
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement> System.Text.RegularExpressions.Regex/CachedCodeEntry::ReplRef
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ___ReplRef_9;
};
// System.UriParser/BuiltInUriParser
struct BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C : public UriParser_t920B0868286118827C08B08A15A9456AF6C19D81
{
};
// 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.PlatformNotSupportedException
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A : public NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A
{
};
// System.Text.RegularExpressions.RegexFCD
struct RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD
{
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC> System.Text.RegularExpressions.RegexFCD::_fcStack
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* ____fcStack_0;
// System.Collections.Generic.ValueListBuilder`1<System.Int32> System.Text.RegularExpressions.RegexFCD::_intStack
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____intStack_1;
// System.Boolean System.Text.RegularExpressions.RegexFCD::_skipAllChildren
bool ____skipAllChildren_2;
// System.Boolean System.Text.RegularExpressions.RegexFCD::_skipchild
bool ____skipchild_3;
// System.Boolean System.Text.RegularExpressions.RegexFCD::_failed
bool ____failed_4;
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexFCD
struct RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_pinvoke
{
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* ____fcStack_0;
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____intStack_1;
int32_t ____skipAllChildren_2;
int32_t ____skipchild_3;
int32_t ____failed_4;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexFCD
struct RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_com
{
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* ____fcStack_0;
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____intStack_1;
int32_t ____skipAllChildren_2;
int32_t ____skipchild_3;
int32_t ____failed_4;
};
// System.UriFormatException
struct UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF : public FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
{
ALIGN_FIELD (8) Il2CppChar m_Items[1];
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.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.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Text.RegularExpressions.Group[]
struct GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9 : public RuntimeArray
{
ALIGN_FIELD (8) Group_t26371E9136D6F43782C487B63C67C5FC4F472881* m_Items[1];
inline Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Group_t26371E9136D6F43782C487B63C67C5FC4F472881** 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, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Group_t26371E9136D6F43782C487B63C67C5FC4F472881** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[][]
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E : public RuntimeArray
{
ALIGN_FIELD (8) Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* m_Items[1];
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** 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, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Text.RegularExpressions.Match[]
struct MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488 : public RuntimeArray
{
ALIGN_FIELD (8) Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* m_Items[1];
inline Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F** 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, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[]
struct LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1 : public RuntimeArray
{
ALIGN_FIELD (8) LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 m_Items[1];
inline LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1* 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, LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 value)
{
m_Items[index] = value;
}
};
// System.String[][]
struct StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF : public RuntimeArray
{
ALIGN_FIELD (8) StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* m_Items[1];
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** 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, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Text.RegularExpressions.RegexCharClass/SingleRange[]
struct SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6 : public RuntimeArray
{
ALIGN_FIELD (8) SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC m_Items[1];
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* 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, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC value)
{
m_Items[index] = value;
}
};
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_pinvoke(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_pinvoke_back(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke& marshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled);
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_pinvoke_cleanup(IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_com(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com& marshaled);
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_com_back(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com& marshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled);
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_com_cleanup(IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com& marshaled);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mF225F49F6BE54C39563CECD7C693F0AE4F0530E8_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m4DDA9442C238A443489115E22B026AD366851549_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Int32>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_gshared_inline (const RuntimeMethod* method) ;
// System.Boolean System.Collections.HashtableExtensions::TryGetValue<System.Int32>(System.Collections.Hashtable,System.Object,T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_gshared (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___table0, RuntimeObject* ___key1, int32_t* ___value2, const RuntimeMethod* method) ;
// System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::get_Default()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_get_Default_m3F1C09001C590CF5063218C73C6AC73C19B10489_gshared_inline (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.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>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m1210D480F3EF1C250A53086148C1204B7A99B931_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::IndexOf(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m378F61BA812B79DEE58D86FE8AA9F20E3FC7D85F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mF175AF090385B15584E0E8CFC61400B38BC707D6_gshared (Dictionary_2_tA06D47A9E83F6FE69E39F1FF32E19C633FF91318* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Object>::Remove(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m3CC589B84EA444155C4BFDB77E52E1F97E5D5D88_gshared (Dictionary_2_tA06D47A9E83F6FE69E39F1FF32E19C633FF91318* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m63C07905E27C05BB33617E4BAFD09CD2048B1D9D_gshared (Dictionary_2_tA06D47A9E83F6FE69E39F1FF32E19C633FF91318* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m423F15A532C6A9B72D948F03DCF1E8FE95266FDE_gshared (Dictionary_2_tA06D47A9E83F6FE69E39F1FF32E19C633FF91318* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m80A438E817EFD7A63806E2AA6A36765099E76981_gshared (Dictionary_2_tA06D47A9E83F6FE69E39F1FF32E19C633FF91318* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Void System.WeakReference`1<System.Object>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference_1__ctor_m932665C8861A22B177DC1ACF1EDAA87E1624B5AC_gshared (WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE* __this, RuntimeObject* ___target0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Sort(System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::RemoveRange(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, 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>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::.ctor(System.Span`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_gshared (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___initialSpan0, 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* ___pointer0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738_gshared (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 ___value0, 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_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, int32_t ___item0, 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_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.ValueListBuilder`1<System.Int32>::Pop()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Dispose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_gshared_inline (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_gshared_inline (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, 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* ___ptr0, int32_t ___length1, 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_mFF16FBF4112C75DCE17FBE1C12799469549384C9_gshared (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.FormatException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mF29D430E15E766845220AB94DEE48CFC341A2DFE (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, const RuntimeMethod* method) ;
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.FormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mC5676E4279E9B264450F42CAE47EE7A3F2031B9B (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ;
// System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m78EEA18B8EA90C29C7F1082CBA19F0DCFE90E9D4 (Il2CppChar ___c0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, const RuntimeMethod* method) ;
// System.String SR::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.UriFormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3 (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* __this, String_t* ___textString0, const RuntimeMethod* method) ;
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460 (const RuntimeMethod* method) ;
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.Char[] System.UriHelper::EnsureDestinationSize(System.Char*,System.Char[],System.Int32,System.Int16,System.Int16,System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887 (Il2CppChar* ___pStr0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest1, int32_t ___currentInputPos2, int16_t ___charsToAdd3, int16_t ___minReallocateChars4, int32_t* ___destPos5, int32_t ___prevInputPos6, const RuntimeMethod* method) ;
// System.Text.Encoding System.Text.Encoding::get_UTF8()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336 (const RuntimeMethod* method) ;
// System.Void System.UriHelper::EscapeAsciiChar(System.Char,System.Char[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452 (Il2CppChar ___ch0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___to1, int32_t* ___pos2, const RuntimeMethod* method) ;
// System.Char System.UriHelper::EscapedAscii(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar UriHelper_EscapedAscii_mC7BE08D5B7803E83C57B8269F298B6DFA9EC5120 (Il2CppChar ___digit0, Il2CppChar ___next1, const RuntimeMethod* method) ;
// System.Boolean System.UriHelper::IsUnreserved(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsUnreserved_m3171C456B602B4F7052B4E865F2DF04C71553797 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Boolean System.UriHelper::IsReservedUnreservedOrHash(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsReservedUnreservedOrHash_mEAD756DAD5DB17F71960CC501BBB7CF9AB5EF74F (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9 (RuntimeArray* ___src0, int32_t ___srcOffset1, RuntimeArray* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ;
// System.Char[] System.UriHelper::UnescapeString(System.Char*,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* UriHelper_UnescapeString_mD137E2B3F648504A96E7F244796CDCEBE6BB9BE1 (Il2CppChar* ___pStr0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest3, int32_t* ___destPosition4, Il2CppChar ___rsvd15, Il2CppChar ___rsvd26, Il2CppChar ___rsvd37, int32_t ___unescapeMode8, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___syntax9, bool ___isQuery10, const RuntimeMethod* method) ;
// System.Boolean System.Uri::IriParsingStatic(System.UriParser)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IriParsingStatic_m5FACD38C4EDB61BC6AC465759CDB56F24C34C3B8 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___syntax0, const RuntimeMethod* method) ;
// System.Boolean System.UriHelper::IsNotSafeForUnescape(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsNotSafeForUnescape_mD11825AB8FE6E410A5C0D6D7850C607DBF697D7E (Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m47EF9FBD5FE075A464AE2A242FB43BEBC7C4F775 (Il2CppChar ___unicode0, bool ___isQuery1, const RuntimeMethod* method) ;
// System.Void System.Text.EncoderReplacementFallback::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_mAE7F1C5BF4E5A1F6CF4F9E12A71A63DDD4077D18 (EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16* __this, String_t* ___replacement0, const RuntimeMethod* method) ;
// System.Void System.Text.Encoding::set_EncoderFallback(System.Text.EncoderFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_EncoderFallback_m479A67230C286D29DAC4A9A93074708666FD483D (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* __this, EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.DecoderReplacementFallback::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_mA73B628532B991FA39C2D7A1C5285CF93DC88F60 (DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0* __this, String_t* ___replacement0, const RuntimeMethod* method) ;
// System.Void System.Text.Encoding::set_DecoderFallback(System.Text.DecoderFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_DecoderFallback_mFBC533A11D06D09A563D86497A4CF43C71C62C78 (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* __this, DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___value0, const RuntimeMethod* method) ;
// System.Void System.UriHelper::MatchUTF8Sequence(System.Char*,System.Char[],System.Int32&,System.Char[],System.Int32,System.Byte[],System.Int32,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper_MatchUTF8Sequence_m0E963F060C446C4BBBBD60E4D54CAE9A36D5A3F7 (Il2CppChar* ___pDest0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest1, int32_t* ___destOffset2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___unescapedChars3, int32_t ___charCount4, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes5, int32_t ___byteCount6, bool ___isQuery7, bool ___iriParsing8, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsHighSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m8842F5E950FC9EAE3B20556630C2AA5CA9FEB6D4 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m76D54508F06B0BD021CF86889C71C44578B495FB (Il2CppChar ___highSurr0, Il2CppChar ___lowSurr1, bool* ___surrogatePair2, bool ___isQuery3, const RuntimeMethod* method) ;
// System.Boolean System.Uri::IsBidiControlCharacter(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsBidiControlCharacter_m17A486D6ED9263488C6F4B3F3EDF1BF95352765E (Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Boolean System.UriParser::get_ShouldUseLegacyV2Quirks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_get_ShouldUseLegacyV2Quirks_m2BDF10B430FDA291AA6962104CD838776F31D20E (const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Uri::IsAsciiLetterOrDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsAsciiLetterOrDigit_m44901130AFF9E14663C5F9E6437BE44484A82BB8 (Il2CppChar ___character0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ;
// System.UriFormatException System.Uri::ParseMinimal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* Uri_ParseMinimal_m24D824EC77216C64F4B8B9175915CD6C3C6DB7B5 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Uri::get_UserDrivenParsing()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_UserDrivenParsing_mF2426529046B3DF3292A7AA2F4885F8D6591BBBD (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __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.String SR::GetString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3 (String_t* ___name0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean System.Uri::get_IsAbsoluteUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Uri System.Uri::ResolveHelper(System.Uri,System.Uri,System.String&,System.Boolean&,System.UriFormatException&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* Uri_ResolveHelper_m8FD2A09E63507DB5178AE3C182C323E8EA4B8752 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___relativeUri1, String_t** ___newUriString2, bool* ___userEscaped3, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** ___e4, const RuntimeMethod* method) ;
// System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Inequality_mC32A3382EF16D80BF39005BDD2AB452203D76D6E (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri10, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri21, const RuntimeMethod* method) ;
// System.String System.Uri::get_OriginalString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Uri::IsBaseOfHelper(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsBaseOfHelper_m7FA3996CDF7C53EA4A7F8FC71617559AF90C7F73 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uriLink0, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, RuntimeObject* ___actualValue1, String_t* ___message2, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.String System.Uri::GetComponentsHelper(System.UriComponents,System.UriFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetComponentsHelper_m83D8E4A027E180AFB34BA5290A8FF381EBCBCB75 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, int32_t ___uriComponents0, int32_t ___uriFormat1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::.ctor(System.Int32)
inline void Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388 (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_mF225F49F6BE54C39563CECD7C693F0AE4F0530E8_gshared)(__this, ___capacity0, method);
}
// System.Void System.UriParser/BuiltInUriParser::.ctor(System.String,System.Int32,System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79 (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* __this, String_t* ___lwrCaseScheme0, int32_t ___defaultPort1, int32_t ___syntaxFlags2, const RuntimeMethod* method) ;
// System.String System.UriParser::get_SchemeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* __this, String_t* ___key0, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*, String_t*, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.UriParser::IsFullMatch(System.UriSyntaxFlags,System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, int32_t ___expected1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640 (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* __this, String_t* ___key0, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*, String_t*, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::get_Count()
inline int32_t Dictionary_2_get_Count_m4DA3282515038AFB506664081150706476F29005 (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*, const RuntimeMethod*))Dictionary_2_get_Count_m4DDA9442C238A443489115E22B026AD366851549_gshared)(__this, method);
}
// System.Boolean System.UriParser::InFact(System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_InFact_m3C07C3050DE1E69F6B0BC816EC34AF610373E532 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, const RuntimeMethod* method) ;
// System.Void System.UriParser::.ctor(System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriParser__ctor_m4FA54685DFA00FC6AEA73E94CD59C5FF2872E55A (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, const RuntimeMethod* method) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
// System.String System.String::ToLower(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E (String_t* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Boolean System.DomainNameHelper::IsASCIILetterOrDigit(System.Char,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsASCIILetterOrDigit_mFAF590F20333B1D787428537FCD1CFF3993FE1F6 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method) ;
// System.Boolean System.DomainNameHelper::IsValidDomainLabelCharacter(System.Char,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidDomainLabelCharacter_m957B15160BE378C49B6E25CC4F0D99BBA1FE06C6 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method) ;
// System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_mD8EBF17C7A0A50FFAA03EAA9CA737899C9A0881E (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, String_t** ___bidiStrippedHost4, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.DomainNameHelper::IsIdnAce(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_mC429C00971921E7C357FA9A57D14AAB9A0CF3566 (Il2CppChar* ___input0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Void System.Globalization.IdnMapping::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IdnMapping__ctor_m1128F0904A9B3F8CD81CF613CAF8AEC9455FC8AE (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* __this, const RuntimeMethod* 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* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.String System.Globalization.IdnMapping::GetUnicode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IdnMapping_GetUnicode_mCC150BC9761DF474E752484693DC567FA21406E7 (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* __this, String_t* ___ascii0, const RuntimeMethod* method) ;
// System.String System.String::ToLowerInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2 (String_t* __this, const RuntimeMethod* method) ;
// System.String System.Uri::StripBidiControlCharacter(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_StripBidiControlCharacter_m259E2D3AA84B455ADD63DFBC4EC802241E4317FA (Il2CppChar* ___strToClean0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) ;
// System.String System.Globalization.IdnMapping::GetAscii(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IdnMapping_GetAscii_mA4A89B67014507D490722D7C6BDFA5E19A3E4635 (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* __this, String_t* ___unicode0, const RuntimeMethod* method) ;
// System.String System.DomainNameHelper::UnicodeEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_m62B17C161795C1C6AC76D49A3FB50B16693CC9DB (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method) ;
// System.Boolean System.DomainNameHelper::IsIdnAce(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_m063EE4431000F1D566D2D62B3BBB947A00CDA8EF (String_t* ___input0, int32_t ___index1, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.String System.DomainNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_ParseCanonicalName_m12865C6C2427B6ED804747CB1117D0B80E332F4D (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsLetter(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_m8AA5C1E0E24784F5B681E5A7DB6A28D11DC7E678 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.EventWaitHandle::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Reset_m84719BED571BDAAEE27EE05F57295C7107A74DE6 (EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* __this, bool ___initialState0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.EventWaitHandle::Set()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D (EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E* __this, const RuntimeMethod* method) ;
// System.Void System.IOAsyncCallback::Invoke(System.IOAsyncResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_inline (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.TypeConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_mA5B1882A94D0491297B903563E8B03D75B2F67A2 (TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* __this, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Boolean System.UriTypeConverter::CanConvert(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriTypeConverter_CanConvert_m970377ED30FF1B6875CCDA64FDC87EFE7D381DE3 (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_mB5E9ECC1E9AAA230D967810285D49F3A0BCD99D6 (String_t* ___msg0, 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* ___message0, const RuntimeMethod* method) ;
// System.Void System.Uri::.ctor(System.String,System.UriKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method) ;
// System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeConverter_ConvertFrom_mDE2D27BF8934184429496B39ED63BD3702868774 (TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Capture::set_Text(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Capture::set_Index(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Capture::set_Length(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Capture::get_Text()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.Capture::get_Index()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.Capture::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Capture::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* 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_m5164781404FE3D882902D92409C003B29659A049_inline (String_t* ___text0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Capture::.ctor(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Capture__ctor_mDC1197B1E29487F3D086091CF3D5B1029D593402 (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, String_t* ___text0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Int32>()
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_inline (const RuntimeMethod* method)
{
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (const RuntimeMethod*))Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_gshared_inline)(method);
}
// System.Void System.Text.RegularExpressions.Group::.ctor(System.String,System.Int32[],System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C (Group_t26371E9136D6F43782C487B63C67C5FC4F472881* __this, String_t* ___text0, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___caps1, int32_t ___capcount2, String_t* ___name3, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroup(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_GetGroup_m8EDFDB8D85D8BEC6EB98B68CA69EE0022FC16B13 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___groupnum0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::.ctor(System.Text.RegularExpressions.GroupCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m17B823D35315CED0509F6B4C5F04C148B9388DDD (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* ___collection0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.HashtableExtensions::TryGetValue<System.Int32>(System.Collections.Hashtable,System.Object,T&)
inline bool HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___table0, RuntimeObject* ___key1, int32_t* ___value2, const RuntimeMethod* method)
{
return (( bool (*) (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*, RuntimeObject*, int32_t*, const RuntimeMethod*))HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_gshared)(___table0, ___key1, ___value2, method);
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroupImpl(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_GetGroupImpl_m27CE16949BE0A9CFC61CC6CBF3FB179F63654D92 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___groupnum0, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::GroupNameFromNumber(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_GroupNameFromNumber_mC99A37419C4C0C9C3869BCDF055EDC72782D53FF (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___groupnum0, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___value0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.GroupCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Text.RegularExpressions.Group>::get_Default()
inline EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572* EqualityComparer_1_get_Default_m6D30896A5A1B93A06BCDC13116BD1EAFE0AEE336_inline (const RuntimeMethod* method)
{
return (( EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572* (*) (const RuntimeMethod*))EqualityComparer_1_get_Default_m3F1C09001C590CF5063218C73C6AC73C19B10489_gshared_inline)(method);
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43 (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Run(System.Boolean,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, bool ___quick0, int32_t ___prevlen1, String_t* ___input2, int32_t ___beginning3, int32_t ___length4, int32_t ___startat5, const RuntimeMethod* method) ;
// System.ReadOnlySpan`1<System.Char> System.String::op_Implicit(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline (String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Match::.ctor(System.Text.RegularExpressions.Regex,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, int32_t ___capcount1, String_t* ___text2, int32_t ___begpos3, int32_t ___len4, int32_t ___startpos5, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::.ctor()
inline void List_1__ctor_m781B70C57EDA95F60B8836BC2ACC28D081D51FAE (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Text.RegularExpressions.MatchCollection::EnsureInitialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::get_Count()
inline int32_t List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_inline (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::GetMatch(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::.ctor(System.Text.RegularExpressions.MatchCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m7FB61A151678DD2B024D5064248818D83F77A6B1 (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* ___collection0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::get_Item(System.Int32)
inline Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* List_1_get_Item_mDFDA85F2FA83EA93846A5A4EF398CC153D64A575 (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Boolean System.Text.RegularExpressions.Group::get_Success()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F (Group_t26371E9136D6F43782C487B63C67C5FC4F472881* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::Add(T)
inline void List_1_Add_m0C7F89C2A5D3E5A10B256D77E8A5EDEE64A95D33_inline (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::CopyTo(T[],System.Int32)
inline void List_1_CopyTo_m9295FB8910941CACEDB7EC990AE5B4E996AABB60 (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488*, int32_t, const RuntimeMethod*))List_1_CopyTo_m1210D480F3EF1C250A53086148C1204B7A99B931_gshared)(__this, ___array0, ___arrayIndex1, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::IndexOf(T)
inline int32_t List_1_IndexOf_mA83B0825AAD38553B619F13DB175B5C22EDDF07E (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, const RuntimeMethod*))List_1_IndexOf_m378F61BA812B79DEE58D86FE8AA9F20E3FC7D85F_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1<System.Text.RegularExpressions.Match>::Contains(T)
inline bool List_1_Contains_mB134DEE35BA3C32509C72B86A139B44803AB74E6 (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___item0, method);
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7 (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, const RuntimeMethod* method) ;
// System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629 (int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::op_Equality(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CachedCodeEntryKey_op_Equality_m5C48CEBA5D7F893F4FE88D06917EB738615DDCC6 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___left0, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___right1, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::GetCachedCodeEntryInternal(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_GetCachedCodeEntryInternal_m9FE175C47BF909F7F223013004C0EA0DAD660C06 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, bool ___isToAdd1, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::LookupCachedAndPromote(System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_LookupCachedAndPromote_m41760A936BAED48327B5E239894DA154B7832DD3 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex/CachedCodeEntry::.ctor(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexCode,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.ExclusiveReference,System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedCodeEntry__ctor_m14145ADFF67BA7C888673D806C24E28C96B83B2A (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist2, RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ___code3, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps4, int32_t ___capsize5, ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ___runner6, WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ___replref7, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex::FillCacheDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_FillCacheDictionary_mC47F317967E556D1F03A344B78B215356D604755 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>::Add(TKey,TValue)
inline void Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81 (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7*, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*, const RuntimeMethod*))Dictionary_2_Add_mF175AF090385B15584E0E8CFC61400B38BC707D6_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>::Remove(TKey)
inline bool Dictionary_2_Remove_m6D12AF4D9B1DF19B3C0A2C1D93068550DB2314F1 (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7*, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31, const RuntimeMethod*))Dictionary_2_Remove_m3CC589B84EA444155C4BFDB77E52E1F97E5D5D88_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>::Clear()
inline void Dictionary_2_Clear_m15851D727EEB432B18111F32D3F43D298CFE44DD (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7*, const RuntimeMethod*))Dictionary_2_Clear_m63C07905E27C05BB33617E4BAFD09CD2048B1D9D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31 (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7*, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39**, const RuntimeMethod*))Dictionary_2_TryGetValue_m423F15A532C6A9B72D948F03DCF1E8FE95266FDE_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Text.RegularExpressions.Regex::TryGetCacheValueSmall(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_TryGetCacheValueSmall_mEA1FE67593D84A849F8DDFD9BB4144FF5BE18A64 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** ___entry1, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::TryGetCacheValue(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry&)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Regex_TryGetCacheValue_m8785E636E24F8F0C3E5A7CFE516978A434C99DEB_inline (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** ___entry1, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m3709329406E39A80F61F4DD2CC9AB672835A3E81 (String_t* ___input0, String_t* ___pattern1, int32_t ___options2, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout3, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___pattern0, int32_t ___options1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout2, bool ___addToCache3, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::UseOptionR()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, int32_t ___startat1, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_m793BC1BE5D514C9CE9B0D2A6B9A0536BAE7C6147 (String_t* ___input0, String_t* ___pattern1, int32_t ___options2, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout3, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, int32_t ___startat1, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.MatchCollection::.ctor(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, String_t* ___input1, int32_t ___beginning2, int32_t ___length3, int32_t ___startat4, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m09B7AAE77B831CF7E8B1F469D62EF719069370EB (String_t* ___input0, String_t* ___pattern1, String_t* ___replacement2, int32_t ___options3, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout4, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, String_t* ___replacement1, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, String_t* ___replacement1, int32_t ___count2, int32_t ___startat3, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexReplacement System.Text.RegularExpressions.RegexReplacement::GetOrCreate(System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>,System.String,System.Collections.Hashtable,System.Int32,System.Collections.Hashtable,System.Text.RegularExpressions.RegexOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* RegexReplacement_GetOrCreate_m3DABA1D0A9D785394FC1B3E7373EBFD0A2FEB3B5 (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ___replRef0, String_t* ___replacement1, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps2, int32_t ___capsize3, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames4, int32_t ___roptions5, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.RegexReplacement::Replace(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, String_t* ___input1, int32_t ___count2, int32_t ___startat3, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.Text.RegularExpressions.MatchEvaluator,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m600AC2C22F66C22022AD4A34B16F357A82D568FB (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___evaluator1, int32_t ___count2, int32_t ___startat3, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::Replace(System.Text.RegularExpressions.MatchEvaluator,System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22 (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___evaluator0, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex1, String_t* ___input2, int32_t ___count3, int32_t ___startat4, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1 (int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::get_RightToLeft()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703 (StringBuilder_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.MatchEvaluator::Invoke(System.Text.RegularExpressions.Match)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_inline (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, 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* ___value0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::NextMatch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, const RuntimeMethod* 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.Collections.Generic.List`1<System.String>::Add(T)
inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, 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>::get_Item(System.Int32)
inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F (StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>::.ctor(System.Int32)
inline void Dictionary_2__ctor_m5A1460881FED052D973F8F540B9406B0605D9333 (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m80A438E817EFD7A63806E2AA6A36765099E76981_gshared)(__this, ___capacity0, method);
}
// System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromMilliseconds_m95DA1C64A7D3111F8451D932CD0F94D608B1EC54 (double ___value0, const RuntimeMethod* method) ;
// System.TimeSpan System.Text.RegularExpressions.Regex::InitDefaultMatchTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Regex_InitDefaultMatchTimeout_mC441DFFACCC15C2710E85B95820DAB49AE9C47A7 (const RuntimeMethod* method) ;
// System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.Boolean System.TimeSpan::op_LessThanOrEqual(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThanOrEqual_m15A091041A6E53861348784744744319A33AA9EA (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.AppDomain System.AppDomain::get_CurrentDomain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* AppDomain_get_CurrentDomain_m5085B6AF21A19506C85E0650C46BE35A18011CFE (const RuntimeMethod* method) ;
// System.Object System.AppDomain::GetData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AppDomain_GetData_m10C16E04DB1CB63E8481AA27D57B58A5E2895C92 (AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex::ValidateMatchTimeout(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_ValidateMatchTimeout_mA50CD0CB49AB9B42B548900335CA6EABC30BD18F (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout0, const RuntimeMethod* method) ;
// System.String SR::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186 (String_t* ___resourceFormat0, RuntimeObject* ___p11, RuntimeObject* ___p22, const RuntimeMethod* method) ;
// System.Void System.InvalidCastException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.PlatformNotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1 (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* __this, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex/CachedCodeEntryKey::.ctor(System.Text.RegularExpressions.RegexOptions,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, int32_t ___options0, String_t* ___cultureKey1, String_t* ___pattern2, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::GetCachedCode(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6_inline (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, bool ___isToAdd1, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexTree System.Text.RegularExpressions.RegexParser::Parse(System.String,System.Text.RegularExpressions.RegexOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* RegexParser_Parse_m5AE448041BC21B17EF68A2039991EC85F91AA9BB (String_t* ___re0, int32_t ___op1, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::Write(System.Text.RegularExpressions.RegexTree)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* RegexWriter_Write_mCDBE8B9E7703439F2F27C082808594B1056BEB99 (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___tree0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex::InitializeReferences()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.RegexParser::Escape(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_Escape_m0D7796B4DAB7A6BE2AE5C7664216121DB7F7C75C (String_t* ___input0, const RuntimeMethod* method) ;
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.ExclusiveReference::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExclusiveReference__ctor_m41EB96FC1FA261CB792752B89F15E6513FEA1722 (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* __this, const RuntimeMethod* method) ;
// System.Void System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>::.ctor(T)
inline void WeakReference_1__ctor_mC8D9C90EA52FB1398802269D249E2CEC97A6269F (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* __this, RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* ___target0, const RuntimeMethod* method)
{
(( void (*) (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257*, RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E*, const RuntimeMethod*))WeakReference_1__ctor_m932665C8861A22B177DC1ACF1EDAA87E1624B5AC_gshared)(__this, ___target0, method);
}
// System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.ExclusiveReference::Get()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* ExclusiveReference_Get_mCC2B9161946C9532001438C65A38E8D8FD56FB3C (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* __this, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::UseOptionInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_UseOptionInvariant_mD51BCBA0BF4C1B5CEBE9423B4AAA93CD83569B60 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::.ctor(System.Text.RegularExpressions.RegexCode,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter__ctor_mB81896A8292574F7532CF707F74A1AC1DECEA9FF (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ___code0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.ExclusiveReference::Release(System.Text.RegularExpressions.RegexRunner)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018 (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* __this, RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* ___obj0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::Scan(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* RegexRunner_Scan_m903691F4DFB68C0267F240D61A6F166BB592CE53 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, String_t* ___text1, int32_t ___textbeg2, int32_t ___textend3, int32_t ___textstart4, int32_t ___prevlen5, bool ___quick6, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeout7, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::Equals(System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___other0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.Regex/CachedCodeEntryKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7 (RuntimeArray* ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray* ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) ;
// 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_mD47B989E9AABCC58368D9A65D53B7995240BB1FD (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___length4, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::MatchPattern(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexBoyerMoore_MatchPattern_m0E84EAABBFCDA85484466A41A7B90187D3489E8C (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___text0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::.ctor(System.Int32)
inline void List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_gshared)(__this, ___capacity0, method);
}
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::AddRange(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___first0, Il2CppChar ___last1, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexCharClass::RangeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexCharClass/SingleRange System.Text.RegularExpressions.RegexCharClass::GetRangeAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Add(T)
inline void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Text.RegularExpressions.RegexCharClass/SingleRange::.ctor(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* __this, Il2CppChar ___first0, Il2CppChar ___last1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Count()
inline int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, const RuntimeMethod*))List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Item(System.Int32)
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_gshared)(__this, ___index0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// TValue System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Item(TKey)
inline String_t* Dictionary_2_get_Item_mB13DFB3E7499031847CF544977D4EFB1AC0157AB (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( String_t* (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___key0, method);
}
// System.String System.Text.RegularExpressions.RegexCharClass::NegateCategory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_NegateCategory_m1C615694A5F8EECBBE4C09BA293454D856F52F50 (String_t* ___category0, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.RegexCharClass::SetFromProperty(System.String,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_SetFromProperty_m75FD04D8F9EA5FD996E4C8B4A2DF45BEEE6BABC5 (String_t* ___capname0, bool ___invert1, String_t* ___pattern2, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::AddSet(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___set0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::set_Item(System.Int32,T)
inline void List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_gshared)(__this, ___index0, ___value1, method);
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercaseRange(System.Char,System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddLowercaseRange_m75E07C55A082FE5B2926997F2564B611DF61A343 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___chMin0, Il2CppChar ___chMax1, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture2, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCategory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___category0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCategoryFromName(System.String,System.Boolean,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___categoryName0, bool ___invert1, bool ___caseInsensitive2, String_t* ___pattern3, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsNegated(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsNegated_m66E1348EBCAAD253AEEA5EDC3F9A93E84A433947 (String_t* ___set0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSubtraction(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSubtraction_m069CC20713C5757A8AAD9BA556F07C8E042F3BE8 (String_t* ___charClass0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClass(System.Char,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83 (Il2CppChar ___ch0, String_t* ___set1, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClassRecursive(System.Char,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClassRecursive_m7B2DC6EF52CFA494C26DC8AA976F3A06DDAF22FC (Il2CppChar ___ch0, String_t* ___set1, int32_t ___start2, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClassInternal(System.Char,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClassInternal_m166B4DDEB0553E88B58A2F3E859CA2D29995CF54 (Il2CppChar ___ch0, String_t* ___set1, int32_t ___start2, int32_t ___mySetLength3, int32_t ___myCategoryLength4, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInCategory(System.Char,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInCategory_m1B20968374CE9C35FE81D172C3325E37433897E1 (Il2CppChar ___ch0, String_t* ___set1, int32_t ___start2, int32_t ___mySetLength3, int32_t ___myCategoryLength4, const RuntimeMethod* method) ;
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319 (Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInCategoryGroup(System.Char,System.Globalization.UnicodeCategory,System.String,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInCategoryGroup_mDDAA3F1975AC1A7527137AE6951121F381703D48 (Il2CppChar ___ch0, int32_t ___chcategory1, String_t* ___category2, int32_t* ___i3, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::ParseRecursive(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* RegexCharClass_ParseRecursive_m6ABF2F2B8B8C5A559866EBF3FBA305247DE4CCF6 (String_t* ___charClass0, int32_t ___start1, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::.ctor(System.Boolean,System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>,System.Text.StringBuilder,System.Text.RegularExpressions.RegexCharClass)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__ctor_mFAD2AF3D7B0D4D3DC8BC850B8899C5C4D55F8B49 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___negate0, List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ___ranges1, StringBuilder_t* ___categories2, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___subtraction3, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::Canonicalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_Canonicalize_m77EEBAD046B3EAD5110DD472434BDE16851C7A9E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __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 System.Text.StringBuilder::set_Chars(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m20B53B0EEAB2A0BB0EC84A130FF12EA86ADD99AE (StringBuilder_t* __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m8037E51D061CE657D7EB2EDAFCEE91878E4F8FFB (StringBuilder_t* __this, StringBuilder_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.RegexCharClass::ToStringClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Sort(System.Collections.Generic.IComparer`1<T>)
inline void List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF_gshared)(__this, ___comparer0, method);
}
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::RemoveRange(System.Int32,System.Int32)
inline void List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92_gshared)(__this, ___index0, ___count1, method);
}
// System.Int32 System.String::Compare(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// System.String SR::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F (String_t* ___resourceFormat0, RuntimeObject* ___p11, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor(System.Int32)
inline void Dictionary_2__ctor_m5D77EB3F62FED2B879551BFADA7FE409B56F99F2 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_mF225F49F6BE54C39563CECD7C693F0AE4F0530E8_gshared)(__this, ___capacity0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(TKey,TValue)
inline void Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::.ctor(System.Char,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1* __this, Il2CppChar ___chMin0, Il2CppChar ___chMax1, int32_t ___lcOp2, int32_t ___data3, const RuntimeMethod* method) ;
// System.Int32 System.Char::CompareTo(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7 (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleRangeComparer__ctor_m9B430EFE70974D964D73913D81E7C6C9236BBCCE (SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0* __this, const RuntimeMethod* 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.Text.RegularExpressions.RegexFC>::.ctor(System.Int32)
inline void List_1__ctor_m577E237486A82F977367542706CB743B4ED0C7C9 (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
}
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::.ctor(System.Span`1<T>)
inline void ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8 (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___initialSpan0, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316, const RuntimeMethod*))ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_gshared)(__this, ___initialSpan0, 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* ___pointer0, int32_t ___length1, const RuntimeMethod* method)
{
(( void (*) (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_gshared_inline)(__this, ___pointer0, ___length1, method);
}
// System.Void System.Text.RegularExpressions.RegexFCD::.ctor(System.Span`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD__ctor_mE1C0A21180069D25EEF6F3702938ABB087F35C0C (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___intStack0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::RegexFCFromRegexTree(System.Text.RegularExpressions.RegexTree)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* RegexFCD_RegexFCFromRegexTree_mD5A53219905969B914CE27404553A4360DA78500 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___tree0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFCD::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_Dispose_m0B04A2F3B819FA7BFAF0AECCBF6D22E6D9789C07 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.RegexFC::GetFirstChars(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexFC_GetFirstChars_m6BAC398ABDCA5AF58CBE678143C9792611A2A3E8 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexFC::get_CaseInsensitive()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102_inline (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexPrefix::.ctor(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4 (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, String_t* ___prefix0, bool ___ci1, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>::.ctor(T)
inline void Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738 (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8*, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044, const RuntimeMethod*))Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738_gshared)(__this, ___value0, method);
}
// System.Int32 System.Text.RegularExpressions.RegexNode::ChildCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Child(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27 (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___i0, const RuntimeMethod* method) ;
// 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 ___totalWidth0, Il2CppChar ___paddingChar1, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::get_Empty()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 RegexPrefix_get_Empty_m3D63F7F64529D4CA3C0929F94E035EEED7D9E0F9_inline (const RuntimeMethod* method) ;
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexFCD::AnchorFromType(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_AnchorFromType_mF944273F420E8D43F4F9EC93950E3797B4C10A47 (int32_t ___type0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Append(T)
inline void ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, int32_t ___item0, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*, int32_t, const RuntimeMethod*))ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_gshared_inline)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.ValueListBuilder`1<System.Int32>::get_Length()
inline int32_t ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*, const RuntimeMethod*))ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_gshared_inline)(__this, method);
}
// T System.Collections.Generic.ValueListBuilder`1<System.Int32>::Pop()
inline int32_t ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*, const RuntimeMethod*))ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC>::Add(T)
inline void List_1_Add_m13AFB49515C3E17A2B0542E030545352978F3C61_inline (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* __this, RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1*, RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC>::get_Count()
inline int32_t List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_inline (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::TopFC()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_m6080E9C1661919ED369F1ED2BC417C7B714D8CB8 (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
}
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexFC>::get_Item(System.Int32)
inline RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* List_1_get_Item_m40508D1183F77F83F5FA073B2ED5DEB05070E6D1 (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* (*) (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Dispose()
inline void ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*, const RuntimeMethod*))ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_gshared_inline)(__this, method);
}
// System.Void System.Text.RegularExpressions.RegexFCD::CalculateFC(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, int32_t ___NodeType0, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___node1, int32_t ___CurIndex2, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Count()
inline int32_t List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline (List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Item(System.Int32)
inline RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6 (List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* (*) (List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void System.Text.RegularExpressions.RegexFCD::PushInt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushInt_m0B38AFDAF0D14FF1E41AC90838B40C4C866D8875 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexFCD::IntIsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_IntIsEmpty_m05E3C6FF40B69E98D90CF1C12DF3F32AEC800B5E (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexFCD::PopInt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_PopInt_m1DF4F5E6B4BA9E15AFF2B3C44D1A233EA46EFCD0 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexFCD::FCIsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_FCIsEmpty_m749E6423466EAD51E38445AC91E76DE31258574F (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::PopFC()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFCD::SkipChild()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_SkipChild_m5ACE619BAC10DD5DFE755655DB6151E7DB0885FD (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, bool ___nullable0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFCD::PushFC(System.Text.RegularExpressions.RegexFC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* ___fc0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexFC::AddFC(System.Text.RegularExpressions.RegexFC,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* ___fc0, bool ___concatenate1, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Char,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, Il2CppChar ___ch0, bool ___not1, bool ___nullable2, bool ___caseInsensitive3, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, String_t* ___charClass0, bool ___nullable1, bool ___caseInsensitive2, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexFC::set_CaseInsensitive(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B_inline (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* RegexCharClass_Parse_m4766E7E53BF572FD9815DEEBD9831380C33C796A (String_t* ___charClass0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::get_CanMerge()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_get_CanMerge_mC093FE4BE7C1933BA9F146CF2A33CD729A965172 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCharClass(System.Text.RegularExpressions.RegexCharClass)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCharClass_mDE8C70A6A99B2223DE4EA36A4753A13B5EEDE7BB (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___cc0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercase(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexRunner::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner__ctor_mBC777F351AD6D1CDD5F20C408B936F7D0F36ED69 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::SetOperator(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___op0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexRunner::EnsureStorage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_EnsureStorage_mB3DB043396771740A05B2AABC293DAAB1250B024 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
// System.Char System.Text.RegularExpressions.RegexInterpreter::CharAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___j0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::IsMatch(System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexBoyerMoore_IsMatch_mC09692237823CC6C74D4F5D8900D82CEC840FB47 (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___text0, int32_t ___index1, int32_t ___beglimit2, int32_t ___endlimit3, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::Scan(System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexBoyerMoore_Scan_m86EB5A209D33DA3F4C7335F8FE133238666FA57B (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___text0, int32_t ___index1, int32_t ___beglimit2, int32_t ___endlimit3, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>::get_HasValue()
inline bool Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_inline (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8*, const RuntimeMethod*))Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>::GetValueOrDefault()
inline RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_inline (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, const RuntimeMethod* method)
{
return (( RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 (*) (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_gshared_inline)(__this, method);
}
// System.Boolean System.Text.RegularExpressions.RegexPrefix::get_CaseInsensitive()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.RegexPrefix::get_Prefix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingleton(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSingleton_mF23CB7003B555ADB4C5035A1B3A218A8ED847D12 (String_t* ___set0, const RuntimeMethod* method) ;
// System.Char System.Text.RegularExpressions.RegexCharClass::SingletonChar(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexCharClass_SingletonChar_m11683F48B3AA3E0B5CD5849C40ADDCECC91BFF10 (String_t* ___set0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Forwardchars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Char System.Text.RegularExpressions.RegexInterpreter::Forwardcharnext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::Backwardnext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::Goto(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::Advance(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Advance_m31E2455F84B61536DE535BE51D4D0B42DC33857B (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexRunner::CheckTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operator_m3BD9AD7DCDA4E84DE4821DA786E1B1483E677B58_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operand(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexRunner::IsMatched(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___cap0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textpos()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::Textto(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexRunner::TransferCapture(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_TransferCapture_m642CC595E9FA641B913CCBE02E233DBB319A6E8A (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___capnum0, int32_t ___uncapnum1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexRunner::Capture(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Capture_m3EB42B55A19BD7776156F04CBE9367C6EBA59F9C (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___capnum0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexRunner::Uncapture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___framesize0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___framesize0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m18FF10B704A6586A18D9AB21D28737DC32DA2797 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m606F28BD60B479F0FD3073F8B5627836DB89230E (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, int32_t ___I32, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Trackpos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Trackpos_m6BDE792A7333FADB2533591B88211FD77E8F0401 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexRunner::Crawlpos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::Trackto(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Trackto_mDFDFF0401BC8F2B2D26AEC65B54B963F84A089AE (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Leftchars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Leftchars_m6FD5AA399927D1767633B24AE234D596CBDD4002 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Rightchars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexRunner::IsBoundary(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsBoundary_mCF4AE83F6FE3CC46C71C4558DBCDEC255BD422B8 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___index0, int32_t ___startpos1, int32_t ___endpos2, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexRunner::IsECMABoundary(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsECMABoundary_m56C692126DF69F0933BBFCBF122F764C6093DA26 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___index0, int32_t ___startpos1, int32_t ___endpos2, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textstart()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textstart_mDF185C6B3E245A2307A8B0B9F5FE5DF8C8C9936E_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::Stringmatch(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Stringmatch_m89AE288DB294AC0146C7772193CAD3B702849E54 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, String_t* ___str0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexRunner::MatchIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___cap0, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexRunner::MatchLength(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___cap0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::Refmatch(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Refmatch_m457B37C3E3B0671E7E89B7F6C16396D36EB32F68 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___index0, int32_t ___len1, const RuntimeMethod* method) ;
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Bump()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Exception System.NotImplemented::ByDesignWithMessage(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* NotImplemented_ByDesignWithMessage_m91D3B27BDC19FF6AAEDD420C9A8E3A43FB3B9DE3 (String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.RegexInterpreter::Backtrack()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backtrack_m8D227FAE1EFD91174D43FF070D9200291941E593 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E (int32_t ___argument0, const RuntimeMethod* method) ;
// System.Char& System.String::GetRawStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
// System.Void System.ReadOnlySpan`1<System.Char>::.ctor(T&,System.Int32)
inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method)
{
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___ptr0, ___length1, method);
}
// System.Void System.ThrowHelper::ThrowInvalidTypeWithPointersNotSupported(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5 (Type_t* ___targetType0, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353 (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_mFF16FBF4112C75DCE17FBE1C12799469549384C9 (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
{
(( void (*) (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*, const RuntimeMethod*))ValueListBuilder_1_Grow_mFF16FBF4112C75DCE17FBE1C12799469549384C9_gshared)(__this, method);
}
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Uri/UriInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriInfo__ctor_m88A6E3E7164B78B18C70D83CA5AD734517D308B3 (UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* __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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Uri/MoreInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MoreInfo__ctor_m4AC1286A4D4DAD0AB0EE99A2C952D54BFA5F44A7 (MoreInfo_tB58ABF2D5D75E92D35BBC37192CD0D5C02C3F0FA* __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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.UriFormatException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriFormatException__ctor_m4D218C92C093CD0CDDDC012911A1E10CB327BB70 (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* __this, const RuntimeMethod* method)
{
{
FormatException__ctor_mF29D430E15E766845220AB94DEE48CFC341A2DFE(__this, NULL);
return;
}
}
// System.Void System.UriFormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3 (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* __this, String_t* ___textString0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___textString0;
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(__this, L_0, NULL);
return;
}
}
// System.Void System.UriFormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriFormatException__ctor_m15F8C1205D9A648F72DD5D94DB92FD1FA1397FE0 (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
FormatException__ctor_mC5676E4279E9B264450F42CAE47EE7A3F2031B9B(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.UriFormatException::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriFormatException_System_Runtime_Serialization_ISerializable_GetObjectData_mF5C6CA057915A5F7F4E9D8FBE5D6EB2595A4FD80 (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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.Boolean System.UriHelper::TestForSubPath(System.Char*,System.UInt16,System.Char*,System.UInt16,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_TestForSubPath_mBC7C47F3C8258BF49162CA099F43E24575CFBFCF (Il2CppChar* ___pMe0, uint16_t ___meLength1, Il2CppChar* ___pShe2, uint16_t ___sheLength3, bool ___ignoreCase4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
Il2CppChar V_1 = 0x0;
Il2CppChar V_2 = 0x0;
bool V_3 = false;
{
V_0 = (uint16_t)0;
V_3 = (bool)1;
goto IL_006c;
}
IL_0006:
{
Il2CppChar* L_0 = ___pMe0;
uint16_t L_1 = V_0;
int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2)))));
V_1 = L_2;
Il2CppChar* L_3 = ___pShe2;
uint16_t L_4 = V_0;
int32_t L_5 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_4), 2)))));
V_2 = L_5;
Il2CppChar L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)63))))
{
goto IL_0020;
}
}
{
Il2CppChar L_7 = V_1;
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)35)))))
{
goto IL_0022;
}
}
IL_0020:
{
return (bool)1;
}
IL_0022:
{
Il2CppChar L_8 = V_1;
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)47)))))
{
goto IL_0037;
}
}
{
Il2CppChar L_9 = V_2;
if ((((int32_t)L_9) == ((int32_t)((int32_t)47))))
{
goto IL_002e;
}
}
{
return (bool)0;
}
IL_002e:
{
bool L_10 = V_3;
if (L_10)
{
goto IL_0033;
}
}
{
return (bool)0;
}
IL_0033:
{
V_3 = (bool)1;
goto IL_0067;
}
IL_0037:
{
Il2CppChar L_11 = V_2;
if ((((int32_t)L_11) == ((int32_t)((int32_t)63))))
{
goto IL_0096;
}
}
{
Il2CppChar L_12 = V_2;
if ((((int32_t)L_12) == ((int32_t)((int32_t)35))))
{
goto IL_0096;
}
}
{
bool L_13 = ___ignoreCase4;
if (L_13)
{
goto IL_004d;
}
}
{
Il2CppChar L_14 = V_1;
Il2CppChar L_15 = V_2;
if ((((int32_t)L_14) == ((int32_t)L_15)))
{
goto IL_0067;
}
}
{
V_3 = (bool)0;
goto IL_0067;
}
IL_004d:
{
Il2CppChar L_16 = V_1;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_17;
L_17 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
Il2CppChar L_18;
L_18 = Char_ToLower_m78EEA18B8EA90C29C7F1082CBA19F0DCFE90E9D4(L_16, L_17, NULL);
Il2CppChar L_19 = V_2;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_20;
L_20 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Il2CppChar L_21;
L_21 = Char_ToLower_m78EEA18B8EA90C29C7F1082CBA19F0DCFE90E9D4(L_19, L_20, NULL);
if ((((int32_t)L_18) == ((int32_t)L_21)))
{
goto IL_0067;
}
}
{
V_3 = (bool)0;
}
IL_0067:
{
uint16_t L_22 = V_0;
V_0 = (uint16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, 1)));
}
IL_006c:
{
uint16_t L_23 = V_0;
uint16_t L_24 = ___meLength1;
if ((((int32_t)L_23) >= ((int32_t)L_24)))
{
goto IL_0096;
}
}
{
uint16_t L_25 = V_0;
uint16_t L_26 = ___sheLength3;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0006;
}
}
{
goto IL_0096;
}
IL_0076:
{
Il2CppChar* L_27 = ___pMe0;
uint16_t L_28 = V_0;
int32_t L_29 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_28), 2)))));
int32_t L_30 = L_29;
V_1 = L_30;
if ((((int32_t)L_30) == ((int32_t)((int32_t)63))))
{
goto IL_0088;
}
}
{
Il2CppChar L_31 = V_1;
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)35)))))
{
goto IL_008a;
}
}
IL_0088:
{
return (bool)1;
}
IL_008a:
{
Il2CppChar L_32 = V_1;
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)47)))))
{
goto IL_0091;
}
}
{
return (bool)0;
}
IL_0091:
{
uint16_t L_33 = V_0;
V_0 = (uint16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, 1)));
}
IL_0096:
{
uint16_t L_34 = V_0;
uint16_t L_35 = ___meLength1;
if ((((int32_t)L_34) < ((int32_t)L_35)))
{
goto IL_0076;
}
}
{
return (bool)1;
}
}
// System.Char[] System.UriHelper::EscapeString(System.String,System.Int32,System.Int32,System.Char[],System.Int32&,System.Boolean,System.Char,System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* UriHelper_EscapeString_m616525587FFF13665945B9173F3C2EC41C9EDDA8 (String_t* ___input0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest3, int32_t* ___destPos4, bool ___isUriString5, Il2CppChar ___force16, Il2CppChar ___force27, Il2CppChar ___rsvd8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint8_t* V_2 = NULL;
Il2CppChar* V_3 = NULL;
String_t* V_4 = NULL;
Il2CppChar V_5 = 0x0;
int16_t V_6 = 0;
int16_t V_7 = 0;
int16_t V_8 = 0;
int32_t V_9 = 0;
int32_t G_B35_0 = 0;
{
int32_t L_0 = ___end2;
int32_t L_1 = ___start1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_0, L_1))) < ((int32_t)((int32_t)65520))))
{
goto IL_001a;
}
}
{
String_t* L_2;
L_2 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDDA0FEDECC3765A8D5F295C4B302D615D29F3483)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_3 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_3);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_3, L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriHelper_EscapeString_m616525587FFF13665945B9173F3C2EC41C9EDDA8_RuntimeMethod_var)));
}
IL_001a:
{
int32_t L_4 = ___start1;
V_0 = L_4;
int32_t L_5 = ___start1;
V_1 = L_5;
int8_t* L_6 = (int8_t*) alloca(((uintptr_t)((int32_t)160)));
memset(L_6, 0, ((uintptr_t)((int32_t)160)));
V_2 = (uint8_t*)(L_6);
String_t* L_7 = ___input0;
V_4 = L_7;
String_t* L_8 = V_4;
V_3 = (Il2CppChar*)((uintptr_t)L_8);
Il2CppChar* L_9 = V_3;
if (!L_9)
{
goto IL_0250;
}
}
{
Il2CppChar* L_10 = V_3;
int32_t L_11;
L_11 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, L_11));
goto IL_0250;
}
IL_0041:
{
Il2CppChar* L_12 = V_3;
int32_t L_13 = V_0;
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_5 = L_14;
Il2CppChar L_15 = V_5;
if ((((int32_t)L_15) <= ((int32_t)((int32_t)127))))
{
goto IL_0140;
}
}
{
int32_t L_16 = ___end2;
int32_t L_17 = V_0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_18;
L_18 = Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8(((int32_t)il2cpp_codegen_subtract(L_16, L_17)), ((int32_t)39), NULL);
V_6 = ((int16_t)L_18);
V_7 = (int16_t)1;
goto IL_006c;
}
IL_0065:
{
int16_t L_19 = V_7;
V_7 = ((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, 1)));
}
IL_006c:
{
int16_t L_20 = V_7;
int16_t L_21 = V_6;
if ((((int32_t)L_20) >= ((int32_t)L_21)))
{
goto IL_0080;
}
}
{
Il2CppChar* L_22 = V_3;
int32_t L_23 = V_0;
int16_t L_24 = V_7;
int32_t L_25 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_23, (int32_t)L_24))), 2)))));
if ((((int32_t)L_25) > ((int32_t)((int32_t)127))))
{
goto IL_0065;
}
}
IL_0080:
{
Il2CppChar* L_26 = V_3;
int32_t L_27 = V_0;
int16_t L_28 = V_7;
int32_t L_29 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_26, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_27, (int32_t)L_28)), 1))), 2)))));
if ((((int32_t)L_29) < ((int32_t)((int32_t)55296))))
{
goto IL_00c9;
}
}
{
Il2CppChar* L_30 = V_3;
int32_t L_31 = V_0;
int16_t L_32 = V_7;
int32_t L_33 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_31, (int32_t)L_32)), 1))), 2)))));
if ((((int32_t)L_33) > ((int32_t)((int32_t)56319))))
{
goto IL_00c9;
}
}
{
int16_t L_34 = V_7;
if ((((int32_t)L_34) == ((int32_t)1)))
{
goto IL_00b2;
}
}
{
int16_t L_35 = V_7;
int32_t L_36 = ___end2;
int32_t L_37 = V_0;
if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_36, L_37))))))
{
goto IL_00c2;
}
}
IL_00b2:
{
String_t* L_38;
L_38 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCC86C197E0FEFBC58402C83C0D74784A5C39CD74)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_39 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_39);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_39, L_38, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriHelper_EscapeString_m616525587FFF13665945B9173F3C2EC41C9EDDA8_RuntimeMethod_var)));
}
IL_00c2:
{
int16_t L_40 = V_7;
V_7 = ((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, 1)));
}
IL_00c9:
{
Il2CppChar* L_41 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_42 = ___dest3;
int32_t L_43 = V_0;
int16_t L_44 = V_7;
int32_t* L_45 = ___destPos4;
int32_t L_46 = V_1;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47;
L_47 = UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887(L_41, L_42, L_43, ((int16_t)((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_multiply((int32_t)L_44, 4)), 3))), (int16_t)((int32_t)480), L_45, L_46, NULL);
___dest3 = L_47;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_48;
L_48 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
Il2CppChar* L_49 = V_3;
int32_t L_50 = V_0;
int16_t L_51 = V_7;
uint8_t* L_52 = V_2;
NullCheck(L_48);
int32_t L_53;
L_53 = VirtualFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(21 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, L_48, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_50), 2)))), L_51, L_52, ((int32_t)160));
V_8 = ((int16_t)L_53);
int16_t L_54 = V_8;
if (L_54)
{
goto IL_0111;
}
}
{
String_t* L_55;
L_55 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCC86C197E0FEFBC58402C83C0D74784A5C39CD74)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_56 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_56);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_56, L_55, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_56, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriHelper_EscapeString_m616525587FFF13665945B9173F3C2EC41C9EDDA8_RuntimeMethod_var)));
}
IL_0111:
{
int32_t L_57 = V_0;
int16_t L_58 = V_7;
V_0 = ((int32_t)il2cpp_codegen_add(L_57, ((int32_t)il2cpp_codegen_subtract((int32_t)L_58, 1))));
V_7 = (int16_t)0;
goto IL_0131;
}
IL_011d:
{
uint8_t* L_59 = V_2;
int16_t L_60 = V_7;
int32_t L_61 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_59, (int32_t)L_60)));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_62 = ___dest3;
int32_t* L_63 = ___destPos4;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_61, L_62, L_63, NULL);
int16_t L_64 = V_7;
V_7 = ((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_64, 1)));
}
IL_0131:
{
int16_t L_65 = V_7;
int16_t L_66 = V_8;
if ((((int32_t)L_65) < ((int32_t)L_66)))
{
goto IL_011d;
}
}
{
int32_t L_67 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_67, 1));
goto IL_024c;
}
IL_0140:
{
Il2CppChar L_68 = V_5;
if ((!(((uint32_t)L_68) == ((uint32_t)((int32_t)37)))))
{
goto IL_01e0;
}
}
{
Il2CppChar L_69 = ___rsvd8;
if ((!(((uint32_t)L_69) == ((uint32_t)((int32_t)37)))))
{
goto IL_01e0;
}
}
{
Il2CppChar* L_70 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_71 = ___dest3;
int32_t L_72 = V_0;
int32_t* L_73 = ___destPos4;
int32_t L_74 = V_1;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_75;
L_75 = UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887(L_70, L_71, L_72, (int16_t)3, (int16_t)((int32_t)120), L_73, L_74, NULL);
___dest3 = L_75;
int32_t L_76 = V_0;
int32_t L_77 = ___end2;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_76, 2))) >= ((int32_t)L_77)))
{
goto IL_01d0;
}
}
{
Il2CppChar* L_78 = V_3;
int32_t L_79 = V_0;
int32_t L_80 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_78, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_79, 1))), 2)))));
Il2CppChar* L_81 = V_3;
int32_t L_82 = V_0;
int32_t L_83 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_81, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_82, 2))), 2)))));
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
Il2CppChar L_84;
L_84 = UriHelper_EscapedAscii_mC7BE08D5B7803E83C57B8269F298B6DFA9EC5120(L_80, L_83, NULL);
if ((((int32_t)L_84) == ((int32_t)((int32_t)65535))))
{
goto IL_01d0;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_85 = ___dest3;
int32_t* L_86 = ___destPos4;
int32_t* L_87 = ___destPos4;
int32_t L_88 = *((int32_t*)L_87);
V_9 = L_88;
int32_t L_89 = V_9;
*((int32_t*)L_86) = (int32_t)((int32_t)il2cpp_codegen_add(L_89, 1));
int32_t L_90 = V_9;
NullCheck(L_85);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(L_90), (Il2CppChar)((int32_t)37));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_91 = ___dest3;
int32_t* L_92 = ___destPos4;
int32_t* L_93 = ___destPos4;
int32_t L_94 = *((int32_t*)L_93);
V_9 = L_94;
int32_t L_95 = V_9;
*((int32_t*)L_92) = (int32_t)((int32_t)il2cpp_codegen_add(L_95, 1));
int32_t L_96 = V_9;
Il2CppChar* L_97 = V_3;
int32_t L_98 = V_0;
int32_t L_99 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_97, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_98, 1))), 2)))));
NullCheck(L_91);
(L_91)->SetAt(static_cast<il2cpp_array_size_t>(L_96), (Il2CppChar)L_99);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_100 = ___dest3;
int32_t* L_101 = ___destPos4;
int32_t* L_102 = ___destPos4;
int32_t L_103 = *((int32_t*)L_102);
V_9 = L_103;
int32_t L_104 = V_9;
*((int32_t*)L_101) = (int32_t)((int32_t)il2cpp_codegen_add(L_104, 1));
int32_t L_105 = V_9;
Il2CppChar* L_106 = V_3;
int32_t L_107 = V_0;
int32_t L_108 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_106, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_107, 2))), 2)))));
NullCheck(L_100);
(L_100)->SetAt(static_cast<il2cpp_array_size_t>(L_105), (Il2CppChar)L_108);
int32_t L_109 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_109, 2));
goto IL_01da;
}
IL_01d0:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_110 = ___dest3;
int32_t* L_111 = ___destPos4;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(((int32_t)37), L_110, L_111, NULL);
}
IL_01da:
{
int32_t L_112 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_112, 1));
goto IL_024c;
}
IL_01e0:
{
Il2CppChar L_113 = V_5;
Il2CppChar L_114 = ___force16;
if ((((int32_t)L_113) == ((int32_t)L_114)))
{
goto IL_01ec;
}
}
{
Il2CppChar L_115 = V_5;
Il2CppChar L_116 = ___force27;
if ((!(((uint32_t)L_115) == ((uint32_t)L_116))))
{
goto IL_020c;
}
}
IL_01ec:
{
Il2CppChar* L_117 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_118 = ___dest3;
int32_t L_119 = V_0;
int32_t* L_120 = ___destPos4;
int32_t L_121 = V_1;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_122;
L_122 = UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887(L_117, L_118, L_119, (int16_t)3, (int16_t)((int32_t)120), L_120, L_121, NULL);
___dest3 = L_122;
Il2CppChar L_123 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_124 = ___dest3;
int32_t* L_125 = ___destPos4;
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_123, L_124, L_125, NULL);
int32_t L_126 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_126, 1));
goto IL_024c;
}
IL_020c:
{
Il2CppChar L_127 = V_5;
Il2CppChar L_128 = ___rsvd8;
if ((((int32_t)L_127) == ((int32_t)L_128)))
{
goto IL_024c;
}
}
{
bool L_129 = ___isUriString5;
if (L_129)
{
goto IL_0222;
}
}
{
Il2CppChar L_130 = V_5;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
bool L_131;
L_131 = UriHelper_IsUnreserved_m3171C456B602B4F7052B4E865F2DF04C71553797(L_130, NULL);
G_B35_0 = ((((int32_t)L_131) == ((int32_t)0))? 1 : 0);
goto IL_022c;
}
IL_0222:
{
Il2CppChar L_132 = V_5;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
bool L_133;
L_133 = UriHelper_IsReservedUnreservedOrHash_mEAD756DAD5DB17F71960CC501BBB7CF9AB5EF74F(L_132, NULL);
G_B35_0 = ((((int32_t)L_133) == ((int32_t)0))? 1 : 0);
}
IL_022c:
{
if (!G_B35_0)
{
goto IL_024c;
}
}
{
Il2CppChar* L_134 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_135 = ___dest3;
int32_t L_136 = V_0;
int32_t* L_137 = ___destPos4;
int32_t L_138 = V_1;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_139;
L_139 = UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887(L_134, L_135, L_136, (int16_t)3, (int16_t)((int32_t)120), L_137, L_138, NULL);
___dest3 = L_139;
Il2CppChar L_140 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_141 = ___dest3;
int32_t* L_142 = ___destPos4;
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_140, L_141, L_142, NULL);
int32_t L_143 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_143, 1));
}
IL_024c:
{
int32_t L_144 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_144, 1));
}
IL_0250:
{
int32_t L_145 = V_0;
int32_t L_146 = ___end2;
if ((((int32_t)L_145) < ((int32_t)L_146)))
{
goto IL_0041;
}
}
{
int32_t L_147 = V_1;
int32_t L_148 = V_0;
if ((((int32_t)L_147) == ((int32_t)L_148)))
{
goto IL_0271;
}
}
{
int32_t L_149 = V_1;
int32_t L_150 = ___start1;
if ((!(((uint32_t)L_149) == ((uint32_t)L_150))))
{
goto IL_0262;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_151 = ___dest3;
if (!L_151)
{
goto IL_0271;
}
}
IL_0262:
{
Il2CppChar* L_152 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_153 = ___dest3;
int32_t L_154 = V_0;
int32_t* L_155 = ___destPos4;
int32_t L_156 = V_1;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_157;
L_157 = UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887(L_152, L_153, L_154, (int16_t)0, (int16_t)0, L_155, L_156, NULL);
___dest3 = L_157;
}
IL_0271:
{
V_4 = (String_t*)NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_158 = ___dest3;
return L_158;
}
}
// System.Char[] System.UriHelper::EnsureDestinationSize(System.Char*,System.Char[],System.Int32,System.Int16,System.Int16,System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* UriHelper_EnsureDestinationSize_m4CAB570AAAC5145D6DAF9AC4362812693C324887 (Il2CppChar* ___pStr0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest1, int32_t ___currentInputPos2, int16_t ___charsToAdd3, int16_t ___minReallocateChars4, int32_t* ___destPos5, int32_t ___prevInputPos6, 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;
}
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
int32_t V_1 = 0;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___dest1;
if (!L_0)
{
goto IL_0012;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___dest1;
NullCheck(L_1);
int32_t* L_2 = ___destPos5;
int32_t L_3 = *((int32_t*)L_2);
int32_t L_4 = ___currentInputPos2;
int32_t L_5 = ___prevInputPos6;
int16_t L_6 = ___charsToAdd3;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5)))), (int32_t)L_6)))))
{
goto IL_0058;
}
}
IL_0012:
{
int32_t* L_7 = ___destPos5;
int32_t L_8 = *((int32_t*)L_7);
int32_t L_9 = ___currentInputPos2;
int32_t L_10 = ___prevInputPos6;
int16_t L_11 = ___minReallocateChars4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)))), (int32_t)L_11)));
V_0 = L_12;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = ___dest1;
if (!L_13)
{
goto IL_0039;
}
}
{
int32_t* L_14 = ___destPos5;
int32_t L_15 = *((int32_t*)L_14);
if (!L_15)
{
goto IL_0039;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___dest1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = V_0;
int32_t* L_18 = ___destPos5;
int32_t L_19 = *((int32_t*)L_18);
Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_16, 0, (RuntimeArray*)L_17, 0, ((int32_t)(L_19<<1)), NULL);
}
IL_0039:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_0;
___dest1 = L_20;
goto IL_0058;
}
IL_003e:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = ___dest1;
int32_t* L_22 = ___destPos5;
int32_t* L_23 = ___destPos5;
int32_t L_24 = *((int32_t*)L_23);
V_1 = L_24;
int32_t L_25 = V_1;
*((int32_t*)L_22) = (int32_t)((int32_t)il2cpp_codegen_add(L_25, 1));
int32_t L_26 = V_1;
Il2CppChar* L_27 = ___pStr0;
int32_t L_28 = ___prevInputPos6;
int32_t L_29 = L_28;
___prevInputPos6 = ((int32_t)il2cpp_codegen_add(L_29, 1));
int32_t L_30 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_29), 2)))));
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (Il2CppChar)L_30);
}
IL_0058:
{
int32_t L_31 = ___prevInputPos6;
int32_t L_32 = ___currentInputPos2;
if ((!(((uint32_t)L_31) == ((uint32_t)L_32))))
{
goto IL_003e;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = ___dest1;
return L_33;
}
}
// System.Char[] System.UriHelper::UnescapeString(System.String,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* UriHelper_UnescapeString_m978B253231CE4F7BA6F6DC7778D679C19F77CB54 (String_t* ___input0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest3, int32_t* ___destPosition4, Il2CppChar ___rsvd15, Il2CppChar ___rsvd26, Il2CppChar ___rsvd37, int32_t ___unescapeMode8, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___syntax9, bool ___isQuery10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___input0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4;
L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4));
}
IL_0010:
{
Il2CppChar* L_5 = V_0;
int32_t L_6 = ___start1;
int32_t L_7 = ___end2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = ___dest3;
int32_t* L_9 = ___destPosition4;
Il2CppChar L_10 = ___rsvd15;
Il2CppChar L_11 = ___rsvd26;
Il2CppChar L_12 = ___rsvd37;
int32_t L_13 = ___unescapeMode8;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_14 = ___syntax9;
bool L_15 = ___isQuery10;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16;
L_16 = UriHelper_UnescapeString_mD137E2B3F648504A96E7F244796CDCEBE6BB9BE1(L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_12, L_13, L_14, L_15, NULL);
return L_16;
}
}
// System.Char[] System.UriHelper::UnescapeString(System.Char*,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* UriHelper_UnescapeString_mD137E2B3F648504A96E7F244796CDCEBE6BB9BE1 (Il2CppChar* ___pStr0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest3, int32_t* ___destPosition4, Il2CppChar ___rsvd15, Il2CppChar ___rsvd26, Il2CppChar ___rsvd37, int32_t ___unescapeMode8, UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___syntax9, bool ___isQuery10, 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*)&DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
uint8_t V_1 = 0x0;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
Il2CppChar* V_5 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_6 = NULL;
int32_t V_7 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_8 = NULL;
Il2CppChar V_9 = 0x0;
int32_t V_10 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_11 = NULL;
int32_t V_12 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_13 = NULL;
Il2CppChar* V_14 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_15 = NULL;
int32_t V_16 = 0;
int32_t G_B3_0 = 0;
{
V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
V_1 = (uint8_t)0;
V_2 = (bool)0;
int32_t L_0 = ___start1;
V_3 = L_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_1 = ___syntax9;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Uri_IriParsingStatic_m5FACD38C4EDB61BC6AC465759CDB56F24C34C3B8(L_1, NULL);
if (!L_2)
{
goto IL_001a;
}
}
{
int32_t L_3 = ___unescapeMode8;
G_B3_0 = ((((int32_t)((int32_t)((int32_t)L_3&3))) == ((int32_t)3))? 1 : 0);
goto IL_001b;
}
IL_001a:
{
G_B3_0 = 0;
}
IL_001b:
{
V_4 = (bool)G_B3_0;
}
IL_001d:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0396:
{// begin finally (depth: 1)
V_6 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ___dest3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4;
V_6 = L_5;
if (!L_5)
{
goto IL_002a_1;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = V_6;
NullCheck(L_6);
if (((int32_t)(((RuntimeArray*)L_6)->max_length)))
{
goto IL_0030_1;
}
}
IL_002a_1:
{
V_5 = (Il2CppChar*)((uintptr_t)0);
goto IL_003b_1;
}
IL_0030_1:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_6;
NullCheck(L_7);
V_5 = (Il2CppChar*)((uintptr_t)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_003b_1:
{
int32_t L_8 = ___unescapeMode8;
if (((int32_t)((int32_t)L_8&3)))
{
goto IL_0070_1;
}
}
{
goto IL_0064_1;
}
IL_0043_1:
{
Il2CppChar* L_9 = V_5;
int32_t* L_10 = ___destPosition4;
int32_t* L_11 = ___destPosition4;
int32_t L_12 = *((int32_t*)L_11);
V_7 = L_12;
int32_t L_13 = V_7;
*((int32_t*)L_10) = (int32_t)((int32_t)il2cpp_codegen_add(L_13, 1));
int32_t L_14 = V_7;
Il2CppChar* L_15 = ___pStr0;
int32_t L_16 = ___start1;
int32_t L_17 = L_16;
___start1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
int32_t L_18 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2))))) = (int16_t)L_18;
}
IL_0064_1:
{
int32_t L_19 = ___start1;
int32_t L_20 = ___end2;
if ((((int32_t)L_19) < ((int32_t)L_20)))
{
goto IL_0043_1;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = ___dest3;
V_8 = L_21;
goto IL_039c;
}
IL_0070_1:
{
V_9 = 0;
goto IL_01dd_1;
}
IL_0078_1:
{
Il2CppChar* L_22 = ___pStr0;
int32_t L_23 = V_3;
int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_23), 2)))));
int32_t L_25 = L_24;
V_9 = L_25;
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)37)))))
{
goto IL_0195_1;
}
}
{
int32_t L_26 = ___unescapeMode8;
if (((int32_t)((int32_t)L_26&2)))
{
goto IL_0096_1;
}
}
{
V_2 = (bool)1;
goto IL_0207_1;
}
IL_0096_1:
{
int32_t L_27 = V_3;
int32_t L_28 = ___end2;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_27, 2))) >= ((int32_t)L_28)))
{
goto IL_0176_1;
}
}
{
Il2CppChar* L_29 = ___pStr0;
int32_t L_30 = V_3;
int32_t L_31 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_29, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_30, 1))), 2)))));
Il2CppChar* L_32 = ___pStr0;
int32_t L_33 = V_3;
int32_t L_34 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_33, 2))), 2)))));
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
Il2CppChar L_35;
L_35 = UriHelper_EscapedAscii_mC7BE08D5B7803E83C57B8269F298B6DFA9EC5120(L_31, L_34, NULL);
V_9 = L_35;
int32_t L_36 = ___unescapeMode8;
if ((((int32_t)L_36) < ((int32_t)8)))
{
goto IL_00e2_1;
}
}
{
Il2CppChar L_37 = V_9;
if ((!(((uint32_t)L_37) == ((uint32_t)((int32_t)65535)))))
{
goto IL_0207_1;
}
}
{
int32_t L_38 = ___unescapeMode8;
if ((((int32_t)L_38) < ((int32_t)((int32_t)24))))
{
goto IL_01d9_1;
}
}
{
String_t* L_39;
L_39 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCC86C197E0FEFBC58402C83C0D74784A5C39CD74)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_40 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_40);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_40, L_39, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriHelper_UnescapeString_mD137E2B3F648504A96E7F244796CDCEBE6BB9BE1_RuntimeMethod_var)));
}
IL_00e2_1:
{
Il2CppChar L_41 = V_9;
if ((!(((uint32_t)L_41) == ((uint32_t)((int32_t)65535)))))
{
goto IL_00fb_1;
}
}
{
int32_t L_42 = ___unescapeMode8;
if (!((int32_t)((int32_t)L_42&1)))
{
goto IL_01d9_1;
}
}
{
V_2 = (bool)1;
goto IL_0207_1;
}
IL_00fb_1:
{
Il2CppChar L_43 = V_9;
if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)37)))))
{
goto IL_010a_1;
}
}
{
int32_t L_44 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_44, 2));
goto IL_01d9_1;
}
IL_010a_1:
{
Il2CppChar L_45 = V_9;
Il2CppChar L_46 = ___rsvd15;
if ((((int32_t)L_45) == ((int32_t)L_46)))
{
goto IL_011c_1;
}
}
{
Il2CppChar L_47 = V_9;
Il2CppChar L_48 = ___rsvd26;
if ((((int32_t)L_47) == ((int32_t)L_48)))
{
goto IL_011c_1;
}
}
{
Il2CppChar L_49 = V_9;
Il2CppChar L_50 = ___rsvd37;
if ((!(((uint32_t)L_49) == ((uint32_t)L_50))))
{
goto IL_0125_1;
}
}
IL_011c_1:
{
int32_t L_51 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_51, 2));
goto IL_01d9_1;
}
IL_0125_1:
{
int32_t L_52 = ___unescapeMode8;
if (((int32_t)((int32_t)L_52&4)))
{
goto IL_013d_1;
}
}
{
Il2CppChar L_53 = V_9;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
bool L_54;
L_54 = UriHelper_IsNotSafeForUnescape_mD11825AB8FE6E410A5C0D6D7850C607DBF697D7E(L_53, NULL);
if (!L_54)
{
goto IL_013d_1;
}
}
{
int32_t L_55 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_55, 2));
goto IL_01d9_1;
}
IL_013d_1:
{
bool L_56 = V_4;
if (!L_56)
{
goto IL_0207_1;
}
}
{
Il2CppChar L_57 = V_9;
if ((((int32_t)L_57) > ((int32_t)((int32_t)159))))
{
goto IL_0156_1;
}
}
{
Il2CppChar L_58 = V_9;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
bool L_59;
L_59 = UriHelper_IsNotSafeForUnescape_mD11825AB8FE6E410A5C0D6D7850C607DBF697D7E(L_58, NULL);
if (L_59)
{
goto IL_0170_1;
}
}
IL_0156_1:
{
Il2CppChar L_60 = V_9;
if ((((int32_t)L_60) <= ((int32_t)((int32_t)159))))
{
goto IL_0207_1;
}
}
{
Il2CppChar L_61 = V_9;
bool L_62 = ___isQuery10;
bool L_63;
L_63 = IriHelper_CheckIriUnicodeRange_m47EF9FBD5FE075A464AE2A242FB43BEBC7C4F775(L_61, L_62, NULL);
if (L_63)
{
goto IL_0207_1;
}
}
IL_0170_1:
{
int32_t L_64 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_64, 2));
goto IL_01d9_1;
}
IL_0176_1:
{
int32_t L_65 = ___unescapeMode8;
if ((((int32_t)L_65) < ((int32_t)8)))
{
goto IL_0191_1;
}
}
{
int32_t L_66 = ___unescapeMode8;
if ((((int32_t)L_66) < ((int32_t)((int32_t)24))))
{
goto IL_01d9_1;
}
}
{
String_t* L_67;
L_67 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCC86C197E0FEFBC58402C83C0D74784A5C39CD74)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_68 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_68);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_68, L_67, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_68, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriHelper_UnescapeString_mD137E2B3F648504A96E7F244796CDCEBE6BB9BE1_RuntimeMethod_var)));
}
IL_0191_1:
{
V_2 = (bool)1;
goto IL_0207_1;
}
IL_0195_1:
{
int32_t L_69 = ___unescapeMode8;
if ((((int32_t)((int32_t)((int32_t)L_69&((int32_t)10)))) == ((int32_t)((int32_t)10))))
{
goto IL_01d9_1;
}
}
{
int32_t L_70 = ___unescapeMode8;
if (!((int32_t)((int32_t)L_70&1)))
{
goto IL_01d9_1;
}
}
{
Il2CppChar L_71 = V_9;
Il2CppChar L_72 = ___rsvd15;
if ((((int32_t)L_71) == ((int32_t)L_72)))
{
goto IL_01b6_1;
}
}
{
Il2CppChar L_73 = V_9;
Il2CppChar L_74 = ___rsvd26;
if ((((int32_t)L_73) == ((int32_t)L_74)))
{
goto IL_01b6_1;
}
}
{
Il2CppChar L_75 = V_9;
Il2CppChar L_76 = ___rsvd37;
if ((!(((uint32_t)L_75) == ((uint32_t)L_76))))
{
goto IL_01ba_1;
}
}
IL_01b6_1:
{
V_2 = (bool)1;
goto IL_0207_1;
}
IL_01ba_1:
{
int32_t L_77 = ___unescapeMode8;
if (((int32_t)((int32_t)L_77&4)))
{
goto IL_01d9_1;
}
}
{
Il2CppChar L_78 = V_9;
if ((((int32_t)L_78) <= ((int32_t)((int32_t)31))))
{
goto IL_01d5_1;
}
}
{
Il2CppChar L_79 = V_9;
if ((((int32_t)L_79) < ((int32_t)((int32_t)127))))
{
goto IL_01d9_1;
}
}
{
Il2CppChar L_80 = V_9;
if ((((int32_t)L_80) > ((int32_t)((int32_t)159))))
{
goto IL_01d9_1;
}
}
IL_01d5_1:
{
V_2 = (bool)1;
goto IL_0207_1;
}
IL_01d9_1:
{
int32_t L_81 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_81, 1));
}
IL_01dd_1:
{
int32_t L_82 = V_3;
int32_t L_83 = ___end2;
if ((((int32_t)L_82) < ((int32_t)L_83)))
{
goto IL_0078_1;
}
}
{
goto IL_0207_1;
}
IL_01e6_1:
{
Il2CppChar* L_84 = V_5;
int32_t* L_85 = ___destPosition4;
int32_t* L_86 = ___destPosition4;
int32_t L_87 = *((int32_t*)L_86);
V_7 = L_87;
int32_t L_88 = V_7;
*((int32_t*)L_85) = (int32_t)((int32_t)il2cpp_codegen_add(L_88, 1));
int32_t L_89 = V_7;
Il2CppChar* L_90 = ___pStr0;
int32_t L_91 = ___start1;
int32_t L_92 = L_91;
___start1 = ((int32_t)il2cpp_codegen_add(L_92, 1));
int32_t L_93 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_90, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_92), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_84, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_89), 2))))) = (int16_t)L_93;
}
IL_0207_1:
{
int32_t L_94 = ___start1;
int32_t L_95 = V_3;
if ((((int32_t)L_94) < ((int32_t)L_95)))
{
goto IL_01e6_1;
}
}
{
int32_t L_96 = V_3;
int32_t L_97 = ___end2;
if ((((int32_t)L_96) == ((int32_t)L_97)))
{
goto IL_038d_1;
}
}
{
bool L_98 = V_2;
if (!L_98)
{
goto IL_029c_1;
}
}
{
uint8_t L_99 = V_1;
if (L_99)
{
goto IL_027a_1;
}
}
{
V_1 = (uint8_t)((int32_t)30);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_100 = ___dest3;
NullCheck(L_100);
uint8_t L_101 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_102 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(((int32_t)(((RuntimeArray*)L_100)->max_length)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_101, 3)))));
V_13 = L_102;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_103 = V_13;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_104 = L_103;
V_15 = L_104;
if (!L_104)
{
goto IL_0239_1;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_105 = V_15;
NullCheck(L_105);
if (((int32_t)(((RuntimeArray*)L_105)->max_length)))
{
goto IL_023f_1;
}
}
IL_0239_1:
{
V_14 = (Il2CppChar*)((uintptr_t)0);
goto IL_024a_1;
}
IL_023f_1:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_106 = V_15;
NullCheck(L_106);
V_14 = (Il2CppChar*)((uintptr_t)((L_106)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_024a_1:
{
V_16 = 0;
goto IL_0267_1;
}
IL_024f_1:
{
Il2CppChar* L_107 = V_14;
int32_t L_108 = V_16;
Il2CppChar* L_109 = V_5;
int32_t L_110 = V_16;
int32_t L_111 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_109, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_110), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_107, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_108), 2))))) = (int16_t)L_111;
int32_t L_112 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add(L_112, 1));
}
IL_0267_1:
{
int32_t L_113 = V_16;
int32_t* L_114 = ___destPosition4;
int32_t L_115 = *((int32_t*)L_114);
if ((((int32_t)L_113) < ((int32_t)L_115)))
{
goto IL_024f_1;
}
}
{
V_15 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_116 = V_13;
___dest3 = L_116;
goto IL_001d;
}
IL_027a_1:
{
uint8_t L_117 = V_1;
V_1 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_117, 1)));
Il2CppChar* L_118 = ___pStr0;
int32_t L_119 = V_3;
int32_t L_120 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_118, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_119), 2)))));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_121 = ___dest3;
int32_t* L_122 = ___destPosition4;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_120, L_121, L_122, NULL);
V_2 = (bool)0;
int32_t L_123 = V_3;
int32_t L_124 = ((int32_t)il2cpp_codegen_add(L_123, 1));
V_3 = L_124;
___start1 = L_124;
goto IL_0070_1;
}
IL_029c_1:
{
Il2CppChar L_125 = V_9;
if ((((int32_t)L_125) > ((int32_t)((int32_t)127))))
{
goto IL_02c0_1;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_126 = ___dest3;
int32_t* L_127 = ___destPosition4;
int32_t* L_128 = ___destPosition4;
int32_t L_129 = *((int32_t*)L_128);
V_7 = L_129;
int32_t L_130 = V_7;
*((int32_t*)L_127) = (int32_t)((int32_t)il2cpp_codegen_add(L_130, 1));
int32_t L_131 = V_7;
Il2CppChar L_132 = V_9;
NullCheck(L_126);
(L_126)->SetAt(static_cast<il2cpp_array_size_t>(L_131), (Il2CppChar)L_132);
int32_t L_133 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_133, 3));
int32_t L_134 = V_3;
___start1 = L_134;
goto IL_0070_1;
}
IL_02c0_1:
{
V_10 = 1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_135 = V_0;
if (L_135)
{
goto IL_02cf_1;
}
}
{
int32_t L_136 = ___end2;
int32_t L_137 = V_3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_138 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(L_136, L_137)));
V_0 = L_138;
}
IL_02cf_1:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_139 = V_0;
Il2CppChar L_140 = V_9;
NullCheck(L_139);
(L_139)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)(uint8_t)L_140));
int32_t L_141 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_141, 3));
goto IL_032a_1;
}
IL_02db_1:
{
Il2CppChar* L_142 = ___pStr0;
int32_t L_143 = V_3;
int32_t L_144 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_142, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_143), 2)))));
int32_t L_145 = L_144;
V_9 = L_145;
if ((!(((uint32_t)L_145) == ((uint32_t)((int32_t)37)))))
{
goto IL_032e_1;
}
}
{
int32_t L_146 = V_3;
int32_t L_147 = ___end2;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_146, 2))) >= ((int32_t)L_147)))
{
goto IL_032e_1;
}
}
{
Il2CppChar* L_148 = ___pStr0;
int32_t L_149 = V_3;
int32_t L_150 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_148, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_149, 1))), 2)))));
Il2CppChar* L_151 = ___pStr0;
int32_t L_152 = V_3;
int32_t L_153 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_151, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_152, 2))), 2)))));
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
Il2CppChar L_154;
L_154 = UriHelper_EscapedAscii_mC7BE08D5B7803E83C57B8269F298B6DFA9EC5120(L_150, L_153, NULL);
V_9 = L_154;
Il2CppChar L_155 = V_9;
if ((((int32_t)L_155) == ((int32_t)((int32_t)65535))))
{
goto IL_032e_1;
}
}
{
Il2CppChar L_156 = V_9;
if ((((int32_t)L_156) < ((int32_t)((int32_t)128))))
{
goto IL_032e_1;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_157 = V_0;
int32_t L_158 = V_10;
int32_t L_159 = L_158;
V_10 = ((int32_t)il2cpp_codegen_add(L_159, 1));
Il2CppChar L_160 = V_9;
NullCheck(L_157);
(L_157)->SetAt(static_cast<il2cpp_array_size_t>(L_159), (uint8_t)((int32_t)(uint8_t)L_160));
int32_t L_161 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_161, 3));
}
IL_032a_1:
{
int32_t L_162 = V_3;
int32_t L_163 = ___end2;
if ((((int32_t)L_162) < ((int32_t)L_163)))
{
goto IL_02db_1;
}
}
IL_032e_1:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_164;
L_164 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
NullCheck(L_164);
RuntimeObject* L_165;
L_165 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* System.Object System.Text.Encoding::Clone() */, L_164);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_166 = ((Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)CastclassClass((RuntimeObject*)L_165, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var));
EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16* L_167 = (EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16*)il2cpp_codegen_object_new(EncoderReplacementFallback_tCF704844DE6CF0B44DDB3C008824393233B19A16_il2cpp_TypeInfo_var);
NullCheck(L_167);
EncoderReplacementFallback__ctor_mAE7F1C5BF4E5A1F6CF4F9E12A71A63DDD4077D18(L_167, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
NullCheck(L_166);
Encoding_set_EncoderFallback_m479A67230C286D29DAC4A9A93074708666FD483D(L_166, L_167, NULL);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_168 = L_166;
DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0* L_169 = (DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0*)il2cpp_codegen_object_new(DecoderReplacementFallback_t398AF05FDF32BD471A1678894D1F1A81DDBEE3B0_il2cpp_TypeInfo_var);
NullCheck(L_169);
DecoderReplacementFallback__ctor_mA73B628532B991FA39C2D7A1C5285CF93DC88F60(L_169, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
NullCheck(L_168);
Encoding_set_DecoderFallback_mFBC533A11D06D09A563D86497A4CF43C71C62C78(L_168, L_169, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_170 = V_0;
NullCheck(L_170);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_171 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_170)->max_length)));
V_11 = L_171;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_172 = V_0;
int32_t L_173 = V_10;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_174 = V_11;
NullCheck(L_168);
int32_t L_175;
L_175 = VirtualFuncInvoker5< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t >::Invoke(26 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_168, L_172, 0, L_173, L_174, 0);
V_12 = L_175;
int32_t L_176 = V_3;
___start1 = L_176;
Il2CppChar* L_177 = V_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_178 = ___dest3;
int32_t* L_179 = ___destPosition4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_180 = V_11;
int32_t L_181 = V_12;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_182 = V_0;
int32_t L_183 = V_10;
bool L_184 = ___isQuery10;
bool L_185 = V_4;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_MatchUTF8Sequence_m0E963F060C446C4BBBBD60E4D54CAE9A36D5A3F7(L_177, L_178, L_179, L_180, L_181, L_182, L_183, L_184, L_185, NULL);
}
IL_038d_1:
{
int32_t L_186 = V_3;
int32_t L_187 = ___end2;
if ((!(((uint32_t)L_186) == ((uint32_t)L_187))))
{
goto IL_0070_1;
}
}
{
goto IL_039a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_039a:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_188 = ___dest3;
return L_188;
}
IL_039c:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_189 = V_8;
return L_189;
}
}
// System.Void System.UriHelper::MatchUTF8Sequence(System.Char*,System.Char[],System.Int32&,System.Char[],System.Int32,System.Byte[],System.Int32,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper_MatchUTF8Sequence_m0E963F060C446C4BBBBD60E4D54CAE9A36D5A3F7 (Il2CppChar* ___pDest0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dest1, int32_t* ___destOffset2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___unescapedChars3, int32_t ___charCount4, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes5, int32_t ___byteCount6, bool ___isQuery7, bool ___iriParsing8, 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*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
int32_t V_10 = 0;
int32_t V_11 = 0;
int32_t V_12 = 0;
int32_t V_13 = 0;
int32_t G_B7_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B7_1 = NULL;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* G_B7_2 = NULL;
int32_t G_B6_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B6_1 = NULL;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* G_B6_2 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B8_2 = NULL;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* G_B8_3 = NULL;
{
V_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___unescapedChars3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0;
V_2 = L_1;
if (!L_1)
{
goto IL_000c;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_2;
NullCheck(L_2);
if (((int32_t)(((RuntimeArray*)L_2)->max_length)))
{
goto IL_0011;
}
}
IL_000c:
{
V_1 = (Il2CppChar*)((uintptr_t)0);
goto IL_001a;
}
IL_0011:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_2;
NullCheck(L_3);
V_1 = (Il2CppChar*)((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001a:
{
V_3 = 0;
goto IL_01aa;
}
IL_0021:
{
Il2CppChar* L_4 = V_1;
int32_t L_5 = V_3;
int32_t L_6 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2)))));
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Char_IsHighSurrogate_m8842F5E950FC9EAE3B20556630C2AA5CA9FEB6D4(L_6, NULL);
V_4 = L_7;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
L_8 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = ___unescapedChars3;
int32_t L_10 = V_3;
bool L_11 = V_4;
G_B6_0 = L_10;
G_B6_1 = L_9;
G_B6_2 = L_8;
if (L_11)
{
G_B7_0 = L_10;
G_B7_1 = L_9;
G_B7_2 = L_8;
goto IL_003d;
}
}
{
G_B8_0 = 1;
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
goto IL_003e;
}
IL_003d:
{
G_B8_0 = 2;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
}
IL_003e:
{
NullCheck(G_B8_3);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12;
L_12 = VirtualFuncInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32) */, G_B8_3, G_B8_2, G_B8_1, G_B8_0);
V_5 = L_12;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = V_5;
NullCheck(L_13);
V_6 = ((int32_t)(((RuntimeArray*)L_13)->max_length));
V_7 = (bool)0;
bool L_14 = ___iriParsing8;
if (!L_14)
{
goto IL_008b;
}
}
{
bool L_15 = V_4;
if (L_15)
{
goto IL_0064;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___unescapedChars3;
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));
bool L_20 = ___isQuery7;
bool L_21;
L_21 = IriHelper_CheckIriUnicodeRange_m47EF9FBD5FE075A464AE2A242FB43BEBC7C4F775(L_19, L_20, NULL);
V_7 = L_21;
goto IL_008b;
}
IL_0064:
{
V_8 = (bool)0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = ___unescapedChars3;
int32_t L_23 = V_3;
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));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = ___unescapedChars3;
int32_t L_27 = V_3;
NullCheck(L_26);
int32_t L_28 = ((int32_t)il2cpp_codegen_add(L_27, 1));
uint16_t L_29 = (uint16_t)(L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
bool L_30 = ___isQuery7;
bool L_31;
L_31 = IriHelper_CheckIriUnicodeRange_m76D54508F06B0BD021CF86889C71C44578B495FB(L_25, L_29, (&V_8), L_30, NULL);
V_7 = L_31;
goto IL_008b;
}
IL_007c:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = ___bytes5;
int32_t L_33 = V_0;
int32_t L_34 = L_33;
V_0 = ((int32_t)il2cpp_codegen_add(L_34, 1));
NullCheck(L_32);
int32_t L_35 = L_34;
uint8_t L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = ___dest1;
int32_t* L_38 = ___destOffset2;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_36, L_37, L_38, NULL);
}
IL_008b:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_39 = ___bytes5;
int32_t L_40 = V_0;
NullCheck(L_39);
int32_t L_41 = L_40;
uint8_t L_42 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_43 = V_5;
NullCheck(L_43);
int32_t L_44 = 0;
uint8_t L_45 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
if ((!(((uint32_t)L_42) == ((uint32_t)L_45))))
{
goto IL_007c;
}
}
{
V_9 = (bool)1;
V_10 = 0;
goto IL_00b6;
}
IL_009d:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_46 = ___bytes5;
int32_t L_47 = V_0;
int32_t L_48 = V_10;
NullCheck(L_46);
int32_t L_49 = ((int32_t)il2cpp_codegen_add(L_47, L_48));
uint8_t L_50 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_51 = V_5;
int32_t L_52 = V_10;
NullCheck(L_51);
int32_t L_53 = L_52;
uint8_t L_54 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_53));
if ((((int32_t)L_50) == ((int32_t)L_54)))
{
goto IL_00b0;
}
}
{
V_9 = (bool)0;
goto IL_00bc;
}
IL_00b0:
{
int32_t L_55 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add(L_55, 1));
}
IL_00b6:
{
int32_t L_56 = V_10;
int32_t L_57 = V_6;
if ((((int32_t)L_56) < ((int32_t)L_57)))
{
goto IL_009d;
}
}
IL_00bc:
{
bool L_58 = V_9;
if (!L_58)
{
goto IL_0179;
}
}
{
int32_t L_59 = V_0;
int32_t L_60 = V_6;
V_0 = ((int32_t)il2cpp_codegen_add(L_59, L_60));
bool L_61 = ___iriParsing8;
if (!L_61)
{
goto IL_013f;
}
}
{
bool L_62 = V_7;
if (L_62)
{
goto IL_00f4;
}
}
{
V_11 = 0;
goto IL_00e7;
}
IL_00d5:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_63 = V_5;
int32_t L_64 = V_11;
NullCheck(L_63);
int32_t L_65 = L_64;
uint8_t L_66 = (L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_65));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_67 = ___dest1;
int32_t* L_68 = ___destOffset2;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_66, L_67, L_68, NULL);
int32_t L_69 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add(L_69, 1));
}
IL_00e7:
{
int32_t L_70 = V_11;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_71 = V_5;
NullCheck(L_71);
if ((((int32_t)L_70) < ((int32_t)((int32_t)(((RuntimeArray*)L_71)->max_length)))))
{
goto IL_00d5;
}
}
{
goto IL_019e;
}
IL_00f4:
{
Il2CppChar* L_72 = V_1;
int32_t L_73 = V_3;
int32_t L_74 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_73), 2)))));
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_75;
L_75 = Uri_IsBidiControlCharacter_m17A486D6ED9263488C6F4B3F3EDF1BF95352765E(L_74, NULL);
if (L_75)
{
goto IL_019e;
}
}
{
Il2CppChar* L_76 = ___pDest0;
int32_t* L_77 = ___destOffset2;
int32_t* L_78 = ___destOffset2;
int32_t L_79 = *((int32_t*)L_78);
V_12 = L_79;
int32_t L_80 = V_12;
*((int32_t*)L_77) = (int32_t)((int32_t)il2cpp_codegen_add(L_80, 1));
int32_t L_81 = V_12;
Il2CppChar* L_82 = V_1;
int32_t L_83 = V_3;
int32_t L_84 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_82, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_83), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_76, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_81), 2))))) = (int16_t)L_84;
bool L_85 = V_4;
if (!L_85)
{
goto IL_019e;
}
}
{
Il2CppChar* L_86 = ___pDest0;
int32_t* L_87 = ___destOffset2;
int32_t* L_88 = ___destOffset2;
int32_t L_89 = *((int32_t*)L_88);
V_12 = L_89;
int32_t L_90 = V_12;
*((int32_t*)L_87) = (int32_t)((int32_t)il2cpp_codegen_add(L_90, 1));
int32_t L_91 = V_12;
Il2CppChar* L_92 = V_1;
int32_t L_93 = V_3;
int32_t L_94 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_93, 1))), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_91), 2))))) = (int16_t)L_94;
goto IL_019e;
}
IL_013f:
{
Il2CppChar* L_95 = ___pDest0;
int32_t* L_96 = ___destOffset2;
int32_t* L_97 = ___destOffset2;
int32_t L_98 = *((int32_t*)L_97);
V_12 = L_98;
int32_t L_99 = V_12;
*((int32_t*)L_96) = (int32_t)((int32_t)il2cpp_codegen_add(L_99, 1));
int32_t L_100 = V_12;
Il2CppChar* L_101 = V_1;
int32_t L_102 = V_3;
int32_t L_103 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_101, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_102), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_100), 2))))) = (int16_t)L_103;
bool L_104 = V_4;
if (!L_104)
{
goto IL_019e;
}
}
{
Il2CppChar* L_105 = ___pDest0;
int32_t* L_106 = ___destOffset2;
int32_t* L_107 = ___destOffset2;
int32_t L_108 = *((int32_t*)L_107);
V_12 = L_108;
int32_t L_109 = V_12;
*((int32_t*)L_106) = (int32_t)((int32_t)il2cpp_codegen_add(L_109, 1));
int32_t L_110 = V_12;
Il2CppChar* L_111 = V_1;
int32_t L_112 = V_3;
int32_t L_113 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_111, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_112, 1))), 2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_105, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_110), 2))))) = (int16_t)L_113;
goto IL_019e;
}
IL_0179:
{
V_13 = 0;
goto IL_0193;
}
IL_017e:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_114 = ___bytes5;
int32_t L_115 = V_0;
int32_t L_116 = L_115;
V_0 = ((int32_t)il2cpp_codegen_add(L_116, 1));
NullCheck(L_114);
int32_t L_117 = L_116;
uint8_t L_118 = (L_114)->GetAt(static_cast<il2cpp_array_size_t>(L_117));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_119 = ___dest1;
int32_t* L_120 = ___destOffset2;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_118, L_119, L_120, NULL);
int32_t L_121 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add(L_121, 1));
}
IL_0193:
{
int32_t L_122 = V_13;
int32_t L_123 = V_10;
if ((((int32_t)L_122) < ((int32_t)L_123)))
{
goto IL_017e;
}
}
{
goto IL_008b;
}
IL_019e:
{
bool L_124 = V_4;
if (!L_124)
{
goto IL_01a6;
}
}
{
int32_t L_125 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_125, 1));
}
IL_01a6:
{
int32_t L_126 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_126, 1));
}
IL_01aa:
{
int32_t L_127 = V_3;
int32_t L_128 = ___charCount4;
if ((((int32_t)L_127) < ((int32_t)L_128)))
{
goto IL_0021;
}
}
{
V_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
goto IL_01c5;
}
IL_01b6:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = ___bytes5;
int32_t L_130 = V_0;
int32_t L_131 = L_130;
V_0 = ((int32_t)il2cpp_codegen_add(L_131, 1));
NullCheck(L_129);
int32_t L_132 = L_131;
uint8_t L_133 = (L_129)->GetAt(static_cast<il2cpp_array_size_t>(L_132));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_134 = ___dest1;
int32_t* L_135 = ___destOffset2;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452(L_133, L_134, L_135, NULL);
}
IL_01c5:
{
int32_t L_136 = V_0;
int32_t L_137 = ___byteCount6;
if ((((int32_t)L_136) < ((int32_t)L_137)))
{
goto IL_01b6;
}
}
{
return;
}
}
// System.Void System.UriHelper::EscapeAsciiChar(System.Char,System.Char[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper_EscapeAsciiChar_m3B740B3721EF4D93E9B9DFB2F881138AF4DE4452 (Il2CppChar ___ch0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___to1, int32_t* ___pos2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___to1;
int32_t* L_1 = ___pos2;
int32_t* L_2 = ___pos2;
int32_t L_3 = *((int32_t*)L_2);
V_0 = L_3;
int32_t L_4 = V_0;
*((int32_t*)L_1) = (int32_t)((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Il2CppChar)((int32_t)37));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___to1;
int32_t* L_7 = ___pos2;
int32_t* L_8 = ___pos2;
int32_t L_9 = *((int32_t*)L_8);
V_0 = L_9;
int32_t L_10 = V_0;
*((int32_t*)L_7) = (int32_t)((int32_t)il2cpp_codegen_add(L_10, 1));
int32_t L_11 = V_0;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = ((UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_StaticFields*)il2cpp_codegen_static_fields_for(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var))->___HexUpperChars_0;
Il2CppChar L_13 = ___ch0;
NullCheck(L_12);
int32_t L_14 = ((int32_t)(((int32_t)((int32_t)L_13&((int32_t)240)))>>4));
uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Il2CppChar)L_15);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___to1;
int32_t* L_17 = ___pos2;
int32_t* L_18 = ___pos2;
int32_t L_19 = *((int32_t*)L_18);
V_0 = L_19;
int32_t L_20 = V_0;
*((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add(L_20, 1));
int32_t L_21 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = ((UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_StaticFields*)il2cpp_codegen_static_fields_for(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var))->___HexUpperChars_0;
Il2CppChar L_23 = ___ch0;
NullCheck(L_22);
int32_t L_24 = ((int32_t)((int32_t)L_23&((int32_t)15)));
uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (Il2CppChar)L_25);
return;
}
}
// System.Char System.UriHelper::EscapedAscii(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar UriHelper_EscapedAscii_mC7BE08D5B7803E83C57B8269F298B6DFA9EC5120 (Il2CppChar ___digit0, Il2CppChar ___next1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B13_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B21_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B22_0 = 0;
int32_t G_B24_0 = 0;
int32_t G_B24_1 = 0;
int32_t G_B26_0 = 0;
int32_t G_B26_1 = 0;
{
Il2CppChar L_0 = ___digit0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)48))))
{
goto IL_000a;
}
}
{
Il2CppChar L_1 = ___digit0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)57))))
{
goto IL_0024;
}
}
IL_000a:
{
Il2CppChar L_2 = ___digit0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)65))))
{
goto IL_0014;
}
}
{
Il2CppChar L_3 = ___digit0;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)70))))
{
goto IL_0024;
}
}
IL_0014:
{
Il2CppChar L_4 = ___digit0;
if ((((int32_t)L_4) < ((int32_t)((int32_t)97))))
{
goto IL_001e;
}
}
{
Il2CppChar L_5 = ___digit0;
if ((((int32_t)L_5) <= ((int32_t)((int32_t)102))))
{
goto IL_0024;
}
}
IL_001e:
{
return ((int32_t)65535);
}
IL_0024:
{
Il2CppChar L_6 = ___digit0;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)57))))
{
goto IL_003d;
}
}
{
Il2CppChar L_7 = ___digit0;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)70))))
{
goto IL_0034;
}
}
{
Il2CppChar L_8 = ___digit0;
G_B11_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)97)));
goto IL_0038;
}
IL_0034:
{
Il2CppChar L_9 = ___digit0;
G_B11_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, ((int32_t)65)));
}
IL_0038:
{
G_B13_0 = ((int32_t)il2cpp_codegen_add(G_B11_0, ((int32_t)10)));
goto IL_0041;
}
IL_003d:
{
Il2CppChar L_10 = ___digit0;
G_B13_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, ((int32_t)48)));
}
IL_0041:
{
V_0 = G_B13_0;
Il2CppChar L_11 = ___next1;
if ((((int32_t)L_11) < ((int32_t)((int32_t)48))))
{
goto IL_004c;
}
}
{
Il2CppChar L_12 = ___next1;
if ((((int32_t)L_12) <= ((int32_t)((int32_t)57))))
{
goto IL_0066;
}
}
IL_004c:
{
Il2CppChar L_13 = ___next1;
if ((((int32_t)L_13) < ((int32_t)((int32_t)65))))
{
goto IL_0056;
}
}
{
Il2CppChar L_14 = ___next1;
if ((((int32_t)L_14) <= ((int32_t)((int32_t)70))))
{
goto IL_0066;
}
}
IL_0056:
{
Il2CppChar L_15 = ___next1;
if ((((int32_t)L_15) < ((int32_t)((int32_t)97))))
{
goto IL_0060;
}
}
{
Il2CppChar L_16 = ___next1;
if ((((int32_t)L_16) <= ((int32_t)((int32_t)102))))
{
goto IL_0066;
}
}
IL_0060:
{
return ((int32_t)65535);
}
IL_0066:
{
int32_t L_17 = V_0;
Il2CppChar L_18 = ___next1;
G_B21_0 = ((int32_t)(L_17<<4));
if ((((int32_t)L_18) <= ((int32_t)((int32_t)57))))
{
G_B25_0 = ((int32_t)(L_17<<4));
goto IL_0082;
}
}
{
Il2CppChar L_19 = ___next1;
G_B22_0 = G_B21_0;
if ((((int32_t)L_19) <= ((int32_t)((int32_t)70))))
{
G_B23_0 = G_B21_0;
goto IL_0079;
}
}
{
Il2CppChar L_20 = ___next1;
G_B24_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, ((int32_t)97)));
G_B24_1 = G_B22_0;
goto IL_007d;
}
IL_0079:
{
Il2CppChar L_21 = ___next1;
G_B24_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, ((int32_t)65)));
G_B24_1 = G_B23_0;
}
IL_007d:
{
G_B26_0 = ((int32_t)il2cpp_codegen_add(G_B24_0, ((int32_t)10)));
G_B26_1 = G_B24_1;
goto IL_0086;
}
IL_0082:
{
Il2CppChar L_22 = ___next1;
G_B26_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, ((int32_t)48)));
G_B26_1 = G_B25_0;
}
IL_0086:
{
return ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(G_B26_1, G_B26_0)));
}
}
// System.Boolean System.UriHelper::IsNotSafeForUnescape(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsNotSafeForUnescape_mD11825AB8FE6E410A5C0D6D7850C607DBF697D7E (Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)31))))
{
goto IL_0012;
}
}
{
Il2CppChar L_1 = ___ch0;
if ((((int32_t)L_1) < ((int32_t)((int32_t)127))))
{
goto IL_0014;
}
}
{
Il2CppChar L_2 = ___ch0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)159))))
{
goto IL_0014;
}
}
IL_0012:
{
return (bool)1;
}
IL_0014:
{
Il2CppChar L_3 = ___ch0;
if ((((int32_t)L_3) < ((int32_t)((int32_t)59))))
{
goto IL_0025;
}
}
{
Il2CppChar L_4 = ___ch0;
if ((((int32_t)L_4) > ((int32_t)((int32_t)64))))
{
goto IL_0025;
}
}
{
Il2CppChar L_5 = ___ch0;
if ((!(((uint32_t)((int32_t)((int32_t)L_5|2))) == ((uint32_t)((int32_t)62)))))
{
goto IL_0043;
}
}
IL_0025:
{
Il2CppChar L_6 = ___ch0;
if ((((int32_t)L_6) < ((int32_t)((int32_t)35))))
{
goto IL_002f;
}
}
{
Il2CppChar L_7 = ___ch0;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)38))))
{
goto IL_0043;
}
}
IL_002f:
{
Il2CppChar L_8 = ___ch0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)43))))
{
goto IL_0043;
}
}
{
Il2CppChar L_9 = ___ch0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)44))))
{
goto IL_0043;
}
}
{
Il2CppChar L_10 = ___ch0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)47))))
{
goto IL_0043;
}
}
{
Il2CppChar L_11 = ___ch0;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)92)))))
{
goto IL_0045;
}
}
IL_0043:
{
return (bool)1;
}
IL_0045:
{
return (bool)0;
}
}
// System.Boolean System.UriHelper::IsReservedUnreservedOrHash(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsReservedUnreservedOrHash_mEAD756DAD5DB17F71960CC501BBB7CF9AB5EF74F (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84A0343BF19D2274E807E1B6505C382F81D6E3C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA1D72164D93990AA279210A8D4332B3E0A6C411);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
il2cpp_codegen_runtime_class_init_inline(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
bool L_1;
L_1 = UriHelper_IsUnreserved_m3171C456B602B4F7052B4E865F2DF04C71553797(L_0, NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
bool L_2;
L_2 = UriParser_get_ShouldUseLegacyV2Quirks_m2BDF10B430FDA291AA6962104CD838776F31D20E(NULL);
if (!L_2)
{
goto IL_0027;
}
}
{
Il2CppChar L_3 = ___c0;
NullCheck(_stringLiteral84A0343BF19D2274E807E1B6505C382F81D6E3C9);
int32_t L_4;
L_4 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(_stringLiteral84A0343BF19D2274E807E1B6505C382F81D6E3C9, L_3, NULL);
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0025;
}
}
{
Il2CppChar L_5 = ___c0;
return (bool)((((int32_t)L_5) == ((int32_t)((int32_t)35)))? 1 : 0);
}
IL_0025:
{
return (bool)1;
}
IL_0027:
{
Il2CppChar L_6 = ___c0;
NullCheck(_stringLiteralFA1D72164D93990AA279210A8D4332B3E0A6C411);
int32_t L_7;
L_7 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(_stringLiteralFA1D72164D93990AA279210A8D4332B3E0A6C411, L_6, NULL);
return (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.UriHelper::IsUnreserved(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsUnreserved_m3171C456B602B4F7052B4E865F2DF04C71553797 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70ACDB62BA3184CF43D7E26D62FB85E2340ED892);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Uri_IsAsciiLetterOrDigit_m44901130AFF9E14663C5F9E6437BE44484A82BB8(L_0, NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
bool L_2;
L_2 = UriParser_get_ShouldUseLegacyV2Quirks_m2BDF10B430FDA291AA6962104CD838776F31D20E(NULL);
if (!L_2)
{
goto IL_0023;
}
}
{
Il2CppChar L_3 = ___c0;
NullCheck(_stringLiteral70ACDB62BA3184CF43D7E26D62FB85E2340ED892);
int32_t L_4;
L_4 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(_stringLiteral70ACDB62BA3184CF43D7E26D62FB85E2340ED892, L_3, NULL);
return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0023:
{
Il2CppChar L_5 = ___c0;
NullCheck(_stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29);
int32_t L_6;
L_6 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(_stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29, L_5, NULL);
return (bool)((((int32_t)((((int32_t)L_6) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.UriHelper::Is3986Unreserved(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_Is3986Unreserved_m06ED29AEFC563547A29E1DAA6A55760ADD9FCC30 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Uri_IsAsciiLetterOrDigit_m44901130AFF9E14663C5F9E6437BE44484A82BB8(L_0, NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
Il2CppChar L_2 = ___c0;
NullCheck(_stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29);
int32_t L_3;
L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(_stringLiteral83F837B4325FC4400C4089A21E353D2D0CD0EF29, L_2, NULL);
return (bool)((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.UriHelper::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper__cctor_mEBD15B6A7F8E49B4188075DC2EF1A2956E7E3185 (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*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_5_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_5_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL);
((UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_StaticFields*)il2cpp_codegen_static_fields_for(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var))->___HexUpperChars_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_StaticFields*)il2cpp_codegen_static_fields_for(UriHelper_tDE60EC9B07466916279EC0867FD20BAFA8F55635_il2cpp_TypeInfo_var))->___HexUpperChars_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
#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 System.UriParser::get_SchemeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_Scheme_6;
return L_0;
}
}
// System.Int32 System.UriParser::get_DefaultPort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UriParser_get_DefaultPort_m38684C86B40F59960533D8F812B311ACBBEB7AA5 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Port_5;
return L_0;
}
}
// System.UriParser System.UriParser::OnNewUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* UriParser_OnNewUri_m752BC0174A2E3F7AA99F1088E1D539E5B8F7B5B2 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Void System.UriParser::InitializeAndValidate(System.Uri,System.UriFormatException&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriParser_InitializeAndValidate_m5B38A10B57DC49B1CE13F361ABD78D7269EDA886 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** ___parsingError1, const RuntimeMethod* method)
{
{
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** L_0 = ___parsingError1;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___uri0;
NullCheck(L_1);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_2;
L_2 = Uri_ParseMinimal_m24D824EC77216C64F4B8B9175915CD6C3C6DB7B5(L_1, NULL);
*((RuntimeObject**)L_0) = (RuntimeObject*)L_2;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)L_2);
return;
}
}
// System.String System.UriParser::Resolve(System.Uri,System.Uri,System.UriFormatException&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UriParser_Resolve_m7CC03524A2848FBD24BAB57CC62A19C751937182 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___relativeUri1, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** ___parsingError2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___baseUri0;
NullCheck(L_0);
bool L_1;
L_1 = Uri_get_UserDrivenParsing_mF2426529046B3DF3292A7AA2F4885F8D6591BBBD(L_0, NULL);
if (!L_1)
{
goto IL_002c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2;
Type_t* L_4;
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_4);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_5);
String_t* L_6;
L_6 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3EE5BCAF4F2ABF8C2E555D5760FA880AAB22CABF)), L_3, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_7);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriParser_Resolve_m7CC03524A2848FBD24BAB57CC62A19C751937182_RuntimeMethod_var)));
}
IL_002c:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = ___baseUri0;
NullCheck(L_8);
bool L_9;
L_9 = Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF(L_8, NULL);
if (L_9)
{
goto IL_0044;
}
}
{
String_t* L_10;
L_10 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE657126EBF76C06687ED6EAD2C714E37315C927F)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_11 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_11);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_11, L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriParser_Resolve_m7CC03524A2848FBD24BAB57CC62A19C751937182_RuntimeMethod_var)));
}
IL_0044:
{
V_0 = (String_t*)NULL;
V_1 = (bool)0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_12 = ___baseUri0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = ___relativeUri1;
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** L_14 = ___parsingError2;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15;
L_15 = Uri_ResolveHelper_m8FD2A09E63507DB5178AE3C182C323E8EA4B8752(L_12, L_13, (&V_0), (&V_1), L_14, NULL);
V_2 = L_15;
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** L_16 = ___parsingError2;
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_17 = *((UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF**)L_16);
if (!L_17)
{
goto IL_005b;
}
}
{
return (String_t*)NULL;
}
IL_005b:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_18 = V_2;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_19;
L_19 = Uri_op_Inequality_mC32A3382EF16D80BF39005BDD2AB452203D76D6E(L_18, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
if (!L_19)
{
goto IL_006b;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_20 = V_2;
NullCheck(L_20);
String_t* L_21;
L_21 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_20, NULL);
return L_21;
}
IL_006b:
{
String_t* L_22 = V_0;
return L_22;
}
}
// System.Boolean System.UriParser::IsBaseOf(System.Uri,System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_IsBaseOf_mA069069147767A29DAE21456CBFB71B31645927C (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___relativeUri1, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___baseUri0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___relativeUri1;
NullCheck(L_0);
bool L_2;
L_2 = Uri_IsBaseOfHelper_m7FA3996CDF7C53EA4A7F8FC71617559AF90C7F73(L_0, L_1, NULL);
return L_2;
}
}
// System.String System.UriParser::GetComponents(System.Uri,System.UriComponents,System.UriFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, int32_t ___components1, int32_t ___format2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___components1;
if (!((int32_t)((int32_t)L_0&((int32_t)-2147483648LL))))
{
goto IL_002c;
}
}
{
int32_t L_1 = ___components1;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-2147483648LL))))
{
goto IL_002c;
}
}
{
int32_t L_2 = ___components1;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriComponents_t92D6A11B001BCF2B97D0613FD0541637524A7A82_il2cpp_TypeInfo_var)), &L_3);
String_t* L_5;
L_5 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE13258345AC5ED7FA38D641004219DBE3A3FB56C)), NULL);
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_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7C03E97995F6950303A46C204A216735E6B4582)), L_4, L_5, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF_RuntimeMethod_var)));
}
IL_002c:
{
int32_t L_7 = ___format2;
if (!((int32_t)((int32_t)L_7&((int32_t)-4))))
{
goto IL_003d;
}
}
{
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_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF_RuntimeMethod_var)));
}
IL_003d:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = ___uri0;
NullCheck(L_9);
bool L_10;
L_10 = Uri_get_UserDrivenParsing_mF2426529046B3DF3292A7AA2F4885F8D6591BBBD(L_9, NULL);
if (!L_10)
{
goto IL_0069;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11;
Type_t* L_13;
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_13);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_14);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_14);
String_t* L_15;
L_15 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3EE5BCAF4F2ABF8C2E555D5760FA880AAB22CABF)), L_12, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_16 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_16);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_16, L_15, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF_RuntimeMethod_var)));
}
IL_0069:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = ___uri0;
NullCheck(L_17);
bool L_18;
L_18 = Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF(L_17, NULL);
if (L_18)
{
goto IL_0081;
}
}
{
String_t* L_19;
L_19 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE657126EBF76C06687ED6EAD2C714E37315C927F)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_20 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_20);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_20, L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF_RuntimeMethod_var)));
}
IL_0081:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = ___uri0;
int32_t L_22 = ___components1;
int32_t L_23 = ___format2;
NullCheck(L_21);
String_t* L_24;
L_24 = Uri_GetComponentsHelper_m83D8E4A027E180AFB34BA5290A8FF381EBCBCB75(L_21, L_22, L_23, NULL);
return L_24;
}
}
// System.Boolean System.UriParser::get_ShouldUseLegacyV2Quirks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_get_ShouldUseLegacyV2Quirks_m2BDF10B430FDA291AA6962104CD838776F31D20E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
int32_t L_0 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___s_QuirksVersion_23;
return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.UriParser::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriParser__cctor_m9E43C905DCA4EE1855EE2C0236A1FCB6075841C5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A87220AA9460BCE77166C6A721ECA99780C3E7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AB04459C95BC4FFBBDA41BF1A685753EB83D903);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56D7741BCA89552362FD24D11BB8980E3D8A444C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral587B0E053519266A1A5628C5DBE03AA33A3BBE95);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58B716FF5428F7961E1403E6D969E605D0F27EAF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D81741866E0AFB5638DF15167E9A90CDC2CF124);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5FB56C8861544146EF414DAE01766AD43F440960);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BF693870A1CA202D2EE1A186395E62B409214FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CB5CAE4A06CBA4A72564C688228877DD24B9906);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9753F194FF9C1EAC5D2E1FAADADC2E63D96E516E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3C5DC11C0F491C18EA087784CC4C662A0629733);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE9CA5A938D04349B649020FA52D9EC24C97099D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC05DD95A56B355AAD74E9CE147B236E03FF8905E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD39E208E1EDCA34C72FCD76197E0EA7CD671D2F9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE0A8A4B33338D09BDE82F544CF26FB4B56B9F98);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2);
s_Il2CppMethodInitialized = true;
}
int32_t G_B3_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 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;
{
il2cpp_codegen_runtime_class_init_inline(BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843_il2cpp_TypeInfo_var);
bool L_0 = ((BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t05EC8B983CC73B1684C1FC953D5363679FC00843_il2cpp_TypeInfo_var))->___TargetsAtLeast_Desktop_V4_5_0;
if (L_0)
{
goto IL_000a;
}
}
{
G_B3_0 = 2;
goto IL_000b;
}
IL_000a:
{
G_B3_0 = 3;
}
IL_000b:
{
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___s_QuirksVersion_23 = G_B3_0;
bool L_1;
L_1 = UriParser_get_ShouldUseLegacyV2Quirks_m2BDF10B430FDA291AA6962104CD838776F31D20E(NULL);
G_B4_0 = ((int32_t)31461245);
if (L_1)
{
G_B5_0 = ((int32_t)31461245);
goto IL_001f;
}
}
{
G_B6_0 = 0;
G_B6_1 = G_B4_0;
goto IL_0024;
}
IL_001f:
{
G_B6_0 = ((int32_t)33554432);
G_B6_1 = G_B5_0;
}
IL_0024:
{
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpSyntaxFlags_24 = ((int32_t)(((int32_t)(((int32_t)(G_B6_1|G_B6_0))|((int32_t)67108864)))|((int32_t)268435456)));
bool L_2;
L_2 = UriParser_get_ShouldUseLegacyV2Quirks_m2BDF10B430FDA291AA6962104CD838776F31D20E(NULL);
G_B7_0 = ((int32_t)4049);
if (L_2)
{
G_B8_0 = ((int32_t)4049);
goto IL_0046;
}
}
{
G_B9_0 = ((int32_t)32);
G_B9_1 = G_B7_0;
goto IL_0047;
}
IL_0046:
{
G_B9_0 = 0;
G_B9_1 = G_B8_0;
}
IL_0047:
{
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FileSyntaxFlags_25 = ((int32_t)(((int32_t)(((int32_t)(((int32_t)(((int32_t)(((int32_t)(((int32_t)(((int32_t)(((int32_t)(((int32_t)(G_B9_1|G_B9_0))|((int32_t)8192)))|((int32_t)2097152)))|((int32_t)1048576)))|((int32_t)4194304)))|((int32_t)8388608)))|((int32_t)16777216)))|((int32_t)33554432)))|((int32_t)67108864)))|((int32_t)268435456)));
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_3 = (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*)il2cpp_codegen_object_new(Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238_il2cpp_TypeInfo_var);
NullCheck(L_3);
Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388(L_3, ((int32_t)25), Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388_RuntimeMethod_var);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0), (void*)L_3);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_4 = (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*)il2cpp_codegen_object_new(Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238_il2cpp_TypeInfo_var);
NullCheck(L_4);
Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388(L_4, ((int32_t)25), Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388_RuntimeMethod_var);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1), (void*)L_4);
int32_t L_5 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpSyntaxFlags_24;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_6 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_6);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_6, _stringLiteral58B716FF5428F7961E1403E6D969E605D0F27EAF, ((int32_t)80), L_5, NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpUri_7 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpUri_7), (void*)L_6);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_7 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_8 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpUri_7;
NullCheck(L_8);
String_t* L_9;
L_9 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_8, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_10 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpUri_7;
NullCheck(L_7);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_7, L_9, L_10, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_11 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpUri_7;
NullCheck(L_11);
int32_t L_12 = L_11->___m_Flags_2;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_13 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_13);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_13, _stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2, ((int32_t)443), L_12, NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpsUri_8 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpsUri_8), (void*)L_13);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_14 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_15 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpsUri_8;
NullCheck(L_15);
String_t* L_16;
L_16 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_15, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_17 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpsUri_8;
NullCheck(L_14);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_14, L_16, L_17, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
int32_t L_18 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpSyntaxFlags_24;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_19 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_19);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_19, _stringLiteral587B0E053519266A1A5628C5DBE03AA33A3BBE95, ((int32_t)80), L_18, NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WsUri_9 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WsUri_9), (void*)L_19);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_20 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_21 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WsUri_9;
NullCheck(L_21);
String_t* L_22;
L_22 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_21, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_23 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WsUri_9;
NullCheck(L_20);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_20, L_22, L_23, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
int32_t L_24 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___HttpSyntaxFlags_24;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_25 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_25);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_25, _stringLiteral56D7741BCA89552362FD24D11BB8980E3D8A444C, ((int32_t)443), L_24, NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WssUri_10 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WssUri_10), (void*)L_25);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_26 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_27 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WssUri_10;
NullCheck(L_27);
String_t* L_28;
L_28 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_27, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_29 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___WssUri_10;
NullCheck(L_26);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_26, L_28, L_29, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_30 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_30);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_30, _stringLiteral8CB5CAE4A06CBA4A72564C688228877DD24B9906, ((int32_t)21), ((int32_t)367005533), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FtpUri_11 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FtpUri_11), (void*)L_30);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_31 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_32 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FtpUri_11;
NullCheck(L_32);
String_t* L_33;
L_33 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_32, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_34 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FtpUri_11;
NullCheck(L_31);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_31, L_33, L_34, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
int32_t L_35 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FileSyntaxFlags_25;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_36 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_36);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_36, _stringLiteralC05DD95A56B355AAD74E9CE147B236E03FF8905E, (-1), L_35, NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FileUri_12 = L_36;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FileUri_12), (void*)L_36);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_37 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_38 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FileUri_12;
NullCheck(L_38);
String_t* L_39;
L_39 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_38, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_40 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___FileUri_12;
NullCheck(L_37);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_37, L_39, L_40, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_41 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_41);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_41, _stringLiteralBE9CA5A938D04349B649020FA52D9EC24C97099D, ((int32_t)70), ((int32_t)337645405), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___GopherUri_13 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___GopherUri_13), (void*)L_41);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_42 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_43 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___GopherUri_13;
NullCheck(L_43);
String_t* L_44;
L_44 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_43, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_45 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___GopherUri_13;
NullCheck(L_42);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_42, L_44, L_45, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_46 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_46);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_46, _stringLiteralA3C5DC11C0F491C18EA087784CC4C662A0629733, ((int32_t)119), ((int32_t)337645405), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NntpUri_14 = L_46;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NntpUri_14), (void*)L_46);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_47 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_48 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NntpUri_14;
NullCheck(L_48);
String_t* L_49;
L_49 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_48, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_50 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NntpUri_14;
NullCheck(L_47);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_47, L_49, L_50, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_51 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_51);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_51, _stringLiteral5FB56C8861544146EF414DAE01766AD43F440960, (-1), ((int32_t)268435536), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NewsUri_15 = L_51;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NewsUri_15), (void*)L_51);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_52 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_53 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NewsUri_15;
NullCheck(L_53);
String_t* L_54;
L_54 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_53, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_55 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NewsUri_15;
NullCheck(L_52);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_52, L_54, L_55, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_56 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_56);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_56, _stringLiteralDE0A8A4B33338D09BDE82F544CF26FB4B56B9F98, ((int32_t)25), ((int32_t)335564796), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___MailToUri_16 = L_56;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___MailToUri_16), (void*)L_56);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_57 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_58 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___MailToUri_16;
NullCheck(L_58);
String_t* L_59;
L_59 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_58, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_60 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___MailToUri_16;
NullCheck(L_57);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_57, L_59, L_60, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_61 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NewsUri_15;
NullCheck(L_61);
int32_t L_62 = L_61->___m_Flags_2;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_63 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_63);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_63, _stringLiteral8BF693870A1CA202D2EE1A186395E62B409214FD, (-1), L_62, NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___UuidUri_17 = L_63;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___UuidUri_17), (void*)L_63);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_64 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_65 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___UuidUri_17;
NullCheck(L_65);
String_t* L_66;
L_66 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_65, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_67 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___UuidUri_17;
NullCheck(L_64);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_64, L_66, L_67, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_68 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_68);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_68, _stringLiteral5D81741866E0AFB5638DF15167E9A90CDC2CF124, ((int32_t)23), ((int32_t)337645405), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___TelnetUri_18 = L_68;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___TelnetUri_18), (void*)L_68);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_69 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_70 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___TelnetUri_18;
NullCheck(L_70);
String_t* L_71;
L_71 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_70, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_72 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___TelnetUri_18;
NullCheck(L_69);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_69, L_71, L_72, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_73 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_73);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_73, _stringLiteral9753F194FF9C1EAC5D2E1FAADADC2E63D96E516E, ((int32_t)389), ((int32_t)337645565), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___LdapUri_19 = L_73;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___LdapUri_19), (void*)L_73);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_74 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_75 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___LdapUri_19;
NullCheck(L_75);
String_t* L_76;
L_76 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_75, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_77 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___LdapUri_19;
NullCheck(L_74);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_74, L_76, L_77, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_78 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_78);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_78, _stringLiteralD39E208E1EDCA34C72FCD76197E0EA7CD671D2F9, ((int32_t)808), ((int32_t)400559737), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetTcpUri_20 = L_78;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetTcpUri_20), (void*)L_78);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_79 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_80 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetTcpUri_20;
NullCheck(L_80);
String_t* L_81;
L_81 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_80, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_82 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetTcpUri_20;
NullCheck(L_79);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_79, L_81, L_82, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_83 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_83);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_83, _stringLiteral3AB04459C95BC4FFBBDA41BF1A685753EB83D903, (-1), ((int32_t)400559729), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetPipeUri_21 = L_83;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetPipeUri_21), (void*)L_83);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_84 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_85 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetPipeUri_21;
NullCheck(L_85);
String_t* L_86;
L_86 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_85, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_87 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___NetPipeUri_21;
NullCheck(L_84);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_84, L_86, L_87, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_88 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_88);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_88, _stringLiteral19A87220AA9460BCE77166C6A721ECA99780C3E7, (-1), ((int32_t)399519697), NULL);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___VsMacrosUri_22 = L_88;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___VsMacrosUri_22), (void*)L_88);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_89 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_90 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___VsMacrosUri_22;
NullCheck(L_90);
String_t* L_91;
L_91 = UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline(L_90, NULL);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_92 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___VsMacrosUri_22;
NullCheck(L_89);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_89, L_91, L_92, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
return;
}
}
// System.UriSyntaxFlags System.UriParser::get_Flags()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UriParser_get_Flags_mBE183D7CBEEEBEC670CCF1DF21D56B354796D6C3 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Flags_2;
return L_0;
}
}
// System.Boolean System.UriParser::NotAny(System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_NotAny_mCE6CF6736414BE547215F6E44C3E1283DEA05F56 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___flags0;
bool L_1;
L_1 = UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550(__this, L_0, 0, NULL);
return L_1;
}
}
// System.Boolean System.UriParser::InFact(System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_InFact_m3C07C3050DE1E69F6B0BC816EC34AF610373E532 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___flags0;
bool L_1;
L_1 = UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550(__this, L_0, 0, NULL);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.UriParser::IsAllSet(System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_IsAllSet_mEE811F1E7BBCC34D7A32BC30A18AD5D34E690813 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___flags0;
int32_t L_1 = ___flags0;
bool L_2;
L_2 = UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550(__this, L_0, L_1, NULL);
return L_2;
}
}
// System.Boolean System.UriParser::IsFullMatch(System.UriSyntaxFlags,System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, int32_t ___expected1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___flags0;
if (!((int32_t)((int32_t)L_0&((int32_t)33554432))))
{
goto IL_0013;
}
}
{
bool L_1 = __this->___m_UpdatableFlagsUsed_4;
il2cpp_codegen_memory_barrier();
if (L_1)
{
goto IL_001c;
}
}
IL_0013:
{
int32_t L_2 = __this->___m_Flags_2;
V_0 = L_2;
goto IL_0032;
}
IL_001c:
{
int32_t L_3 = __this->___m_Flags_2;
int32_t L_4 = __this->___m_UpdatableFlags_3;
il2cpp_codegen_memory_barrier();
V_0 = ((int32_t)(((int32_t)((int32_t)L_3&((int32_t)-33554433)))|(int32_t)L_4));
}
IL_0032:
{
int32_t L_5 = V_0;
int32_t L_6 = ___flags0;
int32_t L_7 = ___expected1;
return (bool)((((int32_t)((int32_t)((int32_t)L_5&(int32_t)L_6))) == ((int32_t)L_7))? 1 : 0);
}
}
// System.Void System.UriParser::.ctor(System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriParser__ctor_m4FA54685DFA00FC6AEA73E94CD59C5FF2872E55A (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, int32_t ___flags0, 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;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___flags0;
__this->___m_Flags_2 = L_0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_Scheme_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Scheme_6), (void*)L_1);
return;
}
}
// System.UriParser System.UriParser::FindOrFetchAsUnknownV1Syntax(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* UriParser_FindOrFetchAsUnknownV1Syntax_m29D45A9BF93C7C4FC7C819658043B6E753E7F01A (String_t* ___lwrCaseScheme0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_m4DA3282515038AFB506664081150706476F29005_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* V_0 = NULL;
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* V_1 = NULL;
bool V_2 = false;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* V_3 = NULL;
{
V_0 = (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)NULL;
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_0 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
String_t* L_1 = ___lwrCaseScheme0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_3 = V_0;
if (!L_3)
{
goto IL_0015;
}
}
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_4 = V_0;
return L_4;
}
IL_0015:
{
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_5 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1;
String_t* L_6 = ___lwrCaseScheme0;
NullCheck(L_5);
bool L_7;
L_7 = Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640(L_5, L_6, (&V_0), Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_8 = V_0;
if (!L_8)
{
goto IL_0028;
}
}
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_9 = V_0;
return L_9;
}
IL_0028:
{
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_10 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
V_1 = L_10;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0072:
{// begin finally (depth: 1)
{
bool L_11 = V_2;
if (!L_11)
{
goto IL_007b;
}
}
{
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_12 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_12, NULL);
}
IL_007b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_13 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_13, (&V_2), NULL);
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_14 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1;
NullCheck(L_14);
int32_t L_15;
L_15 = Dictionary_2_get_Count_m4DA3282515038AFB506664081150706476F29005(L_14, Dictionary_2_get_Count_m4DA3282515038AFB506664081150706476F29005_RuntimeMethod_var);
if ((((int32_t)L_15) < ((int32_t)((int32_t)512))))
{
goto IL_0055_1;
}
}
{
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_16 = (Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238*)il2cpp_codegen_object_new(Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238_il2cpp_TypeInfo_var);
NullCheck(L_16);
Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388(L_16, ((int32_t)25), Dictionary_2__ctor_m2C921F34F148E4685C65C916F573572539B04388_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1), (void*)L_16);
}
IL_0055_1:
{
String_t* L_17 = ___lwrCaseScheme0;
BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* L_18 = (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C*)il2cpp_codegen_object_new(BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C_il2cpp_TypeInfo_var);
NullCheck(L_18);
BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79(L_18, L_17, (-1), ((int32_t)351342590), NULL);
V_0 = L_18;
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_19 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1;
String_t* L_20 = ___lwrCaseScheme0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_21 = V_0;
NullCheck(L_19);
Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D(L_19, L_20, L_21, Dictionary_2_set_Item_mE384A3EA91E15BCA522A8CE788251447BC6DA37D_RuntimeMethod_var);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_22 = V_0;
V_3 = L_22;
goto IL_007c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_007c:
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_23 = V_3;
return L_23;
}
}
// System.UriParser System.UriParser::GetSyntax(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* UriParser_GetSyntax_mD610CEF6784E137AF251EBC41629E2FE1D344615 (String_t* ___lwrCaseScheme0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* V_0 = NULL;
{
V_0 = (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)NULL;
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_0 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_Table_0;
String_t* L_1 = ___lwrCaseScheme0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_3 = V_0;
if (L_3)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
Dictionary_2_t42B08F27E32EDAA06A656F208F4F64F212F66238* L_4 = ((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var))->___m_TempTable_1;
String_t* L_5 = ___lwrCaseScheme0;
NullCheck(L_4);
bool L_6;
L_6 = Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640(L_4, L_5, (&V_0), Dictionary_2_TryGetValue_mF85F1C11A9C279AE1D263EDFFA0CA3DCA8335640_RuntimeMethod_var);
}
IL_0021:
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_7 = V_0;
return L_7;
}
}
// System.Boolean System.UriParser::get_IsSimple()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_get_IsSimple_m8ED850D585BA3BA0FDC239496065E6D2D973C7E5 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = UriParser_InFact_m3C07C3050DE1E69F6B0BC816EC34AF610373E532(__this, ((int32_t)131072), NULL);
return L_0;
}
}
// System.UriParser System.UriParser::InternalOnNewUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* UriParser_InternalOnNewUri_m93B84E04949FAE8FE3B6919DA9F933B682D4B2F8 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* V_0 = NULL;
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_0;
L_0 = VirtualFuncInvoker0< UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* >::Invoke(4 /* System.UriParser System.UriParser::OnNewUri() */, __this);
V_0 = L_0;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_1 = V_0;
if ((((RuntimeObject*)(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)__this) == ((RuntimeObject*)(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)L_1)))
{
goto IL_002f;
}
}
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_2 = V_0;
String_t* L_3 = __this->___m_Scheme_6;
NullCheck(L_2);
L_2->___m_Scheme_6 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___m_Scheme_6), (void*)L_3);
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_4 = V_0;
int32_t L_5 = __this->___m_Port_5;
NullCheck(L_4);
L_4->___m_Port_5 = L_5;
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_6 = V_0;
int32_t L_7 = __this->___m_Flags_2;
NullCheck(L_6);
L_6->___m_Flags_2 = L_7;
}
IL_002f:
{
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* L_8 = V_0;
return L_8;
}
}
// System.Void System.UriParser::InternalValidate(System.Uri,System.UriFormatException&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriParser_InternalValidate_m69157B3E80381F3FC104788160F2213B3FE8F39D (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___thisUri0, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** ___parsingError1, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___thisUri0;
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** L_1 = ___parsingError1;
VirtualActionInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** >::Invoke(5 /* System.Void System.UriParser::InitializeAndValidate(System.Uri,System.UriFormatException&) */, __this, L_0, L_1);
return;
}
}
// System.String System.UriParser::InternalResolve(System.Uri,System.Uri,System.UriFormatException&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UriParser_InternalResolve_mD1963080EBCF493DA78656AA5AEA458BF5138F5B (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___thisBaseUri0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uriLink1, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** ___parsingError2, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___thisBaseUri0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___uriLink1;
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** L_2 = ___parsingError2;
String_t* L_3;
L_3 = VirtualFuncInvoker3< String_t*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF** >::Invoke(6 /* System.String System.UriParser::Resolve(System.Uri,System.Uri,System.UriFormatException&) */, __this, L_0, L_1, L_2);
return L_3;
}
}
// System.Boolean System.UriParser::InternalIsBaseOf(System.Uri,System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_InternalIsBaseOf_m2624812244DF535922F1A8447E269BB8BBDD74FD (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___thisBaseUri0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uriLink1, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___thisBaseUri0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___uriLink1;
bool L_2;
L_2 = VirtualFuncInvoker2< bool, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(7 /* System.Boolean System.UriParser::IsBaseOf(System.Uri,System.Uri) */, __this, L_0, L_1);
return L_2;
}
}
// System.String System.UriParser::InternalGetComponents(System.Uri,System.UriComponents,System.UriFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UriParser_InternalGetComponents_m52F450C5283A1820D5AFD07505E5FE82D4F476B0 (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___thisUri0, int32_t ___uriComponents1, int32_t ___uriFormat2, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___thisUri0;
int32_t L_1 = ___uriComponents1;
int32_t L_2 = ___uriFormat2;
String_t* L_3;
L_3 = VirtualFuncInvoker3< String_t*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, int32_t, int32_t >::Invoke(8 /* System.String System.UriParser::GetComponents(System.Uri,System.UriComponents,System.UriFormat) */, __this, L_0, L_1, L_2);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.UriParser/BuiltInUriParser::.ctor(System.String,System.Int32,System.UriSyntaxFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79 (BuiltInUriParser_t10EEE60CFC0DBDCA1FE4288FE19E87DA97BDFF2C* __this, String_t* ___lwrCaseScheme0, int32_t ___defaultPort1, int32_t ___syntaxFlags2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___syntaxFlags2;
il2cpp_codegen_runtime_class_init_inline(UriParser_t920B0868286118827C08B08A15A9456AF6C19D81_il2cpp_TypeInfo_var);
UriParser__ctor_m4FA54685DFA00FC6AEA73E94CD59C5FF2872E55A(__this, ((int32_t)(((int32_t)((int32_t)L_0|((int32_t)131072)))|((int32_t)262144))), NULL);
String_t* L_1 = ___lwrCaseScheme0;
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)__this)->___m_Scheme_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)__this)->___m_Scheme_6), (void*)L_1);
int32_t L_2 = ___defaultPort1;
((UriParser_t920B0868286118827C08B08A15A9456AF6C19D81*)__this)->___m_Port_5 = L_2;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.DomainNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_ParseCanonicalName_m12865C6C2427B6ED804747CB1117D0B80E332F4D (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, 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*)&_stringLiteral5FC154761871B7293BA5D77E57A16A71359FE4E5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E0521A25097CB5A78F7F365E792997998243F33);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = (String_t*)NULL;
int32_t L_0 = ___end2;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
goto IL_0047;
}
IL_0008:
{
String_t* L_1 = ___str0;
int32_t L_2 = V_1;
NullCheck(L_1);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
if ((((int32_t)L_3) < ((int32_t)((int32_t)65))))
{
goto IL_0035;
}
}
{
String_t* L_4 = ___str0;
int32_t L_5 = V_1;
NullCheck(L_4);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL);
if ((((int32_t)L_6) > ((int32_t)((int32_t)90))))
{
goto IL_0035;
}
}
{
String_t* L_7 = ___str0;
int32_t L_8 = ___start1;
int32_t L_9 = ___end2;
int32_t L_10 = ___start1;
NullCheck(L_7);
String_t* L_11;
L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(L_11);
String_t* L_13;
L_13 = String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E(L_11, L_12, NULL);
V_0 = L_13;
goto IL_004b;
}
IL_0035:
{
String_t* L_14 = ___str0;
int32_t L_15 = V_1;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)58)))))
{
goto IL_0043;
}
}
{
int32_t L_17 = V_1;
___end2 = L_17;
}
IL_0043:
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
}
IL_0047:
{
int32_t L_19 = V_1;
int32_t L_20 = ___start1;
if ((((int32_t)L_19) >= ((int32_t)L_20)))
{
goto IL_0008;
}
}
IL_004b:
{
String_t* L_21 = V_0;
if (L_21)
{
goto IL_0059;
}
}
{
String_t* L_22 = ___str0;
int32_t L_23 = ___start1;
int32_t L_24 = ___end2;
int32_t L_25 = ___start1;
NullCheck(L_22);
String_t* L_26;
L_26 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_22, L_23, ((int32_t)il2cpp_codegen_subtract(L_24, L_25)), NULL);
V_0 = L_26;
}
IL_0059:
{
String_t* L_27 = V_0;
bool L_28;
L_28 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_27, _stringLiteral5FC154761871B7293BA5D77E57A16A71359FE4E5, NULL);
if (L_28)
{
goto IL_0073;
}
}
{
String_t* L_29 = V_0;
bool L_30;
L_30 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_29, _stringLiteral9E0521A25097CB5A78F7F365E792997998243F33, NULL);
if (!L_30)
{
goto IL_007c;
}
}
IL_0073:
{
bool* L_31 = ___loopback3;
*((int8_t*)L_31) = (int8_t)1;
return _stringLiteral5FC154761871B7293BA5D77E57A16A71359FE4E5;
}
IL_007c:
{
String_t* L_32 = V_0;
return L_32;
}
}
// System.Boolean System.DomainNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValid_m9E1909F6CA353F469ACF623BCBE1E3B545164752 (Il2CppChar* ___name0, uint16_t ___pos1, int32_t* ___returnedEnd2, bool* ___notCanonical3, bool ___notImplicitFile4, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar V_3 = 0x0;
{
Il2CppChar* L_0 = ___name0;
uint16_t L_1 = ___pos1;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2))));
Il2CppChar* L_2 = V_0;
V_1 = L_2;
Il2CppChar* L_3 = ___name0;
int32_t* L_4 = ___returnedEnd2;
int32_t L_5 = *((int32_t*)L_4);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2))));
goto IL_0042;
}
IL_0013:
{
Il2CppChar* L_6 = V_1;
int32_t L_7 = *((uint16_t*)L_6);
V_3 = L_7;
Il2CppChar L_8 = V_3;
if ((((int32_t)L_8) <= ((int32_t)((int32_t)127))))
{
goto IL_001d;
}
}
{
return (bool)0;
}
IL_001d:
{
Il2CppChar L_9 = V_3;
if ((((int32_t)L_9) == ((int32_t)((int32_t)47))))
{
goto IL_003a;
}
}
{
Il2CppChar L_10 = V_3;
if ((((int32_t)L_10) == ((int32_t)((int32_t)92))))
{
goto IL_003a;
}
}
{
bool L_11 = ___notImplicitFile4;
if (!L_11)
{
goto IL_003e;
}
}
{
Il2CppChar L_12 = V_3;
if ((((int32_t)L_12) == ((int32_t)((int32_t)58))))
{
goto IL_003a;
}
}
{
Il2CppChar L_13 = V_3;
if ((((int32_t)L_13) == ((int32_t)((int32_t)63))))
{
goto IL_003a;
}
}
{
Il2CppChar L_14 = V_3;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)35)))))
{
goto IL_003e;
}
}
IL_003a:
{
Il2CppChar* L_15 = V_1;
V_2 = L_15;
goto IL_0046;
}
IL_003e:
{
Il2CppChar* L_16 = V_1;
V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, 2));
}
IL_0042:
{
Il2CppChar* L_17 = V_1;
Il2CppChar* L_18 = V_2;
if ((!(((uintptr_t)L_17) >= ((uintptr_t)L_18))))
{
goto IL_0013;
}
}
IL_0046:
{
Il2CppChar* L_19 = V_2;
Il2CppChar* L_20 = V_0;
if ((!(((uintptr_t)L_19) == ((uintptr_t)L_20))))
{
goto IL_004c;
}
}
{
return (bool)0;
}
IL_004c:
{
Il2CppChar* L_21 = V_0;
V_1 = L_21;
goto IL_005a;
}
IL_0050:
{
Il2CppChar* L_22 = V_1;
int32_t L_23 = *((uint16_t*)L_22);
if ((((int32_t)L_23) == ((int32_t)((int32_t)46))))
{
goto IL_005e;
}
}
{
Il2CppChar* L_24 = V_1;
V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, 2));
}
IL_005a:
{
Il2CppChar* L_25 = V_1;
Il2CppChar* L_26 = V_2;
if ((!(((uintptr_t)L_25) >= ((uintptr_t)L_26))))
{
goto IL_0050;
}
}
IL_005e:
{
Il2CppChar* L_27 = V_0;
Il2CppChar* L_28 = V_1;
if ((((intptr_t)L_27) == ((intptr_t)L_28)))
{
goto IL_007b;
}
}
{
Il2CppChar* L_29 = V_1;
Il2CppChar* L_30 = V_0;
if ((((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_29, (intptr_t)L_30))/2)))) > ((int64_t)((int64_t)((int32_t)63)))))
{
goto IL_007b;
}
}
{
Il2CppChar* L_31 = V_0;
Il2CppChar* L_32 = L_31;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, 2));
int32_t L_33 = *((uint16_t*)L_32);
bool* L_34 = ___notCanonical3;
bool L_35;
L_35 = DomainNameHelper_IsASCIILetterOrDigit_mFAF590F20333B1D787428537FCD1CFF3993FE1F6(L_33, L_34, NULL);
if (L_35)
{
goto IL_008d;
}
}
IL_007b:
{
return (bool)0;
}
IL_007d:
{
Il2CppChar* L_36 = V_0;
Il2CppChar* L_37 = L_36;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, 2));
int32_t L_38 = *((uint16_t*)L_37);
bool* L_39 = ___notCanonical3;
bool L_40;
L_40 = DomainNameHelper_IsValidDomainLabelCharacter_m957B15160BE378C49B6E25CC4F0D99BBA1FE06C6(L_38, L_39, NULL);
if (L_40)
{
goto IL_008d;
}
}
{
return (bool)0;
}
IL_008d:
{
Il2CppChar* L_41 = V_0;
Il2CppChar* L_42 = V_1;
if ((!(((uintptr_t)L_41) >= ((uintptr_t)L_42))))
{
goto IL_007d;
}
}
{
Il2CppChar* L_43 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_43, 2));
Il2CppChar* L_44 = V_0;
Il2CppChar* L_45 = V_2;
if ((!(((uintptr_t)L_44) >= ((uintptr_t)L_45))))
{
goto IL_004c;
}
}
{
int32_t* L_46 = ___returnedEnd2;
Il2CppChar* L_47 = V_2;
Il2CppChar* L_48 = ___name0;
*((int32_t*)L_46) = (int32_t)((int32_t)(uint16_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_47, (intptr_t)L_48))/2))));
return (bool)1;
}
}
// System.Boolean System.DomainNameHelper::IsValidByIri(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidByIri_mE5772C5B7528885976ACB5AB11881B79A410CE24 (Il2CppChar* ___name0, uint16_t ___pos1, int32_t* ___returnedEnd2, bool* ___notCanonical3, bool ___notImplicitFile4, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
bool V_5 = false;
int32_t G_B27_0 = 0;
{
Il2CppChar* L_0 = ___name0;
uint16_t L_1 = ___pos1;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2))));
Il2CppChar* L_2 = V_0;
V_1 = L_2;
Il2CppChar* L_3 = ___name0;
int32_t* L_4 = ___returnedEnd2;
int32_t L_5 = *((int32_t*)L_4);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2))));
V_3 = 0;
goto IL_0043;
}
IL_0015:
{
Il2CppChar* L_6 = V_1;
int32_t L_7 = *((uint16_t*)L_6);
V_4 = L_7;
Il2CppChar L_8 = V_4;
if ((((int32_t)L_8) == ((int32_t)((int32_t)47))))
{
goto IL_003b;
}
}
{
Il2CppChar L_9 = V_4;
if ((((int32_t)L_9) == ((int32_t)((int32_t)92))))
{
goto IL_003b;
}
}
{
bool L_10 = ___notImplicitFile4;
if (!L_10)
{
goto IL_003f;
}
}
{
Il2CppChar L_11 = V_4;
if ((((int32_t)L_11) == ((int32_t)((int32_t)58))))
{
goto IL_003b;
}
}
{
Il2CppChar L_12 = V_4;
if ((((int32_t)L_12) == ((int32_t)((int32_t)63))))
{
goto IL_003b;
}
}
{
Il2CppChar L_13 = V_4;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)35)))))
{
goto IL_003f;
}
}
IL_003b:
{
Il2CppChar* L_14 = V_1;
V_2 = L_14;
goto IL_0047;
}
IL_003f:
{
Il2CppChar* L_15 = V_1;
V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, 2));
}
IL_0043:
{
Il2CppChar* L_16 = V_1;
Il2CppChar* L_17 = V_2;
if ((!(((uintptr_t)L_16) >= ((uintptr_t)L_17))))
{
goto IL_0015;
}
}
IL_0047:
{
Il2CppChar* L_18 = V_2;
Il2CppChar* L_19 = V_0;
if ((!(((uintptr_t)L_18) == ((uintptr_t)L_19))))
{
goto IL_004d;
}
}
{
return (bool)0;
}
IL_004d:
{
Il2CppChar* L_20 = V_0;
V_1 = L_20;
V_3 = 0;
V_5 = (bool)0;
goto IL_0098;
}
IL_0056:
{
Il2CppChar* L_21 = V_1;
int32_t L_22 = *((uint16_t*)L_21);
if ((((int32_t)L_22) == ((int32_t)((int32_t)46))))
{
goto IL_009c;
}
}
{
Il2CppChar* L_23 = V_1;
int32_t L_24 = *((uint16_t*)L_23);
if ((((int32_t)L_24) == ((int32_t)((int32_t)12290))))
{
goto IL_009c;
}
}
{
Il2CppChar* L_25 = V_1;
int32_t L_26 = *((uint16_t*)L_25);
if ((((int32_t)L_26) == ((int32_t)((int32_t)65294))))
{
goto IL_009c;
}
}
{
Il2CppChar* L_27 = V_1;
int32_t L_28 = *((uint16_t*)L_27);
if ((((int32_t)L_28) == ((int32_t)((int32_t)65377))))
{
goto IL_009c;
}
}
{
int32_t L_29 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1));
Il2CppChar* L_30 = V_1;
int32_t L_31 = *((uint16_t*)L_30);
if ((((int32_t)L_31) <= ((int32_t)((int32_t)255))))
{
goto IL_0088;
}
}
{
int32_t L_32 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_32, 1));
}
IL_0088:
{
Il2CppChar* L_33 = V_1;
int32_t L_34 = *((uint16_t*)L_33);
if ((((int32_t)L_34) < ((int32_t)((int32_t)160))))
{
goto IL_0094;
}
}
{
V_5 = (bool)1;
}
IL_0094:
{
Il2CppChar* L_35 = V_1;
V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, 2));
}
IL_0098:
{
Il2CppChar* L_36 = V_1;
Il2CppChar* L_37 = V_2;
if ((!(((uintptr_t)L_36) >= ((uintptr_t)L_37))))
{
goto IL_0056;
}
}
IL_009c:
{
Il2CppChar* L_38 = V_0;
Il2CppChar* L_39 = V_1;
if ((((intptr_t)L_38) == ((intptr_t)L_39)))
{
goto IL_00c7;
}
}
{
bool L_40 = V_5;
if (L_40)
{
goto IL_00a7;
}
}
{
int32_t L_41 = V_3;
G_B27_0 = L_41;
goto IL_00aa;
}
IL_00a7:
{
int32_t L_42 = V_3;
G_B27_0 = ((int32_t)il2cpp_codegen_add(L_42, 4));
}
IL_00aa:
{
if ((((int32_t)G_B27_0) > ((int32_t)((int32_t)63))))
{
goto IL_00c7;
}
}
{
Il2CppChar* L_43 = V_0;
Il2CppChar* L_44 = L_43;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_44, 2));
int32_t L_45 = *((uint16_t*)L_44);
if ((((int32_t)L_45) >= ((int32_t)((int32_t)160))))
{
goto IL_00e4;
}
}
{
Il2CppChar* L_46 = V_0;
int32_t L_47 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_46, 2)));
bool* L_48 = ___notCanonical3;
bool L_49;
L_49 = DomainNameHelper_IsASCIILetterOrDigit_mFAF590F20333B1D787428537FCD1CFF3993FE1F6(L_47, L_48, NULL);
if (L_49)
{
goto IL_00e4;
}
}
IL_00c7:
{
return (bool)0;
}
IL_00c9:
{
Il2CppChar* L_50 = V_0;
Il2CppChar* L_51 = L_50;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_51, 2));
int32_t L_52 = *((uint16_t*)L_51);
if ((((int32_t)L_52) >= ((int32_t)((int32_t)160))))
{
goto IL_00e4;
}
}
{
Il2CppChar* L_53 = V_0;
int32_t L_54 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_53, 2)));
bool* L_55 = ___notCanonical3;
bool L_56;
L_56 = DomainNameHelper_IsValidDomainLabelCharacter_m957B15160BE378C49B6E25CC4F0D99BBA1FE06C6(L_54, L_55, NULL);
if (L_56)
{
goto IL_00e4;
}
}
{
return (bool)0;
}
IL_00e4:
{
Il2CppChar* L_57 = V_0;
Il2CppChar* L_58 = V_1;
if ((!(((uintptr_t)L_57) >= ((uintptr_t)L_58))))
{
goto IL_00c9;
}
}
{
Il2CppChar* L_59 = V_0;
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_59, 2));
Il2CppChar* L_60 = V_0;
Il2CppChar* L_61 = V_2;
if ((!(((uintptr_t)L_60) >= ((uintptr_t)L_61))))
{
goto IL_004d;
}
}
{
int32_t* L_62 = ___returnedEnd2;
Il2CppChar* L_63 = V_2;
Il2CppChar* L_64 = ___name0;
*((int32_t*)L_62) = (int32_t)((int32_t)(uint16_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_63, (intptr_t)L_64))/2))));
return (bool)1;
}
}
// System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_m14CEBD0BD7B1BF46F8806E4EB5BB1901F7F29E2A (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
Il2CppChar V_10 = 0x0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
String_t* G_B4_0 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B5_0 = NULL;
int32_t G_B24_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B25_1 = 0;
{
V_0 = (String_t*)NULL;
Il2CppChar* L_0 = ___hostname0;
int32_t L_1 = ___start1;
int32_t L_2 = ___end2;
bool* L_3 = ___allAscii3;
String_t* L_4;
L_4 = DomainNameHelper_IdnEquivalent_mD8EBF17C7A0A50FFAA03EAA9CA737899C9A0881E(L_0, L_1, L_2, L_3, (&V_0), NULL);
V_1 = L_4;
String_t* L_5 = V_1;
if (!L_5)
{
goto IL_00f0;
}
}
{
bool* L_6 = ___allAscii3;
int32_t L_7 = *((uint8_t*)L_6);
if (L_7)
{
goto IL_001b;
}
}
{
String_t* L_8 = V_0;
G_B4_0 = L_8;
goto IL_001c;
}
IL_001b:
{
String_t* L_9 = V_1;
G_B4_0 = L_9;
}
IL_001c:
{
String_t* L_10 = G_B4_0;
V_3 = L_10;
String_t* L_11 = V_3;
V_2 = (Il2CppChar*)((uintptr_t)L_11);
Il2CppChar* L_12 = V_2;
G_B5_0 = L_10;
if (!L_12)
{
G_B6_0 = L_10;
goto IL_002c;
}
}
{
Il2CppChar* L_13 = V_2;
int32_t L_14;
L_14 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, L_14));
G_B6_0 = G_B5_0;
}
IL_002c:
{
NullCheck(G_B6_0);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(G_B6_0, NULL);
V_4 = L_15;
V_5 = 0;
V_6 = 0;
V_7 = (bool)0;
V_8 = (bool)0;
V_9 = (bool)0;
}
IL_0042:
{
V_7 = (bool)0;
V_8 = (bool)0;
V_9 = (bool)0;
int32_t L_16 = V_6;
V_5 = L_16;
goto IL_00ab;
}
IL_0051:
{
Il2CppChar* L_17 = V_2;
int32_t L_18 = V_5;
int32_t L_19 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 2)))));
V_10 = L_19;
bool L_20 = V_8;
if (L_20)
{
goto IL_007f;
}
}
{
V_8 = (bool)1;
int32_t L_21 = V_5;
int32_t L_22 = V_4;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_21, 3))) >= ((int32_t)L_22)))
{
goto IL_007f;
}
}
{
Il2CppChar* L_23 = V_2;
int32_t L_24 = V_5;
bool L_25;
L_25 = DomainNameHelper_IsIdnAce_mC429C00971921E7C357FA9A57D14AAB9A0CF3566(L_23, L_24, NULL);
if (!L_25)
{
goto IL_007f;
}
}
{
int32_t L_26 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_26, 4));
V_7 = (bool)1;
goto IL_00ab;
}
IL_007f:
{
Il2CppChar L_27 = V_10;
if ((((int32_t)L_27) == ((int32_t)((int32_t)46))))
{
goto IL_00a0;
}
}
{
Il2CppChar L_28 = V_10;
if ((((int32_t)L_28) == ((int32_t)((int32_t)12290))))
{
goto IL_00a0;
}
}
{
Il2CppChar L_29 = V_10;
if ((((int32_t)L_29) == ((int32_t)((int32_t)65294))))
{
goto IL_00a0;
}
}
{
Il2CppChar L_30 = V_10;
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)65377)))))
{
goto IL_00a5;
}
}
IL_00a0:
{
V_9 = (bool)1;
goto IL_00b1;
}
IL_00a5:
{
int32_t L_31 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_31, 1));
}
IL_00ab:
{
int32_t L_32 = V_5;
int32_t L_33 = V_4;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0051;
}
}
IL_00b1:
{
bool L_34 = V_7;
if (!L_34)
{
goto IL_00d6;
}
}
try
{// begin try (depth: 1)
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_35 = (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81*)il2cpp_codegen_object_new(IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
NullCheck(L_35);
IdnMapping__ctor_m1128F0904A9B3F8CD81CF613CAF8AEC9455FC8AE(L_35, NULL);
Il2CppChar* L_36 = V_2;
int32_t L_37 = V_6;
int32_t L_38 = V_5;
int32_t L_39 = V_6;
String_t* L_40;
L_40 = String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2(NULL, L_36, L_37, ((int32_t)il2cpp_codegen_subtract(L_38, L_39)), NULL);
NullCheck(L_35);
String_t* L_41;
L_41 = IdnMapping_GetUnicode_mCC150BC9761DF474E752484693DC567FA21406E7(L_35, L_40, NULL);
bool* L_42 = ___atLeastOneValidIdn4;
*((int8_t*)L_42) = (int8_t)1;
goto IL_00ec;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00d3;
}
throw e;
}
CATCH_00d3:
{// begin catch(System.ArgumentException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00d6;
}// end catch (depth: 1)
IL_00d6:
{
int32_t L_43 = V_5;
bool L_44 = V_9;
G_B23_0 = L_43;
if (L_44)
{
G_B24_0 = L_43;
goto IL_00df;
}
}
{
G_B25_0 = 0;
G_B25_1 = G_B23_0;
goto IL_00e0;
}
IL_00df:
{
G_B25_0 = 1;
G_B25_1 = G_B24_0;
}
IL_00e0:
{
V_6 = ((int32_t)il2cpp_codegen_add(G_B25_1, G_B25_0));
int32_t L_45 = V_6;
int32_t L_46 = V_4;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_0042;
}
}
IL_00ec:
{
V_3 = (String_t*)NULL;
goto IL_00f4;
}
IL_00f0:
{
bool* L_47 = ___atLeastOneValidIdn4;
*((int8_t*)L_47) = (int8_t)0;
}
IL_00f4:
{
String_t* L_48 = V_1;
return L_48;
}
}
// System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_mD8EBF17C7A0A50FFAA03EAA9CA737899C9A0881E (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, String_t** ___bidiStrippedHost4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* V_3 = NULL;
String_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
V_0 = (String_t*)NULL;
int32_t L_0 = ___end2;
int32_t L_1 = ___start1;
if ((((int32_t)L_0) > ((int32_t)L_1)))
{
goto IL_0008;
}
}
{
String_t* L_2 = V_0;
return L_2;
}
IL_0008:
{
int32_t L_3 = ___start1;
V_1 = L_3;
bool* L_4 = ___allAscii3;
*((int8_t*)L_4) = (int8_t)1;
goto IL_0023;
}
IL_000f:
{
Il2CppChar* L_5 = ___hostname0;
int32_t L_6 = V_1;
int32_t L_7 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2)))));
if ((((int32_t)L_7) <= ((int32_t)((int32_t)127))))
{
goto IL_001f;
}
}
{
bool* L_8 = ___allAscii3;
*((int8_t*)L_8) = (int8_t)0;
goto IL_0027;
}
IL_001f:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0023:
{
int32_t L_10 = V_1;
int32_t L_11 = ___end2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_000f;
}
}
IL_0027:
{
bool* L_12 = ___allAscii3;
int32_t L_13 = *((uint8_t*)L_12);
if (!L_13)
{
goto IL_0042;
}
}
{
Il2CppChar* L_14 = ___hostname0;
int32_t L_15 = ___start1;
int32_t L_16 = ___end2;
int32_t L_17 = ___start1;
String_t* L_18;
L_18 = String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2(NULL, L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
V_2 = L_18;
String_t* L_19 = V_2;
if (L_19)
{
goto IL_003b;
}
}
{
return (String_t*)NULL;
}
IL_003b:
{
String_t* L_20 = V_2;
NullCheck(L_20);
String_t* L_21;
L_21 = String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2(L_20, NULL);
return L_21;
}
IL_0042:
{
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_22 = (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81*)il2cpp_codegen_object_new(IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
NullCheck(L_22);
IdnMapping__ctor_m1128F0904A9B3F8CD81CF613CAF8AEC9455FC8AE(L_22, NULL);
V_3 = L_22;
String_t** L_23 = ___bidiStrippedHost4;
Il2CppChar* L_24 = ___hostname0;
int32_t L_25 = ___start1;
int32_t L_26 = ___end2;
int32_t L_27 = ___start1;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
String_t* L_28;
L_28 = Uri_StripBidiControlCharacter_m259E2D3AA84B455ADD63DFBC4EC802241E4317FA(L_24, L_25, ((int32_t)il2cpp_codegen_subtract(L_26, L_27)), NULL);
*((RuntimeObject**)L_23) = (RuntimeObject*)L_28;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_23, (void*)(RuntimeObject*)L_28);
}
try
{// begin try (depth: 1)
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_29 = V_3;
String_t** L_30 = ___bidiStrippedHost4;
String_t* L_31 = *((String_t**)L_30);
NullCheck(L_29);
String_t* L_32;
L_32 = IdnMapping_GetAscii_mA4A89B67014507D490722D7C6BDFA5E19A3E4635(L_29, L_31, NULL);
V_4 = L_32;
goto IL_0073;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0062;
}
throw e;
}
CATCH_0062:
{// begin catch(System.ArgumentException)
String_t* L_33;
L_33 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5A563DA7422888CC118DE9B7F5BE8C5EF1BFB50)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_34 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_34);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_34, L_33, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DomainNameHelper_IdnEquivalent_mD8EBF17C7A0A50FFAA03EAA9CA737899C9A0881E_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0073:
{
String_t* L_35 = V_4;
return L_35;
}
}
// System.Boolean System.DomainNameHelper::IsIdnAce(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_m063EE4431000F1D566D2D62B3BBB947A00CDA8EF (String_t* ___input0, int32_t ___index1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___input0;
int32_t L_1 = ___index1;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)120)))))
{
goto IL_0034;
}
}
{
String_t* L_3 = ___input0;
int32_t L_4 = ___index1;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)110)))))
{
goto IL_0034;
}
}
{
String_t* L_6 = ___input0;
int32_t L_7 = ___index1;
NullCheck(L_6);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, ((int32_t)il2cpp_codegen_add(L_7, 2)), NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
String_t* L_9 = ___input0;
int32_t L_10 = ___index1;
NullCheck(L_9);
Il2CppChar L_11;
L_11 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_9, ((int32_t)il2cpp_codegen_add(L_10, 3)), NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
return (bool)1;
}
IL_0034:
{
return (bool)0;
}
}
// System.Boolean System.DomainNameHelper::IsIdnAce(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_mC429C00971921E7C357FA9A57D14AAB9A0CF3566 (Il2CppChar* ___input0, int32_t ___index1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___input0;
int32_t L_1 = ___index1;
int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2)))));
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)120)))))
{
goto IL_0034;
}
}
{
Il2CppChar* L_3 = ___input0;
int32_t L_4 = ___index1;
int32_t L_5 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_4, 1))), 2)))));
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)110)))))
{
goto IL_0034;
}
}
{
Il2CppChar* L_6 = ___input0;
int32_t L_7 = ___index1;
int32_t L_8 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_7, 2))), 2)))));
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
Il2CppChar* L_9 = ___input0;
int32_t L_10 = ___index1;
int32_t L_11 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_10, 3))), 2)))));
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
return (bool)1;
}
IL_0034:
{
return (bool)0;
}
}
// System.String System.DomainNameHelper::UnicodeEquivalent(System.String,System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_mD229718EC61E3ECBFA7AF5C894D22ADEEDE1B4ED (String_t* ___idnHost0, Il2CppChar* ___hostname1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_0 = (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81*)il2cpp_codegen_object_new(IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
NullCheck(L_0);
IdnMapping__ctor_m1128F0904A9B3F8CD81CF613CAF8AEC9455FC8AE(L_0, NULL);
V_0 = L_0;
}
try
{// begin try (depth: 1)
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_1 = V_0;
String_t* L_2 = ___idnHost0;
NullCheck(L_1);
String_t* L_3;
L_3 = IdnMapping_GetUnicode_mCC150BC9761DF474E752484693DC567FA21406E7(L_1, L_2, NULL);
V_2 = L_3;
goto IL_0022;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0010;
}
throw e;
}
CATCH_0010:
{// begin catch(System.ArgumentException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0013;
}// end catch (depth: 1)
IL_0013:
{
V_1 = (bool)1;
Il2CppChar* L_4 = ___hostname1;
int32_t L_5 = ___start2;
int32_t L_6 = ___end3;
String_t* L_7;
L_7 = DomainNameHelper_UnicodeEquivalent_m62B17C161795C1C6AC76D49A3FB50B16693CC9DB(L_4, L_5, L_6, (&V_1), (&V_1), NULL);
return L_7;
}
IL_0022:
{
String_t* L_8 = V_2;
return L_8;
}
}
// System.String System.DomainNameHelper::UnicodeEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_m62B17C161795C1C6AC76D49A3FB50B16693CC9DB (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
Il2CppChar V_11 = 0x0;
String_t* V_12 = NULL;
bool V_13 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B35_0 = 0;
int32_t G_B34_0 = 0;
int32_t G_B36_0 = 0;
int32_t G_B36_1 = 0;
{
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_0 = (IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81*)il2cpp_codegen_object_new(IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81_il2cpp_TypeInfo_var);
NullCheck(L_0);
IdnMapping__ctor_m1128F0904A9B3F8CD81CF613CAF8AEC9455FC8AE(L_0, NULL);
V_0 = L_0;
bool* L_1 = ___allAscii3;
*((int8_t*)L_1) = (int8_t)1;
bool* L_2 = ___atLeastOneValidIdn4;
*((int8_t*)L_2) = (int8_t)0;
V_1 = (String_t*)NULL;
int32_t L_3 = ___end2;
int32_t L_4 = ___start1;
if ((((int32_t)L_3) > ((int32_t)L_4)))
{
goto IL_0015;
}
}
{
String_t* L_5 = V_1;
return L_5;
}
IL_0015:
{
Il2CppChar* L_6 = ___hostname0;
int32_t L_7 = ___start1;
int32_t L_8 = ___end2;
int32_t L_9 = ___start1;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
String_t* L_10;
L_10 = Uri_StripBidiControlCharacter_m259E2D3AA84B455ADD63DFBC4EC802241E4317FA(L_6, L_7, ((int32_t)il2cpp_codegen_subtract(L_8, L_9)), NULL);
V_2 = L_10;
V_3 = (String_t*)NULL;
V_4 = 0;
V_5 = 0;
String_t* L_11 = V_2;
NullCheck(L_11);
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
V_6 = L_12;
V_7 = (bool)1;
V_8 = (bool)0;
V_9 = (bool)0;
V_10 = (bool)0;
}
IL_003c:
{
V_7 = (bool)1;
V_8 = (bool)0;
V_9 = (bool)0;
V_10 = (bool)0;
int32_t L_13 = V_4;
V_5 = L_13;
goto IL_00b6;
}
IL_004e:
{
String_t* L_14 = V_2;
int32_t L_15 = V_5;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
V_11 = L_16;
bool L_17 = V_9;
if (L_17)
{
goto IL_007a;
}
}
{
V_9 = (bool)1;
int32_t L_18 = V_5;
int32_t L_19 = V_6;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_18, 3))) >= ((int32_t)L_19)))
{
goto IL_007a;
}
}
{
Il2CppChar L_20 = V_11;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)120)))))
{
goto IL_007a;
}
}
{
String_t* L_21 = V_2;
int32_t L_22 = V_5;
bool L_23;
L_23 = DomainNameHelper_IsIdnAce_m063EE4431000F1D566D2D62B3BBB947A00CDA8EF(L_21, L_22, NULL);
if (!L_23)
{
goto IL_007a;
}
}
{
V_8 = (bool)1;
}
IL_007a:
{
bool L_24 = V_7;
if (!L_24)
{
goto IL_008a;
}
}
{
Il2CppChar L_25 = V_11;
if ((((int32_t)L_25) <= ((int32_t)((int32_t)127))))
{
goto IL_008a;
}
}
{
V_7 = (bool)0;
bool* L_26 = ___allAscii3;
*((int8_t*)L_26) = (int8_t)0;
}
IL_008a:
{
Il2CppChar L_27 = V_11;
if ((((int32_t)L_27) == ((int32_t)((int32_t)46))))
{
goto IL_00ab;
}
}
{
Il2CppChar L_28 = V_11;
if ((((int32_t)L_28) == ((int32_t)((int32_t)12290))))
{
goto IL_00ab;
}
}
{
Il2CppChar L_29 = V_11;
if ((((int32_t)L_29) == ((int32_t)((int32_t)65294))))
{
goto IL_00ab;
}
}
{
Il2CppChar L_30 = V_11;
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)65377)))))
{
goto IL_00b0;
}
}
IL_00ab:
{
V_10 = (bool)1;
goto IL_00bc;
}
IL_00b0:
{
int32_t L_31 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_31, 1));
}
IL_00b6:
{
int32_t L_32 = V_5;
int32_t L_33 = V_6;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_004e;
}
}
IL_00bc:
{
bool L_34 = V_7;
if (L_34)
{
goto IL_010d;
}
}
{
String_t* L_35 = V_2;
int32_t L_36 = V_4;
int32_t L_37 = V_5;
int32_t L_38 = V_4;
NullCheck(L_35);
String_t* L_39;
L_39 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_35, L_36, ((int32_t)il2cpp_codegen_subtract(L_37, L_38)), NULL);
V_12 = L_39;
}
try
{// begin try (depth: 1)
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_40 = V_0;
String_t* L_41 = V_12;
NullCheck(L_40);
String_t* L_42;
L_42 = IdnMapping_GetAscii_mA4A89B67014507D490722D7C6BDFA5E19A3E4635(L_40, L_41, NULL);
V_12 = L_42;
goto IL_00ec;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00db;
}
throw e;
}
CATCH_00db:
{// begin catch(System.ArgumentException)
String_t* L_43;
L_43 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5A563DA7422888CC118DE9B7F5BE8C5EF1BFB50)), NULL);
UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF* L_44 = (UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_t387F900BAB603EDDDFBCA6FFB8BC85E621A2EFDF_il2cpp_TypeInfo_var)));
NullCheck(L_44);
UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3(L_44, L_43, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DomainNameHelper_UnicodeEquivalent_m62B17C161795C1C6AC76D49A3FB50B16693CC9DB_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00ec:
{
String_t* L_45 = V_3;
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_46 = V_0;
String_t* L_47 = V_12;
NullCheck(L_46);
String_t* L_48;
L_48 = IdnMapping_GetUnicode_mCC150BC9761DF474E752484693DC567FA21406E7(L_46, L_47, NULL);
String_t* L_49;
L_49 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_45, L_48, NULL);
V_3 = L_49;
bool L_50 = V_10;
if (!L_50)
{
goto IL_0177;
}
}
{
String_t* L_51 = V_3;
String_t* L_52;
L_52 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_51, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, NULL);
V_3 = L_52;
goto IL_0177;
}
IL_010d:
{
V_13 = (bool)0;
bool L_53 = V_8;
if (!L_53)
{
goto IL_014a;
}
}
try
{// begin try (depth: 1)
{
String_t* L_54 = V_3;
IdnMapping_t96B54B2E8909296A1E713A0FF115B1B82FB7CE81* L_55 = V_0;
String_t* L_56 = V_2;
int32_t L_57 = V_4;
int32_t L_58 = V_5;
int32_t L_59 = V_4;
NullCheck(L_56);
String_t* L_60;
L_60 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_56, L_57, ((int32_t)il2cpp_codegen_subtract(L_58, L_59)), NULL);
NullCheck(L_55);
String_t* L_61;
L_61 = IdnMapping_GetUnicode_mCC150BC9761DF474E752484693DC567FA21406E7(L_55, L_60, NULL);
String_t* L_62;
L_62 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_54, L_61, NULL);
V_3 = L_62;
bool L_63 = V_10;
if (!L_63)
{
goto IL_013e_1;
}
}
{
String_t* L_64 = V_3;
String_t* L_65;
L_65 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_64, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, NULL);
V_3 = L_65;
}
IL_013e_1:
{
V_13 = (bool)1;
bool* L_66 = ___atLeastOneValidIdn4;
*((int8_t*)L_66) = (int8_t)1;
goto IL_014a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0147;
}
throw e;
}
CATCH_0147:
{// begin catch(System.ArgumentException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_014a;
}// end catch (depth: 1)
IL_014a:
{
bool L_67 = V_13;
if (L_67)
{
goto IL_0177;
}
}
{
String_t* L_68 = V_3;
String_t* L_69 = V_2;
int32_t L_70 = V_4;
int32_t L_71 = V_5;
int32_t L_72 = V_4;
NullCheck(L_69);
String_t* L_73;
L_73 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_69, L_70, ((int32_t)il2cpp_codegen_subtract(L_71, L_72)), NULL);
NullCheck(L_73);
String_t* L_74;
L_74 = String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2(L_73, NULL);
String_t* L_75;
L_75 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_68, L_74, NULL);
V_3 = L_75;
bool L_76 = V_10;
if (!L_76)
{
goto IL_0177;
}
}
{
String_t* L_77 = V_3;
String_t* L_78;
L_78 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_77, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, NULL);
V_3 = L_78;
}
IL_0177:
{
int32_t L_79 = V_5;
bool L_80 = V_10;
G_B34_0 = L_79;
if (L_80)
{
G_B35_0 = L_79;
goto IL_0180;
}
}
{
G_B36_0 = 0;
G_B36_1 = G_B34_0;
goto IL_0181;
}
IL_0180:
{
G_B36_0 = 1;
G_B36_1 = G_B35_0;
}
IL_0181:
{
V_4 = ((int32_t)il2cpp_codegen_add(G_B36_1, G_B36_0));
int32_t L_81 = V_4;
int32_t L_82 = V_6;
if ((((int32_t)L_81) < ((int32_t)L_82)))
{
goto IL_003c;
}
}
{
String_t* L_83 = V_3;
return L_83;
}
}
// System.Boolean System.DomainNameHelper::IsASCIILetterOrDigit(System.Char,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsASCIILetterOrDigit_mFAF590F20333B1D787428537FCD1CFF3993FE1F6 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___character0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)97))))
{
goto IL_000a;
}
}
{
Il2CppChar L_1 = ___character0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)122))))
{
goto IL_0014;
}
}
IL_000a:
{
Il2CppChar L_2 = ___character0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
{
goto IL_0016;
}
}
{
Il2CppChar L_3 = ___character0;
if ((((int32_t)L_3) > ((int32_t)((int32_t)57))))
{
goto IL_0016;
}
}
IL_0014:
{
return (bool)1;
}
IL_0016:
{
Il2CppChar L_4 = ___character0;
if ((((int32_t)L_4) < ((int32_t)((int32_t)65))))
{
goto IL_0025;
}
}
{
Il2CppChar L_5 = ___character0;
if ((((int32_t)L_5) > ((int32_t)((int32_t)90))))
{
goto IL_0025;
}
}
{
bool* L_6 = ___notCanonical1;
*((int8_t*)L_6) = (int8_t)1;
return (bool)1;
}
IL_0025:
{
return (bool)0;
}
}
// System.Boolean System.DomainNameHelper::IsValidDomainLabelCharacter(System.Char,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidDomainLabelCharacter_m957B15160BE378C49B6E25CC4F0D99BBA1FE06C6 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___character0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)97))))
{
goto IL_000a;
}
}
{
Il2CppChar L_1 = ___character0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)122))))
{
goto IL_001e;
}
}
IL_000a:
{
Il2CppChar L_2 = ___character0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
{
goto IL_0014;
}
}
{
Il2CppChar L_3 = ___character0;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)57))))
{
goto IL_001e;
}
}
IL_0014:
{
Il2CppChar L_4 = ___character0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)45))))
{
goto IL_001e;
}
}
{
Il2CppChar L_5 = ___character0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)95)))))
{
goto IL_0020;
}
}
IL_001e:
{
return (bool)1;
}
IL_0020:
{
Il2CppChar L_6 = ___character0;
if ((((int32_t)L_6) < ((int32_t)((int32_t)65))))
{
goto IL_002f;
}
}
{
Il2CppChar L_7 = ___character0;
if ((((int32_t)L_7) > ((int32_t)((int32_t)90))))
{
goto IL_002f;
}
}
{
bool* L_8 = ___notCanonical1;
*((int8_t*)L_8) = (int8_t)1;
return (bool)1;
}
IL_002f:
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.UncNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UncNameHelper_ParseCanonicalName_mB07DBCB21F6996E1A2BC9D4D4DD427AE0E5D36E2 (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___str0;
int32_t L_1 = ___start1;
int32_t L_2 = ___end2;
bool* L_3 = ___loopback3;
String_t* L_4;
L_4 = DomainNameHelper_ParseCanonicalName_m12865C6C2427B6ED804747CB1117D0B80E332F4D(L_0, L_1, L_2, L_3, NULL);
return L_4;
}
}
// System.Boolean System.UncNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UncNameHelper_IsValid_m677F95E73B0278AC062F862BEA6BE646048127D4 (Il2CppChar* ___name0, uint16_t ___start1, int32_t* ___returnedEnd2, bool ___notImplicitFile3, 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;
}
uint16_t V_0 = 0;
bool V_1 = false;
uint16_t V_2 = 0;
{
int32_t* L_0 = ___returnedEnd2;
int32_t L_1 = *((int32_t*)L_0);
V_0 = (uint16_t)((int32_t)(uint16_t)L_1);
uint16_t L_2 = ___start1;
uint16_t L_3 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
V_1 = (bool)0;
uint16_t L_4 = ___start1;
V_2 = L_4;
goto IL_00a8;
}
IL_0013:
{
Il2CppChar* L_5 = ___name0;
uint16_t L_6 = V_2;
int32_t L_7 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2)))));
if ((((int32_t)L_7) == ((int32_t)((int32_t)47))))
{
goto IL_004d;
}
}
{
Il2CppChar* L_8 = ___name0;
uint16_t L_9 = V_2;
int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_9), 2)))));
if ((((int32_t)L_10) == ((int32_t)((int32_t)92))))
{
goto IL_004d;
}
}
{
bool L_11 = ___notImplicitFile3;
if (!L_11)
{
goto IL_0051;
}
}
{
Il2CppChar* L_12 = ___name0;
uint16_t L_13 = V_2;
int32_t L_14 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_13), 2)))));
if ((((int32_t)L_14) == ((int32_t)((int32_t)58))))
{
goto IL_004d;
}
}
{
Il2CppChar* L_15 = ___name0;
uint16_t L_16 = V_2;
int32_t L_17 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2)))));
if ((((int32_t)L_17) == ((int32_t)((int32_t)63))))
{
goto IL_004d;
}
}
{
Il2CppChar* L_18 = ___name0;
uint16_t L_19 = V_2;
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 ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)35)))))
{
goto IL_0051;
}
}
IL_004d:
{
uint16_t L_21 = V_2;
V_0 = L_21;
goto IL_00af;
}
IL_0051:
{
Il2CppChar* L_22 = ___name0;
uint16_t L_23 = V_2;
int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_23), 2)))));
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)46)))))
{
goto IL_0063;
}
}
{
uint16_t L_25 = V_2;
V_2 = (uint16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, 1)));
goto IL_00af;
}
IL_0063:
{
Il2CppChar* L_26 = ___name0;
uint16_t L_27 = V_2;
int32_t L_28 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_26, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_27), 2)))));
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_29;
L_29 = Char_IsLetter_m8AA5C1E0E24784F5B681E5A7DB6A28D11DC7E678(L_28, NULL);
if (L_29)
{
goto IL_0087;
}
}
{
Il2CppChar* L_30 = ___name0;
uint16_t L_31 = V_2;
int32_t L_32 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_31), 2)))));
if ((((int32_t)L_32) == ((int32_t)((int32_t)45))))
{
goto IL_0087;
}
}
{
Il2CppChar* L_33 = ___name0;
uint16_t L_34 = V_2;
int32_t L_35 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_34), 2)))));
if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)95)))))
{
goto IL_008b;
}
}
IL_0087:
{
V_1 = (bool)1;
goto IL_00a3;
}
IL_008b:
{
Il2CppChar* L_36 = ___name0;
uint16_t L_37 = V_2;
int32_t L_38 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_36, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_37), 2)))));
if ((((int32_t)L_38) < ((int32_t)((int32_t)48))))
{
goto IL_00a1;
}
}
{
Il2CppChar* L_39 = ___name0;
uint16_t L_40 = V_2;
int32_t L_41 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_39, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_40), 2)))));
if ((((int32_t)L_41) <= ((int32_t)((int32_t)57))))
{
goto IL_00a3;
}
}
IL_00a1:
{
return (bool)0;
}
IL_00a3:
{
uint16_t L_42 = V_2;
V_2 = (uint16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, 1)));
}
IL_00a8:
{
uint16_t L_43 = V_2;
uint16_t L_44 = V_0;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_0013;
}
}
IL_00af:
{
bool L_45 = V_1;
if (L_45)
{
goto IL_0169;
}
}
{
return (bool)0;
}
IL_00b7:
{
Il2CppChar* L_46 = ___name0;
uint16_t L_47 = V_2;
int32_t L_48 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_46, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_47), 2)))));
if ((((int32_t)L_48) == ((int32_t)((int32_t)47))))
{
goto IL_00f1;
}
}
{
Il2CppChar* L_49 = ___name0;
uint16_t L_50 = V_2;
int32_t L_51 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_50), 2)))));
if ((((int32_t)L_51) == ((int32_t)((int32_t)92))))
{
goto IL_00f1;
}
}
{
bool L_52 = ___notImplicitFile3;
if (!L_52)
{
goto IL_00f5;
}
}
{
Il2CppChar* L_53 = ___name0;
uint16_t L_54 = V_2;
int32_t L_55 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_53, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_54), 2)))));
if ((((int32_t)L_55) == ((int32_t)((int32_t)58))))
{
goto IL_00f1;
}
}
{
Il2CppChar* L_56 = ___name0;
uint16_t L_57 = V_2;
int32_t L_58 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_56, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_57), 2)))));
if ((((int32_t)L_58) == ((int32_t)((int32_t)63))))
{
goto IL_00f1;
}
}
{
Il2CppChar* L_59 = ___name0;
uint16_t L_60 = V_2;
int32_t L_61 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_59, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_60), 2)))));
if ((!(((uint32_t)L_61) == ((uint32_t)((int32_t)35)))))
{
goto IL_00f5;
}
}
IL_00f1:
{
uint16_t L_62 = V_2;
V_0 = L_62;
goto IL_0170;
}
IL_00f5:
{
Il2CppChar* L_63 = ___name0;
uint16_t L_64 = V_2;
int32_t L_65 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_63, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_64), 2)))));
if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)46)))))
{
goto IL_011c;
}
}
{
bool L_66 = V_1;
if (!L_66)
{
goto IL_0116;
}
}
{
uint16_t L_67 = V_2;
uint16_t L_68 = ___start1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_67, 1))) < ((int32_t)L_68)))
{
goto IL_0118;
}
}
{
Il2CppChar* L_69 = ___name0;
uint16_t L_70 = V_2;
int32_t L_71 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_69, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, 1))), 2)))));
if ((!(((uint32_t)L_71) == ((uint32_t)((int32_t)46)))))
{
goto IL_0118;
}
}
IL_0116:
{
return (bool)0;
}
IL_0118:
{
V_1 = (bool)0;
goto IL_0164;
}
IL_011c:
{
Il2CppChar* L_72 = ___name0;
uint16_t L_73 = V_2;
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 ((((int32_t)L_74) == ((int32_t)((int32_t)45))))
{
goto IL_0132;
}
}
{
Il2CppChar* L_75 = ___name0;
uint16_t L_76 = V_2;
int32_t L_77 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_76), 2)))));
if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)95)))))
{
goto IL_0137;
}
}
IL_0132:
{
bool L_78 = V_1;
if (L_78)
{
goto IL_0164;
}
}
{
return (bool)0;
}
IL_0137:
{
Il2CppChar* L_79 = ___name0;
uint16_t L_80 = V_2;
int32_t L_81 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_79, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_80), 2)))));
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_82;
L_82 = Char_IsLetter_m8AA5C1E0E24784F5B681E5A7DB6A28D11DC7E678(L_81, NULL);
if (L_82)
{
goto IL_015b;
}
}
{
Il2CppChar* L_83 = ___name0;
uint16_t L_84 = V_2;
int32_t L_85 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_83, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_84), 2)))));
if ((((int32_t)L_85) < ((int32_t)((int32_t)48))))
{
goto IL_0162;
}
}
{
Il2CppChar* L_86 = ___name0;
uint16_t L_87 = V_2;
int32_t L_88 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_87), 2)))));
if ((((int32_t)L_88) > ((int32_t)((int32_t)57))))
{
goto IL_0162;
}
}
IL_015b:
{
bool L_89 = V_1;
if (L_89)
{
goto IL_0164;
}
}
{
V_1 = (bool)1;
goto IL_0164;
}
IL_0162:
{
return (bool)0;
}
IL_0164:
{
uint16_t L_90 = V_2;
V_2 = (uint16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_90, 1)));
}
IL_0169:
{
uint16_t L_91 = V_2;
uint16_t L_92 = V_0;
if ((((int32_t)L_91) < ((int32_t)L_92)))
{
goto IL_00b7;
}
}
IL_0170:
{
uint16_t L_93 = V_2;
uint16_t L_94 = ___start1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_93, 1))) < ((int32_t)L_94)))
{
goto IL_0185;
}
}
{
Il2CppChar* L_95 = ___name0;
uint16_t L_96 = V_2;
int32_t L_97 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_96, 1))), 2)))));
if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)46)))))
{
goto IL_0185;
}
}
{
V_1 = (bool)1;
}
IL_0185:
{
bool L_98 = V_1;
if (L_98)
{
goto IL_018a;
}
}
{
return (bool)0;
}
IL_018a:
{
int32_t* L_99 = ___returnedEnd2;
uint16_t L_100 = V_0;
*((int32_t*)L_99) = (int32_t)L_100;
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
#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
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Multicast(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* currentDelegate = reinterpret_cast<IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ioares0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Open(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ioares0, method);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Closed(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ioares0, method);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenStaticInvoker(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
InvokerActionInvoker1< IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* >::Invoke(__this->___method_ptr_0, method, NULL, ___ioares0);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_ClosedStaticInvoker(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ioares0);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenVirtual(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___ioares0);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenInterface(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___ioares0);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenGenericVirtual(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
GenericVirtualActionInvoker0::Invoke(method, ___ioares0);
}
void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenGenericInterface(IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker0::Invoke(method, ___ioares0);
}
// System.Void System.IOAsyncCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncCallback__ctor_m58A7C732444005CB72C5B352096C2DB252A6F113 (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Open;
else
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_Multicast;
}
// System.Void System.IOAsyncCallback::Invoke(System.IOAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2 (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ioares0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.IOAsyncResult
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_pinvoke(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke& marshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL);
}
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_pinvoke_back(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke& marshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.IOAsyncResult
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_pinvoke_cleanup(IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.IOAsyncResult
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_com(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com& marshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL);
}
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_com_back(const IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com& marshaled, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374& unmarshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.IOAsyncResult
IL2CPP_EXTERN_C void IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshal_com_cleanup(IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374_marshaled_com& marshaled)
{
}
// System.Void System.IOAsyncResult::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult__ctor_mAA7211B9E6FDF23D0012354FEE350B6B5EB786F4 (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void System.IOAsyncResult::Init(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult_Init_m6580DFCCB89EF7CFF91F7040C62ECC3811A3A98D (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___async_callback0, RuntimeObject* ___async_state1, const RuntimeMethod* method)
{
{
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_0 = ___async_callback0;
__this->___async_callback_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___async_callback_0), (void*)L_0);
RuntimeObject* L_1 = ___async_state1;
__this->___async_state_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___async_state_1), (void*)L_1);
__this->___completed_4 = (bool)0;
__this->___completed_synchronously_3 = (bool)0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_2 = __this->___wait_handle_2;
if (!L_2)
{
goto IL_0030;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_3 = __this->___wait_handle_2;
NullCheck(L_3);
bool L_4;
L_4 = EventWaitHandle_Reset_m84719BED571BDAAEE27EE05F57295C7107A74DE6(L_3, NULL);
}
IL_0030:
{
return;
}
}
// System.Void System.IOAsyncResult::.ctor(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult__ctor_mCDC93C97872E9DAB6A1D9F27C1FA14DDFC6A400D (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___async_callback0, RuntimeObject* ___async_state1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_0 = ___async_callback0;
__this->___async_callback_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___async_callback_0), (void*)L_0);
RuntimeObject* L_1 = ___async_state1;
__this->___async_state_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___async_state_1), (void*)L_1);
return;
}
}
// System.AsyncCallback System.IOAsyncResult::get_AsyncCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* IOAsyncResult_get_AsyncCallback_mC6150F5FC2CEE8FDC22EACD9B9BC72544FE801CC (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, const RuntimeMethod* method)
{
{
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_0 = __this->___async_callback_0;
return L_0;
}
}
// System.Object System.IOAsyncResult::get_AsyncState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IOAsyncResult_get_AsyncState_m8F7E705BB64B9C38D1F9EE7C746AAD46DDF1616A (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___async_state_1;
return L_0;
}
}
// System.Threading.WaitHandle System.IOAsyncResult::get_AsyncWaitHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* IOAsyncResult_get_AsyncWaitHandle_mA0350FACA25DDD429DBE840269101E8168DCD42E (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* V_0 = NULL;
bool V_1 = false;
WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* V_2 = NULL;
{
V_0 = __this;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002e:
{// begin finally (depth: 1)
{
bool L_0 = V_1;
if (!L_0)
{
goto IL_0037;
}
}
{
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_1 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_1, NULL);
}
IL_0037:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_2 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_2, (&V_1), NULL);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_3 = __this->___wait_handle_2;
if (L_3)
{
goto IL_0025_1;
}
}
{
bool L_4 = __this->___completed_4;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_5 = (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)il2cpp_codegen_object_new(ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
NullCheck(L_5);
ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE(L_5, L_4, NULL);
__this->___wait_handle_2 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___wait_handle_2), (void*)L_5);
}
IL_0025_1:
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_6 = __this->___wait_handle_2;
V_2 = L_6;
goto IL_0038;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0038:
{
WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* L_7 = V_2;
return L_7;
}
}
// System.Boolean System.IOAsyncResult::get_CompletedSynchronously()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IOAsyncResult_get_CompletedSynchronously_m26279BC02AFFE83009A7EEABFFF58EEB2D12CD24 (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___completed_synchronously_3;
return L_0;
}
}
// System.Void System.IOAsyncResult::set_CompletedSynchronously(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult_set_CompletedSynchronously_m29ECF9F6388C1F9A12AF83DF8CD19D9FFB4B4D6D (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___completed_synchronously_3 = L_0;
return;
}
}
// System.Boolean System.IOAsyncResult::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IOAsyncResult_get_IsCompleted_m0EAD0BE09029EE4AFC303B76DC5E1EBE4269BEE8 (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___completed_4;
return L_0;
}
}
// System.Void System.IOAsyncResult::set_IsCompleted(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult_set_IsCompleted_m72D907352B8AC32DF47864E4F4EDFADEC825A6F9 (IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* __this, bool ___value0, const RuntimeMethod* method)
{
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* V_0 = NULL;
bool V_1 = false;
{
bool L_0 = ___value0;
__this->___completed_4 = L_0;
V_0 = __this;
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;
}
}
{
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0035:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
bool L_4 = ___value0;
if (!L_4)
{
goto IL_002a_1;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_5 = __this->___wait_handle_2;
if (!L_5)
{
goto IL_002a_1;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_6 = __this->___wait_handle_2;
NullCheck(L_6);
bool L_7;
L_7 = EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D(L_6, NULL);
}
IL_002a_1:
{
goto IL_0036;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0036:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.IOSelectorJob
IL2CPP_EXTERN_C void IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshal_pinvoke(const IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31& unmarshaled, IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_pinvoke& marshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL);
}
IL2CPP_EXTERN_C void IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshal_pinvoke_back(const IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_pinvoke& marshaled, IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31& unmarshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.IOSelectorJob
IL2CPP_EXTERN_C void IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshal_pinvoke_cleanup(IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.IOSelectorJob
IL2CPP_EXTERN_C void IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshal_com(const IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31& unmarshaled, IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_com& marshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL);
}
IL2CPP_EXTERN_C void IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshal_com_back(const IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_com& marshaled, IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31& unmarshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.IOSelectorJob
IL2CPP_EXTERN_C void IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshal_com_cleanup(IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31_marshaled_com& marshaled)
{
}
// System.Void System.IOSelectorJob::.ctor(System.IOOperation,System.IOAsyncCallback,System.IOAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob__ctor_mA67864E470C66B78F683571EBD6A6315D9247DE1 (IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31* __this, int32_t ___operation0, IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___callback1, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___state2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___operation0;
__this->___operation_0 = L_0;
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* L_1 = ___callback1;
__this->___callback_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___callback_1), (void*)L_1);
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_2 = ___state2;
__this->___state_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___state_2), (void*)L_2);
return;
}
}
// System.Void System.IOSelectorJob::System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem_m896BBDBDBB91D3771569204789FEF8E700123D79 (IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31* __this, const RuntimeMethod* method)
{
{
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* L_0 = __this->___callback_1;
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_1 = __this->___state_2;
NullCheck(L_0);
IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_inline(L_0, L_1, NULL);
return;
}
}
// System.Void System.IOSelectorJob::System.Threading.IThreadPoolWorkItem.MarkAborted(System.Threading.ThreadAbortException)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob_System_Threading_IThreadPoolWorkItem_MarkAborted_m3F59E62D7927340D04264BAA081F7FAE0533C9CE (IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31* __this, ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4* ___tae0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IOSelectorJob::MarkDisposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob_MarkDisposed_mBCCE13D70B97BB7AE46D976AE207DF642C4531F0 (IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31* __this, const RuntimeMethod* method)
{
{
IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* L_0 = __this->___state_2;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(8 /* System.Void System.IOAsyncResult::CompleteDisposed() */, L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IOSelector::Add(System.IntPtr,System.IOSelectorJob)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelector_Add_m170DDEAFEE849601BFE7ADBCFD630A7F2BA96057 (intptr_t ___handle0, IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31* ___job1, const RuntimeMethod* method)
{
typedef void (*IOSelector_Add_m170DDEAFEE849601BFE7ADBCFD630A7F2BA96057_ftn) (intptr_t, IOSelectorJob_t988E3C2831A98169EFDB178A08E8548A4E90DD31*);
using namespace il2cpp::icalls;
((IOSelector_Add_m170DDEAFEE849601BFE7ADBCFD630A7F2BA96057_ftn)ves_icall_System_IOSelector_Add) (___handle0, ___job1);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.UriTypeConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriTypeConverter__ctor_m02CB01E1305031BE5A45FB54601E520748B6EDB6 (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, const RuntimeMethod* method)
{
{
TypeConverter__ctor_mA5B1882A94D0491297B903563E8B03D75B2F67A2(__this, NULL);
return;
}
}
// System.Boolean System.UriTypeConverter::CanConvert(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriTypeConverter_CanConvert_m970377ED30FF1B6875CCDA64FDC87EFE7D381DE3 (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
bool L_3;
L_3 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, L_2, NULL);
if (!L_3)
{
goto IL_0014;
}
}
{
return (bool)1;
}
IL_0014:
{
Type_t* L_4 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_6;
L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL);
bool L_7;
L_7 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_4, L_6, NULL);
if (!L_7)
{
goto IL_0028;
}
}
{
return (bool)1;
}
IL_0028:
{
return (bool)0;
}
}
// System.Boolean System.UriTypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriTypeConverter_CanConvertFrom_mD5D419C5B80FC3A5D175655A6278E54FC80928E7 (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, RuntimeObject* ___context0, Type_t* ___sourceType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___sourceType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, (Type_t*)NULL, NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0B9CA6E4B359F5055F5C4732939C6CF17D4D5CEA)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriTypeConverter_CanConvertFrom_mD5D419C5B80FC3A5D175655A6278E54FC80928E7_RuntimeMethod_var)));
}
IL_0014:
{
Type_t* L_3 = ___sourceType1;
bool L_4;
L_4 = UriTypeConverter_CanConvert_m970377ED30FF1B6875CCDA64FDC87EFE7D381DE3(__this, L_3, NULL);
return L_4;
}
}
// System.Boolean System.UriTypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriTypeConverter_CanConvertTo_m119145C6F2FDE221E99ACDAF0EF723003388E8EE (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, RuntimeObject* ___context0, Type_t* ___destinationType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___destinationType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, (Type_t*)NULL, NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
return (bool)0;
}
IL_000b:
{
Type_t* L_2 = ___destinationType1;
bool L_3;
L_3 = UriTypeConverter_CanConvert_m970377ED30FF1B6875CCDA64FDC87EFE7D381DE3(__this, L_2, NULL);
return L_3;
}
}
// System.Object System.UriTypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UriTypeConverter_ConvertFrom_m079712540B92F2B6AF1780A5793F36EA77CA32ED (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___value2;
if (L_0)
{
goto IL_0013;
}
}
{
String_t* L_1;
L_1 = Locale_GetText_mB5E9ECC1E9AAA230D967810285D49F3A0BCD99D6(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral523A7FD96B12FF5B6C3751047058C6D7D1ACA3CB)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_2);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_2, L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriTypeConverter_ConvertFrom_m079712540B92F2B6AF1780A5793F36EA77CA32ED_RuntimeMethod_var)));
}
IL_0013:
{
RuntimeObject* L_3 = ___context0;
RuntimeObject* L_4 = ___value2;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
bool L_6;
L_6 = VirtualFuncInvoker2< bool, RuntimeObject*, Type_t* >::Invoke(4 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, L_3, L_5);
if (L_6)
{
goto IL_0032;
}
}
{
String_t* L_7;
L_7 = Locale_GetText_mB5E9ECC1E9AAA230D967810285D49F3A0BCD99D6(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral523A7FD96B12FF5B6C3751047058C6D7D1ACA3CB)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_8 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_8);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriTypeConverter_ConvertFrom_m079712540B92F2B6AF1780A5793F36EA77CA32ED_RuntimeMethod_var)));
}
IL_0032:
{
RuntimeObject* L_9 = ___value2;
if (!((Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)IsInstClass((RuntimeObject*)L_9, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var)))
{
goto IL_003c;
}
}
{
RuntimeObject* L_10 = ___value2;
return L_10;
}
IL_003c:
{
RuntimeObject* L_11 = ___value2;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_11, String_t_il2cpp_TypeInfo_var));
String_t* L_12 = V_0;
if (!L_12)
{
goto IL_005d;
}
}
{
String_t* L_13 = V_0;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
if (!L_14)
{
goto IL_0055;
}
}
{
return NULL;
}
IL_0055:
{
String_t* L_15 = V_0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
NullCheck(L_16);
Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_16, L_15, 0, NULL);
return L_16;
}
IL_005d:
{
RuntimeObject* L_17 = ___context0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_18 = ___culture1;
RuntimeObject* L_19 = ___value2;
RuntimeObject* L_20;
L_20 = TypeConverter_ConvertFrom_mDE2D27BF8934184429496B39ED63BD3702868774(__this, L_17, L_18, L_19, NULL);
return L_20;
}
}
// System.Object System.UriTypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UriTypeConverter_ConvertTo_mA975FACF630714EBEA487EFC770EA0742756A764 (UriTypeConverter_t8EB2E0688007D4CA2E699C90EDA3CC88A9D9E4D3* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, Type_t* ___destinationType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL;
{
RuntimeObject* L_0 = ___context0;
Type_t* L_1 = ___destinationType3;
bool L_2;
L_2 = VirtualFuncInvoker2< bool, RuntimeObject*, Type_t* >::Invoke(5 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) */, __this, L_0, L_1);
if (L_2)
{
goto IL_001b;
}
}
{
String_t* L_3;
L_3 = Locale_GetText_mB5E9ECC1E9AAA230D967810285D49F3A0BCD99D6(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D91AAC2C6FB094296F989862225A9BA6B227573)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_4 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_4);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_4, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriTypeConverter_ConvertTo_mA975FACF630714EBEA487EFC770EA0742756A764_RuntimeMethod_var)));
}
IL_001b:
{
RuntimeObject* L_5 = ___value2;
V_0 = ((Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)IsInstClass((RuntimeObject*)L_5, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var));
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = V_0;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Uri_op_Inequality_mC32A3382EF16D80BF39005BDD2AB452203D76D6E(L_6, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
if (!L_7)
{
goto IL_006a;
}
}
{
Type_t* L_8 = ___destinationType3;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_10;
L_10 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_9, NULL);
bool L_11;
L_11 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_8, L_10, NULL);
if (!L_11)
{
goto IL_0045;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_12 = V_0;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12);
return L_13;
}
IL_0045:
{
Type_t* L_14 = ___destinationType3;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast<intptr_t> (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_16;
L_16 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_15, NULL);
bool L_17;
L_17 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_14, L_16, NULL);
if (!L_17)
{
goto IL_005a;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_18 = V_0;
return L_18;
}
IL_005a:
{
String_t* L_19;
L_19 = Locale_GetText_mB5E9ECC1E9AAA230D967810285D49F3A0BCD99D6(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D91AAC2C6FB094296F989862225A9BA6B227573)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_20 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_20);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_20, L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriTypeConverter_ConvertTo_mA975FACF630714EBEA487EFC770EA0742756A764_RuntimeMethod_var)));
}
IL_006a:
{
String_t* L_21;
L_21 = Locale_GetText_mB5E9ECC1E9AAA230D967810285D49F3A0BCD99D6(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D91AAC2C6FB094296F989862225A9BA6B227573)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_22 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_22);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_22, L_21, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriTypeConverter_ConvertTo_mA975FACF630714EBEA487EFC770EA0742756A764_RuntimeMethod_var)));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.Capture::.ctor(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Capture__ctor_mDC1197B1E29487F3D086091CF3D5B1029D593402 (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, String_t* ___text0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___text0;
Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C_inline(__this, L_0, NULL);
int32_t L_1 = ___index1;
Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE_inline(__this, L_1, NULL);
int32_t L_2 = ___length2;
Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E_inline(__this, L_2, NULL);
return;
}
}
// System.Int32 System.Text.RegularExpressions.Capture::get_Index()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CIndexU3Ek__BackingField_0;
return L_0;
}
}
// System.Void System.Text.RegularExpressions.Capture::set_Index(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CIndexU3Ek__BackingField_0 = L_0;
return;
}
}
// System.Int32 System.Text.RegularExpressions.Capture::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92 (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CLengthU3Ek__BackingField_1;
return L_0;
}
}
// System.Void System.Text.RegularExpressions.Capture::set_Length(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CLengthU3Ek__BackingField_1 = L_0;
return;
}
}
// System.String System.Text.RegularExpressions.Capture::get_Text()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTextU3Ek__BackingField_2;
return L_0;
}
}
// System.Void System.Text.RegularExpressions.Capture::set_Text(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTextU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTextU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.String System.Text.RegularExpressions.Capture::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(__this, NULL);
int32_t L_1;
L_1 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(__this, NULL);
int32_t L_2;
L_2 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(__this, NULL);
NullCheck(L_0);
String_t* L_3;
L_3 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.String System.Text.RegularExpressions.Capture::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Capture_ToString_mC843EDDC990DBE2696BA08D08B1081CA12228F2C (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC(__this, NULL);
return L_0;
}
}
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Capture::GetLeftSubstring()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Capture_GetLeftSubstring_mBFF01B80F38DA0FF4E56EFEF9FD9EE8899AE57DC (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(__this, NULL);
int32_t L_1;
L_1 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(__this, NULL);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2;
L_2 = MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline(L_0, 0, L_1, NULL);
return L_2;
}
}
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Capture::GetRightSubstring()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Capture_GetRightSubstring_m1F1F896A999BC08AEEBD1BB28616F12FC593D1C3 (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(__this, NULL);
int32_t L_1;
L_1 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(__this, NULL);
int32_t L_2;
L_2 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(__this, NULL);
String_t* L_3;
L_3 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(__this, NULL);
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5;
L_5 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(__this, NULL);
int32_t L_6;
L_6 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(__this, NULL);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7;
L_7 = MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline(L_0, ((int32_t)il2cpp_codegen_add(L_1, L_2)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_4, L_5)), L_6)), NULL);
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Text.RegularExpressions.CaptureCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaptureCollection_get_Count_mA45A82BA7103D81E8FC506A02DA2FF862344006E (CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____capcount_1;
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 System.Text.RegularExpressions.Group::.ctor(System.String,System.Int32[],System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C (Group_t26371E9136D6F43782C487B63C67C5FC4F472881* __this, String_t* ___text0, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___caps1, int32_t ___capcount2, String_t* ___name3, const RuntimeMethod* method)
{
String_t* G_B2_0 = NULL;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* G_B2_1 = NULL;
String_t* G_B1_0 = NULL;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
String_t* G_B3_1 = NULL;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* G_B3_2 = NULL;
int32_t G_B5_0 = 0;
String_t* G_B5_1 = NULL;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* G_B5_2 = NULL;
int32_t G_B4_0 = 0;
String_t* G_B4_1 = NULL;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* G_B4_2 = NULL;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
String_t* G_B6_2 = NULL;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* G_B6_3 = NULL;
{
String_t* L_0 = ___text0;
int32_t L_1 = ___capcount2;
G_B1_0 = L_0;
G_B1_1 = __this;
if (!L_1)
{
G_B2_0 = L_0;
G_B2_1 = __this;
goto IL_000e;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ___caps1;
int32_t L_3 = ___capcount2;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_subtract(L_3, 1)), 2));
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
G_B3_0 = L_5;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_000f;
}
IL_000e:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_000f:
{
int32_t L_6 = ___capcount2;
G_B4_0 = G_B3_0;
G_B4_1 = G_B3_1;
G_B4_2 = G_B3_2;
if (!L_6)
{
G_B5_0 = G_B3_0;
G_B5_1 = G_B3_1;
G_B5_2 = G_B3_2;
goto IL_001b;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = ___caps1;
int32_t L_8 = ___capcount2;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_8, 2)), 1));
int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
G_B6_0 = L_10;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
G_B6_3 = G_B4_2;
goto IL_001c;
}
IL_001b:
{
G_B6_0 = 0;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
G_B6_3 = G_B5_2;
}
IL_001c:
{
Capture__ctor_mDC1197B1E29487F3D086091CF3D5B1029D593402(G_B6_3, G_B6_2, G_B6_1, G_B6_0, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_11 = ___caps1;
__this->____caps_4 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____caps_4), (void*)L_11);
int32_t L_12 = ___capcount2;
__this->____capcount_5 = L_12;
String_t* L_13 = ___name3;
__this->___U3CNameU3Ek__BackingField_7 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CNameU3Ek__BackingField_7), (void*)L_13);
return;
}
}
// System.Boolean System.Text.RegularExpressions.Group::get_Success()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F (Group_t26371E9136D6F43782C487B63C67C5FC4F472881* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____capcount_5;
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Void System.Text.RegularExpressions.Group::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__cctor_mC3032FEBEBFB00282A4485A8D95E47649CE2B881 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1;
L_1 = Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_inline(Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_RuntimeMethod_var);
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_3 = (Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)il2cpp_codegen_object_new(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
NullCheck(L_3);
Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C(L_3, L_0, L_1, 0, L_2, NULL);
((Group_t26371E9136D6F43782C487B63C67C5FC4F472881_StaticFields*)il2cpp_codegen_static_fields_for(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var))->___s_emptyGroup_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((Group_t26371E9136D6F43782C487B63C67C5FC4F472881_StaticFields*)il2cpp_codegen_static_fields_for(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var))->___s_emptyGroup_3), (void*)L_3);
return;
}
}
// System.Void System.Text.RegularExpressions.Group::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__ctor_mEB6936CDFD191A4C92766CE3F3301161D7505C5E (Group_t26371E9136D6F43782C487B63C67C5FC4F472881* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group__ctor_mEB6936CDFD191A4C92766CE3F3301161D7505C5E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(Group__ctor_mEB6936CDFD191A4C92766CE3F3301161D7505C5E_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Text.RegularExpressions.GroupCollection::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_get_IsReadOnly_mF1DE2BBB4E573C6EDE85B787281F90951AAB8C4A (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int32 System.Text.RegularExpressions.GroupCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = __this->____match_0;
NullCheck(L_0);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0->____matchcount_15;
NullCheck(L_1);
return ((int32_t)(((RuntimeArray*)L_1)->max_length));
}
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___groupnum0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___groupnum0;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_1;
L_1 = GroupCollection_GetGroup_m8EDFDB8D85D8BEC6EB98B68CA69EE0022FC16B13(__this, L_0, NULL);
return L_1;
}
}
// System.Collections.IEnumerator System.Text.RegularExpressions.GroupCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GroupCollection_GetEnumerator_m47E269C5A8C902948812AF4F52D0C96759550EE9 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* L_0 = (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772*)il2cpp_codegen_object_new(Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772_il2cpp_TypeInfo_var);
NullCheck(L_0);
Enumerator__ctor_m17B823D35315CED0509F6B4C5F04C148B9388DDD(L_0, __this, NULL);
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Group> System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IEnumerable<System.Text.RegularExpressions.Group>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GroupCollection_System_Collections_Generic_IEnumerableU3CSystem_Text_RegularExpressions_GroupU3E_GetEnumerator_m593F2B44A71E46606D2E8C0816E626675EE2087D (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* L_0 = (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772*)il2cpp_codegen_object_new(Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772_il2cpp_TypeInfo_var);
NullCheck(L_0);
Enumerator__ctor_m17B823D35315CED0509F6B4C5F04C148B9388DDD(L_0, __this, NULL);
return L_0;
}
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroup(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_GetGroup_m8EDFDB8D85D8BEC6EB98B68CA69EE0022FC16B13 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___groupnum0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____captureMap_1;
if (!L_0)
{
goto IL_0025;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____captureMap_1;
int32_t L_2 = ___groupnum0;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
bool L_5;
L_5 = HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395(L_1, L_4, (&V_0), HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_RuntimeMethod_var);
if (!L_5)
{
goto IL_0041;
}
}
{
int32_t L_6 = V_0;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_7;
L_7 = GroupCollection_GetGroupImpl_m27CE16949BE0A9CFC61CC6CBF3FB179F63654D92(__this, L_6, NULL);
return L_7;
}
IL_0025:
{
int32_t L_8 = ___groupnum0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_9 = __this->____match_0;
NullCheck(L_9);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = L_9->____matchcount_15;
NullCheck(L_10);
if ((((int32_t)L_8) >= ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
{
goto IL_0041;
}
}
{
int32_t L_11 = ___groupnum0;
if ((((int32_t)L_11) < ((int32_t)0)))
{
goto IL_0041;
}
}
{
int32_t L_12 = ___groupnum0;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_13;
L_13 = GroupCollection_GetGroupImpl_m27CE16949BE0A9CFC61CC6CBF3FB179F63654D92(__this, L_12, NULL);
return L_13;
}
IL_0041:
{
il2cpp_codegen_runtime_class_init_inline(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_14 = ((Group_t26371E9136D6F43782C487B63C67C5FC4F472881_StaticFields*)il2cpp_codegen_static_fields_for(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var))->___s_emptyGroup_3;
return L_14;
}
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroupImpl(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_GetGroupImpl_m27CE16949BE0A9CFC61CC6CBF3FB179F63654D92 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___groupnum0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
{
int32_t L_0 = ___groupnum0;
if (L_0)
{
goto IL_000a;
}
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1 = __this->____match_0;
return L_1;
}
IL_000a:
{
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_2 = __this->____groups_2;
if (L_2)
{
goto IL_008a;
}
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_3 = __this->____match_0;
NullCheck(L_3);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = L_3->____matchcount_15;
NullCheck(L_4);
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_5 = (GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9*)(GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9*)SZArrayNew(GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 1)));
__this->____groups_2 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____groups_2), (void*)L_5);
V_0 = 0;
goto IL_007f;
}
IL_0030:
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_6 = __this->____match_0;
NullCheck(L_6);
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_7 = L_6->____regex_9;
int32_t L_8 = V_0;
NullCheck(L_7);
String_t* L_9;
L_9 = Regex_GroupNameFromNumber_mC99A37419C4C0C9C3869BCDF055EDC72782D53FF(L_7, ((int32_t)il2cpp_codegen_add(L_8, 1)), NULL);
V_1 = L_9;
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_10 = __this->____groups_2;
int32_t L_11 = V_0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_12 = __this->____match_0;
NullCheck(L_12);
String_t* L_13;
L_13 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(L_12, NULL);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_14 = __this->____match_0;
NullCheck(L_14);
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_15 = L_14->____matches_14;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_add(L_16, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_19 = __this->____match_0;
NullCheck(L_19);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = L_19->____matchcount_15;
int32_t L_21 = V_0;
NullCheck(L_20);
int32_t L_22 = ((int32_t)il2cpp_codegen_add(L_21, 1));
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
String_t* L_24 = V_1;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_25 = (Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)il2cpp_codegen_object_new(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
NullCheck(L_25);
Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C(L_25, L_13, L_18, L_23, L_24, NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_25);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)L_25);
int32_t L_26 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_007f:
{
int32_t L_27 = V_0;
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_28 = __this->____groups_2;
NullCheck(L_28);
if ((((int32_t)L_27) < ((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
{
goto IL_0030;
}
}
IL_008a:
{
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_29 = __this->____groups_2;
int32_t L_30 = ___groupnum0;
NullCheck(L_29);
int32_t L_31 = ((int32_t)il2cpp_codegen_subtract(L_30, 1));
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
return L_32;
}
}
// System.Boolean System.Text.RegularExpressions.GroupCollection::get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_get_IsSynchronized_m31D8770968C4D1322FBD2572204C74F978ED7DA3 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Text.RegularExpressions.GroupCollection::get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GroupCollection_get_SyncRoot_m7505B29FFFE40E5319BAD3F3B3332F8A6299570A (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = __this->____match_0;
return L_0;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_CopyTo_m122BEB82372AC34C575FCB8C71188A2A49CCC482 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
RuntimeArray* L_0 = ___array0;
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*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_CopyTo_m122BEB82372AC34C575FCB8C71188A2A49CCC482_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___arrayIndex1;
V_0 = L_2;
V_1 = 0;
goto IL_002a;
}
IL_0014:
{
RuntimeArray* L_3 = ___array0;
int32_t L_4 = V_1;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_5;
L_5 = GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3(__this, L_4, NULL);
int32_t L_6 = V_0;
NullCheck(L_3);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_3, L_5, L_6, NULL);
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_002a:
{
int32_t L_9 = V_1;
int32_t L_10;
L_10 = GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39(__this, NULL);
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_0014;
}
}
{
return;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::CopyTo(System.Text.RegularExpressions.Group[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_0 = ___array0;
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*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___arrayIndex1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___arrayIndex1;
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))
{
goto IL_0023;
}
}
IL_0018:
{
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*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A_RuntimeMethod_var)));
}
IL_0023:
{
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___arrayIndex1;
int32_t L_8;
L_8 = GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39(__this, NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), L_7))) >= ((int32_t)L_8)))
{
goto IL_003b;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A_RuntimeMethod_var)));
}
IL_003b:
{
int32_t L_10 = ___arrayIndex1;
V_0 = L_10;
V_1 = 0;
goto IL_0053;
}
IL_0041:
{
GroupU5BU5D_t9924453EAB39E5BC350475A536C5C7093F9A04A9* L_11 = ___array0;
int32_t L_12 = V_0;
int32_t L_13 = V_1;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_14;
L_14 = GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3(__this, L_13, NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_14);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)L_14);
int32_t L_15 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_0053:
{
int32_t L_17 = V_1;
int32_t L_18;
L_18 = GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39(__this, NULL);
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0041;
}
}
{
return;
}
}
// System.Int32 System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.IndexOf(System.Text.RegularExpressions.Group)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_IndexOf_m63AB69A8D37D49B1AFFE8CDEED6442D25A25F94A (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualityComparer_1_get_Default_m6D30896A5A1B93A06BCDC13116BD1EAFE0AEE336_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572* V_0 = NULL;
int32_t V_1 = 0;
{
EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572* L_0;
L_0 = EqualityComparer_1_get_Default_m6D30896A5A1B93A06BCDC13116BD1EAFE0AEE336_inline(EqualityComparer_1_get_Default_m6D30896A5A1B93A06BCDC13116BD1EAFE0AEE336_RuntimeMethod_var);
V_0 = L_0;
V_1 = 0;
goto IL_0020;
}
IL_000a:
{
EqualityComparer_1_t5783DBC40BA5271BBE16890D8F7FC0DFA287D572* L_1 = V_0;
int32_t L_2 = V_1;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_3;
L_3 = GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3(__this, L_2, NULL);
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_4 = ___item0;
NullCheck(L_1);
bool L_5;
L_5 = VirtualFuncInvoker2< bool, Group_t26371E9136D6F43782C487B63C67C5FC4F472881*, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Text.RegularExpressions.Group>::Equals(T,T) */, L_1, L_3, L_4);
if (!L_5)
{
goto IL_001c;
}
}
{
int32_t L_6 = V_1;
return L_6;
}
IL_001c:
{
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_0020:
{
int32_t L_8 = V_1;
int32_t L_9;
L_9 = GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39(__this, NULL);
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_000a;
}
}
{
return (-1);
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.Insert(System.Int32,System.Text.RegularExpressions.Group)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_Insert_m515A74F3095C972A28657B89FE6B65A3EC5324FA (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___item1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_Insert_m515A74F3095C972A28657B89FE6B65A3EC5324FA_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_RemoveAt_m981151BB2C68E7F2DC0BF4DD61D4AD4AB5B5AE3A (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_RemoveAt_m981151BB2C68E7F2DC0BF4DD61D4AD4AB5B5AE3A_RuntimeMethod_var)));
}
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_get_Item_m7FD6BE83AFD3DCC2F9ABB2AB4B938F552DF1D45D (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_1;
L_1 = GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3(__this, L_0, NULL);
return L_1;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.set_Item(System.Int32,System.Text.RegularExpressions.Group)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_set_Item_mB5DBB39B4E6F360B8105064E6659EFC49E8B1C85 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___value1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_set_Item_mB5DBB39B4E6F360B8105064E6659EFC49E8B1C85_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Add(System.Text.RegularExpressions.Group)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Add_m96D9B7FCEC33784ED88BAC3C291146E64A921D8D (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___item0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Add_m96D9B7FCEC33784ED88BAC3C291146E64A921D8D_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Clear_m67DAFAB787617D8A9B720AAF612436587E2C3172 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Clear_m67DAFAB787617D8A9B720AAF612436587E2C3172_RuntimeMethod_var)));
}
}
// System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Contains(System.Text.RegularExpressions.Group)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Contains_m260CC86A4FD94F5682B73C9C8BE03551C14B3568 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tE325109D143DAE3706FB4C733DB80BB58C2496F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_0 = ___item0;
int32_t L_1;
L_1 = InterfaceFuncInvoker1< int32_t, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Text.RegularExpressions.Group>::IndexOf(T) */, IList_1_tE325109D143DAE3706FB4C733DB80BB58C2496F0_il2cpp_TypeInfo_var, __this, L_0);
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Remove(System.Text.RegularExpressions.Group)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Remove_m008F559DB848823129DDCB7B832C731F0D4AFF83 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___item0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Remove_m008F559DB848823129DDCB7B832C731F0D4AFF83_RuntimeMethod_var)));
}
}
// System.Int32 System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Add(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_System_Collections_IList_Add_m08D9178D05AE66397CBCF2184448AE712741E4D1 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_IList_Add_m08D9178D05AE66397CBCF2184448AE712741E4D1_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_IList_Clear_mCFF90C2303D7106D722E8B574ED3261C80F250CE (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_IList_Clear_mCFF90C2303D7106D722E8B574ED3261C80F250CE_RuntimeMethod_var)));
}
}
// System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_System_Collections_IList_Contains_m9E34B033D0BB903B2491336D7F70BE5A59D46208 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t4E7BA04D19E6966C7207F5A1C00C1020C9608509_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
if (!((Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)IsInstClass((RuntimeObject*)L_0, Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = ___value0;
bool L_2;
L_2 = InterfaceFuncInvoker1< bool, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Text.RegularExpressions.Group>::Contains(T) */, ICollection_1_t4E7BA04D19E6966C7207F5A1C00C1020C9608509_il2cpp_TypeInfo_var, __this, ((Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)CastclassClass((RuntimeObject*)L_1, Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var)));
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
// System.Int32 System.Text.RegularExpressions.GroupCollection::System.Collections.IList.IndexOf(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_System_Collections_IList_IndexOf_mA974FC7CFC23310A1CAAD8A750823D5E0ED762AC (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tE325109D143DAE3706FB4C733DB80BB58C2496F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
if (((Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)IsInstClass((RuntimeObject*)L_0, Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (-1);
}
IL_000a:
{
RuntimeObject* L_1 = ___value0;
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, Group_t26371E9136D6F43782C487B63C67C5FC4F472881* >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Text.RegularExpressions.Group>::IndexOf(T) */, IList_1_tE325109D143DAE3706FB4C733DB80BB58C2496F0_il2cpp_TypeInfo_var, __this, ((Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)CastclassClass((RuntimeObject*)L_1, Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var)));
return L_2;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Insert(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_IList_Insert_m3CDAAB43F292FD0ABD2D9595F02233FB55577623 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_IList_Insert_m3CDAAB43F292FD0ABD2D9595F02233FB55577623_RuntimeMethod_var)));
}
}
// System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.IList.get_IsFixedSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_System_Collections_IList_get_IsFixedSize_m5AA2CBFB17E2617597BDFBB56CCA1E435A763014 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_IList_Remove_m32982B763D442200E71B8A5E6C85C9501A555F23 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_IList_Remove_m32982B763D442200E71B8A5E6C85C9501A555F23_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_IList_RemoveAt_m32BF4A16212F4849AD46F680E5D0D14268CB7C58 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_IList_RemoveAt_m32BF4A16212F4849AD46F680E5D0D14268CB7C58_RuntimeMethod_var)));
}
}
// System.Object System.Text.RegularExpressions.GroupCollection::System.Collections.IList.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GroupCollection_System_Collections_IList_get_Item_m969EA1758BE453F49B700FABF29940C5C9800573 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_1;
L_1 = GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3(__this, L_0, NULL);
return L_1;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_System_Collections_IList_set_Item_mDDFE5D350953DB61758FE64D556670EA5A402C48 (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_System_Collections_IList_set_Item_mDDFE5D350953DB61758FE64D556670EA5A402C48_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.GroupCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection__ctor_mB178F93E8DB52AA6412FF28E5FE50943E2BABFFB (GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupCollection__ctor_mB178F93E8DB52AA6412FF28E5FE50943E2BABFFB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(GroupCollection__ctor_mB178F93E8DB52AA6412FF28E5FE50943E2BABFFB_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::.ctor(System.Text.RegularExpressions.GroupCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m17B823D35315CED0509F6B4C5F04C148B9388DDD (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* ___collection0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* L_0 = ___collection0;
__this->____collection_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____collection_0), (void*)L_0);
__this->____index_1 = (-1);
return;
}
}
// System.Boolean System.Text.RegularExpressions.GroupCollection/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1DDDE3FC6B83FF15ED8AA895DE1357C37B7241C5 (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* L_0 = __this->____collection_0;
NullCheck(L_0);
int32_t L_1;
L_1 = GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39(L_0, NULL);
V_0 = L_1;
int32_t L_2 = __this->____index_1;
int32_t L_3 = V_0;
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
int32_t L_4 = __this->____index_1;
__this->____index_1 = ((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = __this->____index_1;
int32_t L_6 = V_0;
return (bool)((((int32_t)L_5) < ((int32_t)L_6))? 1 : 0);
}
}
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t26371E9136D6F43782C487B63C67C5FC4F472881* Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43 (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____index_1;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_001c;
}
}
{
int32_t L_1 = __this->____index_1;
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* L_2 = __this->____collection_0;
NullCheck(L_2);
int32_t L_3;
L_3 = GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39(L_2, NULL);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_0027;
}
}
IL_001c:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43_RuntimeMethod_var)));
}
IL_0027:
{
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* L_5 = __this->____collection_0;
int32_t L_6 = __this->____index_1;
NullCheck(L_5);
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_7;
L_7 = GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3(L_5, L_6, NULL);
return L_7;
}
}
// System.Object System.Text.RegularExpressions.GroupCollection/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m16F94921184B09EDC3D45E9CFE3F3FAA1E5D862D (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, const RuntimeMethod* method)
{
{
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* L_0;
L_0 = Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43(__this, NULL);
return L_0;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5B7067CCF9E8139F34641618492A2DAACA5419B0 (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, const RuntimeMethod* method)
{
{
__this->____index_1 = (-1);
return;
}
}
// System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_IDisposable_Dispose_m1C77D8E3DFF1A034E9329E11854F11012F20AA69 (Enumerator_t49742A61974B06BB73678C5555C3E42E6C843772* __this, const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.Match::.ctor(System.Text.RegularExpressions.Regex,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, int32_t ___capcount1, String_t* ___text2, int32_t ___begpos3, int32_t ___len4, int32_t ___startpos5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___text2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)2);
il2cpp_codegen_runtime_class_init_inline(Group_t26371E9136D6F43782C487B63C67C5FC4F472881_il2cpp_TypeInfo_var);
Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C(__this, L_0, L_1, 0, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_2 = ___regex0;
__this->____regex_9 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____regex_9), (void*)L_2);
int32_t L_3 = ___capcount1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_3);
__this->____matchcount_15 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____matchcount_15), (void*)L_4);
int32_t L_5 = ___capcount1;
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_6 = (Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E*)(Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E*)SZArrayNew(Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var, (uint32_t)L_5);
__this->____matches_14 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____matches_14), (void*)L_6);
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_7 = __this->____matches_14;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ((Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)__this)->____caps_4;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)L_8);
int32_t L_9 = ___begpos3;
__this->____textbeg_10 = L_9;
int32_t L_10 = ___begpos3;
int32_t L_11 = ___len4;
__this->____textend_12 = ((int32_t)il2cpp_codegen_add(L_10, L_11));
int32_t L_12 = ___startpos5;
__this->____textstart_13 = L_12;
__this->____balancing_16 = (bool)0;
return;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Match_get_Empty_m9565EFA0F267BAF2886447CB8169A654C5471918 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = ((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields*)il2cpp_codegen_static_fields_for(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_17;
return L_0;
}
}
// System.Void System.Text.RegularExpressions.Match::Reset(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match_Reset_m53A78F16760B7CD5CC8A104F6CD95CA255D888AA (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, String_t* ___text1, int32_t ___textbeg2, int32_t ___textend3, int32_t ___textstart4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = ___regex0;
__this->____regex_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____regex_9), (void*)L_0);
String_t* L_1 = ___text1;
Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C_inline(__this, L_1, NULL);
int32_t L_2 = ___textbeg2;
__this->____textbeg_10 = L_2;
int32_t L_3 = ___textend3;
__this->____textend_12 = L_3;
int32_t L_4 = ___textstart4;
__this->____textstart_13 = L_4;
V_0 = 0;
goto IL_0036;
}
IL_0029:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->____matchcount_15;
int32_t L_6 = V_0;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (int32_t)0);
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_0036:
{
int32_t L_8 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = __this->____matchcount_15;
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
{
goto IL_0029;
}
}
{
__this->____balancing_16 = (bool)0;
return;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::NextMatch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, const RuntimeMethod* method)
{
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = __this->____regex_9;
if (L_0)
{
goto IL_000a;
}
}
{
return __this;
}
IL_000a:
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_1 = __this->____regex_9;
int32_t L_2;
L_2 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(__this, NULL);
String_t* L_3;
L_3 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(__this, NULL);
int32_t L_4 = __this->____textbeg_10;
int32_t L_5 = __this->____textend_12;
int32_t L_6 = __this->____textbeg_10;
int32_t L_7 = __this->____textpos_11;
NullCheck(L_1);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_8;
L_8 = Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8(L_1, (bool)0, L_2, L_3, L_4, ((int32_t)il2cpp_codegen_subtract(L_5, L_6)), L_7, NULL);
return L_8;
}
}
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::GroupToStringImpl(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Match_GroupToStringImpl_mF3F2A3BC4EC33DD1FD35244E2412E05151AF6A1A (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___groupnum0, 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;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____matchcount_15;
int32_t L_1 = ___groupnum0;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
int32_t L_4 = V_0;
if (L_4)
{
goto IL_0017;
}
}
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
L_6 = String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline(L_5, NULL);
return L_6;
}
IL_0017:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_7 = __this->____matches_14;
int32_t L_8 = ___groupnum0;
NullCheck(L_7);
int32_t L_9 = L_8;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_1 = L_10;
String_t* L_11;
L_11 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(__this, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = V_1;
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_subtract(L_13, 1)), 2));
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = V_1;
int32_t L_17 = V_0;
NullCheck(L_16);
int32_t L_18 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_17, 2)), 1));
int32_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_20;
L_20 = MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline(L_11, L_15, L_19, NULL);
return L_20;
}
}
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::LastGroupToStringImpl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Match_LastGroupToStringImpl_m78C890F3547E00454BEB81BC939FE680AAEBB29A (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____matchcount_15;
NullCheck(L_0);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
L_1 = VirtualFuncInvoker1< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, int32_t >::Invoke(5 /* System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::GroupToStringImpl(System.Int32) */, __this, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), 1)));
return L_1;
}
}
// System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match_AddMatch_m5F28F3255C64D67D56C1542CE32A9D324F96780E (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___cap0, int32_t ___start1, int32_t ___len2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
int32_t V_3 = 0;
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_0 = __this->____matches_14;
int32_t L_1 = ___cap0;
NullCheck(L_0);
int32_t L_2 = L_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
if (L_3)
{
goto IL_0018;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_4 = __this->____matches_14;
int32_t L_5 = ___cap0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)2);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_6);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)L_6);
}
IL_0018:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = __this->____matchcount_15;
int32_t L_8 = ___cap0;
NullCheck(L_7);
int32_t L_9 = L_8;
int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_0 = L_10;
int32_t L_11 = V_0;
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_12 = __this->____matches_14;
int32_t L_13 = ___cap0;
NullCheck(L_12);
int32_t L_14 = L_13;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_15);
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_11, 2)), 2))) <= ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
{
goto IL_0061;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_16 = __this->____matches_14;
int32_t L_17 = ___cap0;
NullCheck(L_16);
int32_t L_18 = L_17;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_1 = L_19;
int32_t L_20 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_20, 8)));
V_2 = L_21;
V_3 = 0;
goto IL_0052;
}
IL_0048:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = V_2;
int32_t L_23 = V_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_24 = V_1;
int32_t L_25 = V_3;
NullCheck(L_24);
int32_t L_26 = L_25;
int32_t L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_27);
int32_t L_28 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_28, 1));
}
IL_0052:
{
int32_t L_29 = V_3;
int32_t L_30 = V_0;
if ((((int32_t)L_29) < ((int32_t)((int32_t)il2cpp_codegen_multiply(L_30, 2)))))
{
goto IL_0048;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_31 = __this->____matches_14;
int32_t L_32 = ___cap0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33 = V_2;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_33);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)L_33);
}
IL_0061:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_34 = __this->____matches_14;
int32_t L_35 = ___cap0;
NullCheck(L_34);
int32_t L_36 = L_35;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
int32_t L_38 = V_0;
int32_t L_39 = ___start1;
NullCheck(L_37);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_multiply(L_38, 2))), (int32_t)L_39);
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_40 = __this->____matches_14;
int32_t L_41 = ___cap0;
NullCheck(L_40);
int32_t L_42 = L_41;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
int32_t L_44 = V_0;
int32_t L_45 = ___len2;
NullCheck(L_43);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_44, 2)), 1))), (int32_t)L_45);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_46 = __this->____matchcount_15;
int32_t L_47 = ___cap0;
int32_t L_48 = V_0;
NullCheck(L_46);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(L_47), (int32_t)((int32_t)il2cpp_codegen_add(L_48, 1)));
return;
}
}
// System.Void System.Text.RegularExpressions.Match::BalanceMatch(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match_BalanceMatch_m85EA44453E637DEBE24ABC7562BF91EE1222DBFD (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___cap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
__this->____balancing_16 = (bool)1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____matchcount_15;
int32_t L_1 = ___cap0;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_3, 2)), 2));
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_4 = __this->____matches_14;
int32_t L_5 = ___cap0;
NullCheck(L_4);
int32_t L_6 = L_5;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_002f;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_11 = __this->____matches_14;
int32_t L_12 = ___cap0;
NullCheck(L_11);
int32_t L_13 = L_12;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
int32_t L_15 = V_0;
NullCheck(L_14);
int32_t L_16 = L_15;
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)-3), L_17));
}
IL_002f:
{
int32_t L_18 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_18, 2));
int32_t L_19 = V_0;
if ((((int32_t)L_19) < ((int32_t)0)))
{
goto IL_0062;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_20 = __this->____matches_14;
int32_t L_21 = ___cap0;
NullCheck(L_20);
int32_t L_22 = L_21;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
int32_t L_24 = V_0;
NullCheck(L_23);
int32_t L_25 = L_24;
int32_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
if ((((int32_t)L_26) >= ((int32_t)0)))
{
goto IL_0062;
}
}
{
int32_t L_27 = ___cap0;
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_28 = __this->____matches_14;
int32_t L_29 = ___cap0;
NullCheck(L_28);
int32_t L_30 = L_29;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
int32_t L_32 = V_0;
NullCheck(L_31);
int32_t L_33 = L_32;
int32_t L_34 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_35 = __this->____matches_14;
int32_t L_36 = ___cap0;
NullCheck(L_35);
int32_t L_37 = L_36;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
int32_t L_39 = V_0;
NullCheck(L_38);
int32_t L_40 = ((int32_t)il2cpp_codegen_add(L_39, 1));
int32_t L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(6 /* System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32) */, __this, L_27, L_34, L_41);
return;
}
IL_0062:
{
int32_t L_42 = ___cap0;
int32_t L_43 = V_0;
int32_t L_44 = V_0;
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(6 /* System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32) */, __this, L_42, ((int32_t)il2cpp_codegen_subtract(((int32_t)-3), L_43)), ((int32_t)il2cpp_codegen_subtract(((int32_t)-4), L_44)));
return;
}
}
// System.Void System.Text.RegularExpressions.Match::RemoveMatch(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match_RemoveMatch_m154DB10030027B3738903FFB50DE511D71656B04 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___cap0, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____matchcount_15;
int32_t L_1 = ___cap0;
NullCheck(L_0);
int32_t* L_2 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)));
int32_t L_3 = *((int32_t*)L_2);
*((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_3, 1));
return;
}
}
// System.Boolean System.Text.RegularExpressions.Match::IsMatched(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Match_IsMatched_m9D6E0C0AB1F3E1E8E49E77E3A0A0ECCD7C2C4FBA (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___cap0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___cap0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->____matchcount_15;
NullCheck(L_1);
if ((((int32_t)L_0) >= ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))
{
goto IL_0033;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->____matchcount_15;
int32_t L_3 = ___cap0;
NullCheck(L_2);
int32_t L_4 = L_3;
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_0033;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_6 = __this->____matches_14;
int32_t L_7 = ___cap0;
NullCheck(L_6);
int32_t L_8 = L_7;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = __this->____matchcount_15;
int32_t L_11 = ___cap0;
NullCheck(L_10);
int32_t L_12 = L_11;
int32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_9);
int32_t L_14 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_13, 2)), 1));
int32_t L_15 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
return (bool)((((int32_t)((((int32_t)L_15) == ((int32_t)((int32_t)-2)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0033:
{
return (bool)0;
}
}
// System.Int32 System.Text.RegularExpressions.Match::MatchIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Match_MatchIndex_m97F06DECDDA8BD3E4D8DF6B9224B8E24C0764F35 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___cap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_0 = __this->____matches_14;
int32_t L_1 = ___cap0;
NullCheck(L_0);
int32_t L_2 = L_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->____matchcount_15;
int32_t L_5 = ___cap0;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_3);
int32_t L_8 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_7, 2)), 2));
int32_t L_9 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_0 = L_9;
int32_t L_10 = V_0;
if ((((int32_t)L_10) < ((int32_t)0)))
{
goto IL_001c;
}
}
{
int32_t L_11 = V_0;
return L_11;
}
IL_001c:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_12 = __this->____matches_14;
int32_t L_13 = ___cap0;
NullCheck(L_12);
int32_t L_14 = L_13;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract(((int32_t)-3), L_16));
int32_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
return L_18;
}
}
// System.Int32 System.Text.RegularExpressions.Match::MatchLength(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Match_MatchLength_m5C93EA60B018A79D9D05C8E69D25835848471B01 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___cap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_0 = __this->____matches_14;
int32_t L_1 = ___cap0;
NullCheck(L_0);
int32_t L_2 = L_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->____matchcount_15;
int32_t L_5 = ___cap0;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_3);
int32_t L_8 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_7, 2)), 1));
int32_t L_9 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_0 = L_9;
int32_t L_10 = V_0;
if ((((int32_t)L_10) < ((int32_t)0)))
{
goto IL_001c;
}
}
{
int32_t L_11 = V_0;
return L_11;
}
IL_001c:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_12 = __this->____matches_14;
int32_t L_13 = ___cap0;
NullCheck(L_12);
int32_t L_14 = L_13;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract(((int32_t)-3), L_16));
int32_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
return L_18;
}
}
// System.Void System.Text.RegularExpressions.Match::Tidy(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match_Tidy_mF0A46109EAF0E91CBCA732985265E1DC20CA3F51 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, int32_t ___textpos0, const RuntimeMethod* method)
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_0 = __this->____matches_14;
NullCheck(L_0);
int32_t L_1 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
V_0 = L_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = 0;
int32_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE_inline(__this, L_5, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = 1;
int32_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E_inline(__this, L_8, NULL);
int32_t L_9 = ___textpos0;
__this->____textpos_11 = L_9;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = __this->____matchcount_15;
NullCheck(L_10);
int32_t L_11 = 0;
int32_t L_12 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
((Group_t26371E9136D6F43782C487B63C67C5FC4F472881*)__this)->____capcount_5 = L_12;
bool L_13 = __this->____balancing_16;
if (!L_13)
{
goto IL_00c3;
}
}
{
V_1 = 0;
goto IL_00b1;
}
IL_003f:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = __this->____matchcount_15;
int32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = L_15;
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_2 = ((int32_t)il2cpp_codegen_multiply(L_17, 2));
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_18 = __this->____matches_14;
int32_t L_19 = V_1;
NullCheck(L_18);
int32_t L_20 = L_19;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
V_3 = L_21;
V_4 = 0;
V_4 = 0;
goto IL_0068;
}
IL_005b:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = V_3;
int32_t L_23 = V_4;
NullCheck(L_22);
int32_t L_24 = L_23;
int32_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
if ((((int32_t)L_25) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
int32_t L_26 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_0068:
{
int32_t L_27 = V_4;
int32_t L_28 = V_2;
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_005b;
}
}
IL_006d:
{
int32_t L_29 = V_4;
V_5 = L_29;
goto IL_009c;
}
IL_0073:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_30 = V_3;
int32_t L_31 = V_4;
NullCheck(L_30);
int32_t L_32 = L_31;
int32_t L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
if ((((int32_t)L_33) >= ((int32_t)0)))
{
goto IL_0082;
}
}
{
int32_t L_34 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_34, 1));
goto IL_0096;
}
IL_0082:
{
int32_t L_35 = V_4;
int32_t L_36 = V_5;
if ((((int32_t)L_35) == ((int32_t)L_36)))
{
goto IL_0090;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_37 = V_3;
int32_t L_38 = V_5;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_39 = V_3;
int32_t L_40 = V_4;
NullCheck(L_39);
int32_t L_41 = L_40;
int32_t L_42 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
NullCheck(L_37);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (int32_t)L_42);
}
IL_0090:
{
int32_t L_43 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_43, 1));
}
IL_0096:
{
int32_t L_44 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_44, 1));
}
IL_009c:
{
int32_t L_45 = V_4;
int32_t L_46 = V_2;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_0073;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_47 = __this->____matchcount_15;
int32_t L_48 = V_1;
int32_t L_49 = V_5;
NullCheck(L_47);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(L_48), (int32_t)((int32_t)(L_49/2)));
int32_t L_50 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_50, 1));
}
IL_00b1:
{
int32_t L_51 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_52 = __this->____matchcount_15;
NullCheck(L_52);
if ((((int32_t)L_51) < ((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)))))
{
goto IL_003f;
}
}
{
__this->____balancing_16 = (bool)0;
}
IL_00c3:
{
return;
}
}
// System.Void System.Text.RegularExpressions.Match::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match__cctor_mAB49EF64F5132A336358E3F1922FF173EA10CE3C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1 = (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)il2cpp_codegen_object_new(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
NullCheck(L_1);
Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A(L_1, (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)NULL, 1, L_0, 0, 0, 0, NULL);
((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields*)il2cpp_codegen_static_fields_for(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_17 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields*)il2cpp_codegen_static_fields_for(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_17), (void*)L_1);
return;
}
}
// System.Void System.Text.RegularExpressions.Match::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match__ctor_mBABEF8F11A3BC6DB713519819D135CC87AC1B4CD (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match__ctor_mBABEF8F11A3BC6DB713519819D135CC87AC1B4CD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(Match__ctor_mBABEF8F11A3BC6DB713519819D135CC87AC1B4CD_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.MatchSparse::.ctor(System.Text.RegularExpressions.Regex,System.Collections.Hashtable,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchSparse__ctor_m7CEA8A7F538C706527778E8E75003DD74AC2FD41 (MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps1, int32_t ___capcount2, String_t* ___text3, int32_t ___begpos4, int32_t ___len5, int32_t ___startpos6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = ___regex0;
int32_t L_1 = ___capcount2;
String_t* L_2 = ___text3;
int32_t L_3 = ___begpos4;
int32_t L_4 = ___len5;
int32_t L_5 = ___startpos6;
il2cpp_codegen_runtime_class_init_inline(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A(__this, L_0, L_1, L_2, L_3, L_4, L_5, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = ___caps1;
__this->____caps_18 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____caps_18), (void*)L_6);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.MatchCollection::.ctor(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex0, String_t* ___input1, int32_t ___beginning2, int32_t ___length3, int32_t ___startat4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m781B70C57EDA95F60B8836BC2ACC28D081D51FAE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___startat4;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_1 = ___startat4;
String_t* L_2 = ___input1;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if ((((int32_t)L_1) <= ((int32_t)L_3)))
{
goto IL_0025;
}
}
IL_0015:
{
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*)&_stringLiteralB132716D89EF0EE2CEF39498DA0895B2449AB344)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB596320AE4D74537B29168E9BDF95B753E2B5301)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE_RuntimeMethod_var)));
}
IL_0025:
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_5 = ___regex0;
__this->____regex_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____regex_0), (void*)L_5);
String_t* L_6 = ___input1;
__this->____input_3 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____input_3), (void*)L_6);
int32_t L_7 = ___beginning2;
__this->____beginning_4 = L_7;
int32_t L_8 = ___length3;
__this->____length_5 = L_8;
int32_t L_9 = ___startat4;
__this->____startat_6 = L_9;
__this->____prevlen_7 = (-1);
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_10 = (List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6*)il2cpp_codegen_object_new(List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6_il2cpp_TypeInfo_var);
NullCheck(L_10);
List_1__ctor_m781B70C57EDA95F60B8836BC2ACC28D081D51FAE(L_10, List_1__ctor_m781B70C57EDA95F60B8836BC2ACC28D081D51FAE_RuntimeMethod_var);
__this->____matches_1 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->____matches_1), (void*)L_10);
__this->____done_2 = (bool)0;
return;
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchCollection_get_IsReadOnly_mC801B489E41AACA6A80CEAD222CC78EFD212E994 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int32 System.Text.RegularExpressions.MatchCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MatchCollection_get_Count_mF9D979B5B9D3835CC61977CBFB4110173B1CC926 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654(__this, NULL);
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_0 = __this->____matches_1;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_inline(L_0, List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_RuntimeMethod_var);
return L_1;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* MatchCollection_get_Item_m22EC679C4BB2C29C63AF2195C98C886EB73303D1 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___i0, const RuntimeMethod* method)
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* G_B4_0 = NULL;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* G_B3_0 = NULL;
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000f;
}
}
{
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_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_get_Item_m22EC679C4BB2C29C63AF2195C98C886EB73303D1_RuntimeMethod_var)));
}
IL_000f:
{
int32_t L_2 = ___i0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_3;
L_3 = MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D(__this, L_2, NULL);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_4 = L_3;
G_B3_0 = L_4;
if (L_4)
{
G_B4_0 = L_4;
goto IL_0024;
}
}
{
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*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_get_Item_m22EC679C4BB2C29C63AF2195C98C886EB73303D1_RuntimeMethod_var)));
}
IL_0024:
{
return G_B4_0;
}
}
// System.Collections.IEnumerator System.Text.RegularExpressions.MatchCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MatchCollection_GetEnumerator_mEDB2417DB45B514C8015043F52630DE1AD15447B (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* L_0 = (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D*)il2cpp_codegen_object_new(Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D_il2cpp_TypeInfo_var);
NullCheck(L_0);
Enumerator__ctor_m7FB61A151678DD2B024D5064248818D83F77A6B1(L_0, __this, NULL);
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Match> System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IEnumerable<System.Text.RegularExpressions.Match>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MatchCollection_System_Collections_Generic_IEnumerableU3CSystem_Text_RegularExpressions_MatchU3E_GetEnumerator_mCC91AB6EA562C3AD42A7B202B207EC0FD4537934 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* L_0 = (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D*)il2cpp_codegen_object_new(Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D_il2cpp_TypeInfo_var);
NullCheck(L_0);
Enumerator__ctor_m7FB61A151678DD2B024D5064248818D83F77A6B1(L_0, __this, NULL);
return L_0;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::GetMatch(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0C7F89C2A5D3E5A10B256D77E8A5EDEE64A95D33_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mDFDA85F2FA83EA93846A5A4EF398CC153D64A575_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* V_0 = NULL;
{
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_0 = __this->____matches_1;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_inline(L_0, List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_RuntimeMethod_var);
int32_t L_2 = ___i0;
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_001b;
}
}
{
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_3 = __this->____matches_1;
int32_t L_4 = ___i0;
NullCheck(L_3);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_5;
L_5 = List_1_get_Item_mDFDA85F2FA83EA93846A5A4EF398CC153D64A575(L_3, L_4, List_1_get_Item_mDFDA85F2FA83EA93846A5A4EF398CC153D64A575_RuntimeMethod_var);
return L_5;
}
IL_001b:
{
bool L_6 = __this->____done_2;
if (!L_6)
{
goto IL_0025;
}
}
{
return (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)NULL;
}
IL_0025:
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_7 = __this->____regex_0;
int32_t L_8 = __this->____prevlen_7;
String_t* L_9 = __this->____input_3;
int32_t L_10 = __this->____beginning_4;
int32_t L_11 = __this->____length_5;
int32_t L_12 = __this->____startat_6;
NullCheck(L_7);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_13;
L_13 = Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8(L_7, (bool)0, L_8, L_9, L_10, L_11, L_12, NULL);
V_0 = L_13;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_14 = V_0;
NullCheck(L_14);
bool L_15;
L_15 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_14, NULL);
if (L_15)
{
goto IL_0061;
}
}
{
__this->____done_2 = (bool)1;
return (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)NULL;
}
IL_0061:
{
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_16 = __this->____matches_1;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_17 = V_0;
NullCheck(L_16);
List_1_Add_m0C7F89C2A5D3E5A10B256D77E8A5EDEE64A95D33_inline(L_16, L_17, List_1_Add_m0C7F89C2A5D3E5A10B256D77E8A5EDEE64A95D33_RuntimeMethod_var);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_18 = V_0;
NullCheck(L_18);
int32_t L_19;
L_19 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_18, NULL);
__this->____prevlen_7 = L_19;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_20 = V_0;
NullCheck(L_20);
int32_t L_21 = L_20->____textpos_11;
__this->____startat_6 = L_21;
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_22 = __this->____matches_1;
NullCheck(L_22);
int32_t L_23;
L_23 = List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_inline(L_22, List_1_get_Count_m0D93129BCC0D9DE175A69DBA52CEF2C5C01655FA_RuntimeMethod_var);
int32_t L_24 = ___i0;
if ((((int32_t)L_23) <= ((int32_t)L_24)))
{
goto IL_0025;
}
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_25 = V_0;
return L_25;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::EnsureInitialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____done_2;
if (L_0)
{
goto IL_0014;
}
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1;
L_1 = MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D(__this, ((int32_t)2147483647LL), NULL);
}
IL_0014:
{
return;
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection::get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchCollection_get_IsSynchronized_mADB36B54C8A13661C6235AAF79E8C0FD659A163D (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Text.RegularExpressions.MatchCollection::get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MatchCollection_get_SyncRoot_m5E9A0515710C5B63B349C1B9E4D937D76AF43E68 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_CopyTo_m840C9BD921059464F949874DACD5D253AD3D7F9D (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654(__this, NULL);
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_0 = __this->____matches_1;
RuntimeArray* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck(L_0);
InterfaceActionInvoker2< RuntimeArray*, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0, L_1, L_2);
return;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::CopyTo(System.Text.RegularExpressions.Match[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_CopyTo_m63FBC7E98C8B6B4DB3D155758D4E378F01CFA539 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_CopyTo_m9295FB8910941CACEDB7EC990AE5B4E996AABB60_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654(__this, NULL);
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_0 = __this->____matches_1;
MatchU5BU5D_t2E376241A9B610CF1E5217DF84DFC2E3ACC5A488* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck(L_0);
List_1_CopyTo_m9295FB8910941CACEDB7EC990AE5B4E996AABB60(L_0, L_1, L_2, List_1_CopyTo_m9295FB8910941CACEDB7EC990AE5B4E996AABB60_RuntimeMethod_var);
return;
}
}
// System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.IndexOf(System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_IndexOf_m3F6BCFC1B93F62099835387557F8EF4F5F009E9F (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_IndexOf_mA83B0825AAD38553B619F13DB175B5C22EDDF07E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654(__this, NULL);
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_0 = __this->____matches_1;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1 = ___item0;
NullCheck(L_0);
int32_t L_2;
L_2 = List_1_IndexOf_mA83B0825AAD38553B619F13DB175B5C22EDDF07E(L_0, L_1, List_1_IndexOf_mA83B0825AAD38553B619F13DB175B5C22EDDF07E_RuntimeMethod_var);
return L_2;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.Insert(System.Int32,System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_Insert_m8F23643755F8DBBDB9F62C93983A65467B3C9ACE (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_Insert_m8F23643755F8DBBDB9F62C93983A65467B3C9ACE_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_RemoveAt_m35604FC5400522F86CAE7CAA4D13935A81BE8752 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_RemoveAt_m35604FC5400522F86CAE7CAA4D13935A81BE8752_RuntimeMethod_var)));
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_get_Item_m58CD54D0E2F19880287070225CB97B987B7F5C84 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1;
L_1 = VirtualFuncInvoker1< Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, int32_t >::Invoke(35 /* System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::get_Item(System.Int32) */, __this, L_0);
return L_1;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.set_Item(System.Int32,System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_set_Item_mEAF77169289374758416D2911AF012C7DCE9378A (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___value1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_set_Item_mEAF77169289374758416D2911AF012C7DCE9378A_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Add(System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Add_m154176CEDE7E9E069DDA9DDE0A81EF6B37BD0165 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Add_m154176CEDE7E9E069DDA9DDE0A81EF6B37BD0165_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Clear_m9BB9C93A481537B734AF3EB6715BFC00B94547BD (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Clear_m9BB9C93A481537B734AF3EB6715BFC00B94547BD_RuntimeMethod_var)));
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Contains(System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Contains_m388400538ADC88F2EA33B62458D2D05B647C4FAF (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_mB134DEE35BA3C32509C72B86A139B44803AB74E6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654(__this, NULL);
List_1_t425196350A2888B269895DE1C865A3E7E4E2C9B6* L_0 = __this->____matches_1;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1 = ___item0;
NullCheck(L_0);
bool L_2;
L_2 = List_1_Contains_mB134DEE35BA3C32509C72B86A139B44803AB74E6(L_0, L_1, List_1_Contains_mB134DEE35BA3C32509C72B86A139B44803AB74E6_RuntimeMethod_var);
return L_2;
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Remove(System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Remove_mEBB078E88FD8336140F2B4B0359CA4DF5D61D903 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___item0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Remove_mEBB078E88FD8336140F2B4B0359CA4DF5D61D903_RuntimeMethod_var)));
}
}
// System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Add(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MatchCollection_System_Collections_IList_Add_mC16406A9EE094327248A90E65F4E36CD53DFEFEE (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_IList_Add_mC16406A9EE094327248A90E65F4E36CD53DFEFEE_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_IList_Clear_mCFB22D61C256132062B66F3D91721F71B32C02E2 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_IList_Clear_mCFB22D61C256132062B66F3D91721F71B32C02E2_RuntimeMethod_var)));
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchCollection_System_Collections_IList_Contains_m2A0C18BBE1D5CE215A57706BB1E81C375BE53A07 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t0E677CEC3662A83D9FB579D268AD5C28BBEB68EB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
if (!((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)IsInstClass((RuntimeObject*)L_0, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = ___value0;
bool L_2;
L_2 = InterfaceFuncInvoker1< bool, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Text.RegularExpressions.Match>::Contains(T) */, ICollection_1_t0E677CEC3662A83D9FB579D268AD5C28BBEB68EB_il2cpp_TypeInfo_var, __this, ((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)CastclassClass((RuntimeObject*)L_1, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var)));
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
// System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.IList.IndexOf(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MatchCollection_System_Collections_IList_IndexOf_m324811BE6C4E84EAC5FD55325201E2EE07D9AE4B (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tDD508225C05789721D31C8EA0A0B7C5E116F37D8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
if (((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)IsInstClass((RuntimeObject*)L_0, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (-1);
}
IL_000a:
{
RuntimeObject* L_1 = ___value0;
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Text.RegularExpressions.Match>::IndexOf(T) */, IList_1_tDD508225C05789721D31C8EA0A0B7C5E116F37D8_il2cpp_TypeInfo_var, __this, ((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)CastclassClass((RuntimeObject*)L_1, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var)));
return L_2;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Insert(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_IList_Insert_m3D517C0C55A72CDD8D2AD7D59D7D1423C807231C (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_IList_Insert_m3D517C0C55A72CDD8D2AD7D59D7D1423C807231C_RuntimeMethod_var)));
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.IList.get_IsFixedSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchCollection_System_Collections_IList_get_IsFixedSize_mFDC4D4DAD504EB2D9A2CE03BAC58A03C0DC946A7 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_IList_Remove_mAD17E6DAC2834015AB24C4D66EABB9353C24089A (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_IList_Remove_mAD17E6DAC2834015AB24C4D66EABB9353C24089A_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_IList_RemoveAt_m5177AB0687CF2F1EB97C591DB987491DDDD7B2C9 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_IList_RemoveAt_m5177AB0687CF2F1EB97C591DB987491DDDD7B2C9_RuntimeMethod_var)));
}
}
// System.Object System.Text.RegularExpressions.MatchCollection::System.Collections.IList.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MatchCollection_System_Collections_IList_get_Item_mC90C6F44948350631D273AFAEE08873B39F8EF1F (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1;
L_1 = VirtualFuncInvoker1< Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, int32_t >::Invoke(35 /* System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::get_Item(System.Int32) */, __this, L_0);
return L_1;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection_System_Collections_IList_set_Item_mF5EE10AA5EF639CB97DCA5D5F82A41DA2C196E32 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MatchCollection_System_Collections_IList_set_Item_mF5EE10AA5EF639CB97DCA5D5F82A41DA2C196E32_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.MatchCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchCollection__ctor_m816A933886BCC9F63F61F20057F42B2322B5E512 (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchCollection__ctor_m816A933886BCC9F63F61F20057F42B2322B5E512_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(MatchCollection__ctor_m816A933886BCC9F63F61F20057F42B2322B5E512_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::.ctor(System.Text.RegularExpressions.MatchCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m7FB61A151678DD2B024D5064248818D83F77A6B1 (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* ___collection0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* L_0 = ___collection0;
__this->____collection_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____collection_0), (void*)L_0);
__this->____index_1 = (-1);
return;
}
}
// System.Boolean System.Text.RegularExpressions.MatchCollection/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB909B0EBF0E5BDE4E0686174E2F15ED8DA9A6A3F (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____index_1;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_000c;
}
}
{
return (bool)0;
}
IL_000c:
{
int32_t L_1 = __this->____index_1;
__this->____index_1 = ((int32_t)il2cpp_codegen_add(L_1, 1));
MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* L_2 = __this->____collection_0;
int32_t L_3 = __this->____index_1;
NullCheck(L_2);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_4;
L_4 = MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D(L_2, L_3, NULL);
if (L_4)
{
goto IL_0037;
}
}
{
__this->____index_1 = ((int32_t)-2);
return (bool)0;
}
IL_0037:
{
return (bool)1;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7 (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____index_1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7_RuntimeMethod_var)));
}
IL_0014:
{
MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* L_2 = __this->____collection_0;
int32_t L_3 = __this->____index_1;
NullCheck(L_2);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_4;
L_4 = MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D(L_2, L_3, NULL);
return L_4;
}
}
// System.Object System.Text.RegularExpressions.MatchCollection/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_mBC6B322ACF6C0378854DBC6511B79D9ADF947A9B (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, const RuntimeMethod* method)
{
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0;
L_0 = Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7(__this, NULL);
return L_0;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m08E6B917407D0CFD0D52DBA2B2A932E079C4B91E (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, const RuntimeMethod* method)
{
{
__this->____index_1 = (-1);
return;
}
}
// System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_IDisposable_Dispose_mF679BE85FB31DEBD4E1DEE10118DE35A5DCE322E (Enumerator_t600BA5FC7EA2F68C19679262670BEEA5DB0CC61D* __this, const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.ExclusiveReference::Get()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* ExclusiveReference_Get_mCC2B9161946C9532001438C65A38E8D8FD56FB3C (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* __this, const RuntimeMethod* method)
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* V_0 = NULL;
{
int32_t* L_0 = (&__this->____locked_2);
il2cpp_codegen_memory_barrier();
int32_t L_1;
L_1 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_0, 1, NULL);
if (L_1)
{
goto IL_002c;
}
}
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_2 = __this->____ref_0;
V_0 = L_2;
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_3 = V_0;
if (L_3)
{
goto IL_0023;
}
}
{
il2cpp_codegen_memory_barrier();
__this->____locked_2 = 0;
return (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)NULL;
}
IL_0023:
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_4 = V_0;
__this->____obj_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____obj_1), (void*)L_4);
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_5 = V_0;
return L_5;
}
IL_002c:
{
return (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)NULL;
}
}
// System.Void System.Text.RegularExpressions.ExclusiveReference::Release(System.Text.RegularExpressions.RegexRunner)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018 (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* __this, RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* ___obj0, const RuntimeMethod* method)
{
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_0 = ___obj0;
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*)&_stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018_RuntimeMethod_var)));
}
IL_000e:
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_2 = __this->____obj_1;
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_3 = ___obj0;
if ((!(((RuntimeObject*)(RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)L_2) == ((RuntimeObject*)(RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)L_3))))
{
goto IL_0028;
}
}
{
__this->____obj_1 = (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____obj_1), (void*)(RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)NULL);
il2cpp_codegen_memory_barrier();
__this->____locked_2 = 0;
return;
}
IL_0028:
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_4 = __this->____obj_1;
if (L_4)
{
goto IL_0057;
}
}
{
int32_t* L_5 = (&__this->____locked_2);
il2cpp_codegen_memory_barrier();
int32_t L_6;
L_6 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_5, 1, NULL);
if (L_6)
{
goto IL_0057;
}
}
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_7 = __this->____ref_0;
if (L_7)
{
goto IL_004d;
}
}
{
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_8 = ___obj0;
__this->____ref_0 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ref_0), (void*)L_8);
}
IL_004d:
{
il2cpp_codegen_memory_barrier();
__this->____locked_2 = 0;
return;
}
IL_0057:
{
return;
}
}
// System.Void System.Text.RegularExpressions.ExclusiveReference::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExclusiveReference__ctor_m41EB96FC1FA261CB792752B89F15E6513FEA1722 (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* __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.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::GetCachedCode(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, bool ___isToAdd1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
V_0 = L_0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_2 = V_0;
NullCheck(L_2);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_3 = L_2->___Key_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_4 = ___key0;
bool L_5;
L_5 = CachedCodeEntryKey_op_Equality_m5C48CEBA5D7F893F4FE88D06917EB738615DDCC6(L_3, L_4, NULL);
if (!L_5)
{
goto IL_0019;
}
}
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_6 = V_0;
return L_6;
}
IL_0019:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_7 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheSize_1;
if (L_7)
{
goto IL_0022;
}
}
{
return (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)NULL;
}
IL_0022:
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_8 = ___key0;
bool L_9 = ___isToAdd1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_10;
L_10 = Regex_GetCachedCodeEntryInternal_m9FE175C47BF909F7F223013004C0EA0DAD660C06(__this, L_8, L_9, NULL);
return L_10;
}
}
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::GetCachedCodeEntryInternal(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_GetCachedCodeEntryInternal_m9FE175C47BF909F7F223013004C0EA0DAD660C06 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, bool ___isToAdd1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m6D12AF4D9B1DF19B3C0A2C1D93068550DB2314F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* V_0 = NULL;
bool V_1 = false;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_2 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_3 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_4 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0115:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_011e;
}
}
{
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_011e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_4 = ___key0;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_5;
L_5 = Regex_LookupCachedAndPromote_m41760A936BAED48327B5E239894DA154B7832DD3(L_4, NULL);
V_2 = L_5;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_6 = V_2;
bool L_7 = ___isToAdd1;
if (!((int32_t)(((((RuntimeObject*)(CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)L_6) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0)&(int32_t)L_7)))
{
goto IL_0110_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_8 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheSize_1;
if (!L_8)
{
goto IL_0110_1;
}
}
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_9 = ___key0;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = __this->___capnames_16;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = __this->___capslist_17;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_12 = __this->____code_21;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_13 = __this->___caps_15;
int32_t L_14 = __this->___capsize_18;
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* L_15 = __this->____runnerref_19;
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_16 = __this->____replref_20;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_17 = (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)il2cpp_codegen_object_new(CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39_il2cpp_TypeInfo_var);
NullCheck(L_17);
CachedCodeEntry__ctor_m14145ADFF67BA7C888673D806C24E28C96B83B2A(L_17, L_9, L_10, L_11, L_12, L_13, L_14, L_15, L_16, NULL);
V_2 = L_17;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_18 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
if (!L_18)
{
goto IL_007a_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_19 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_20 = V_2;
NullCheck(L_19);
L_19->___Next_0 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&L_19->___Next_0), (void*)L_20);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_21 = V_2;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_22 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
NullCheck(L_21);
L_21->___Previous_1 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&L_21->___Previous_1), (void*)L_22);
}
IL_007a_1:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_23 = V_2;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4), (void*)L_23);
int32_t L_24 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3 = ((int32_t)il2cpp_codegen_add(L_24, 1));
int32_t L_25 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
if ((((int32_t)L_25) < ((int32_t)((int32_t)10))))
{
goto IL_00b2_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_26 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)10)))))
{
goto IL_00a6_1;
}
}
{
Regex_FillCacheDictionary_mC47F317967E556D1F03A344B78B215356D604755(__this, NULL);
goto IL_00b2_1;
}
IL_00a6_1:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_27 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_28 = ___key0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_29 = V_2;
NullCheck(L_27);
Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81(L_27, L_28, L_29, Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81_RuntimeMethod_var);
}
IL_00b2_1:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_30 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5;
if (L_30)
{
goto IL_00c1_1;
}
}
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_31 = V_2;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5 = L_31;
Il2CppCodeGenWriteBarrier((void**)(&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5), (void*)L_31);
goto IL_0110_1;
}
IL_00c1_1:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_32 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
int32_t L_33 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheSize_1;
if ((((int32_t)L_32) <= ((int32_t)L_33)))
{
goto IL_0110_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_34 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5;
V_3 = L_34;
int32_t L_35 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
if ((((int32_t)L_35) < ((int32_t)((int32_t)10))))
{
goto IL_00ed_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_36 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_37 = V_3;
NullCheck(L_37);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_38 = L_37->___Key_2;
NullCheck(L_36);
bool L_39;
L_39 = Dictionary_2_Remove_m6D12AF4D9B1DF19B3C0A2C1D93068550DB2314F1(L_36, L_38, Dictionary_2_Remove_m6D12AF4D9B1DF19B3C0A2C1D93068550DB2314F1_RuntimeMethod_var);
}
IL_00ed_1:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_40 = V_3;
NullCheck(L_40);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_41 = L_40->___Next_0;
NullCheck(L_41);
L_41->___Previous_1 = (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_41->___Previous_1), (void*)(CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)NULL);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_42 = V_3;
NullCheck(L_42);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_43 = L_42->___Next_0;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5 = L_43;
Il2CppCodeGenWriteBarrier((void**)(&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5), (void*)L_43);
int32_t L_44 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3 = ((int32_t)il2cpp_codegen_subtract(L_44, 1));
}
IL_0110_1:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_45 = V_2;
V_4 = L_45;
goto IL_011f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_011f:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_46 = V_4;
return L_46;
}
}
// System.Void System.Text.RegularExpressions.Regex::FillCacheDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_FillCacheDictionary_mC47F317967E556D1F03A344B78B215356D604755 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m15851D727EEB432B18111F32D3F43D298CFE44DD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
NullCheck(L_0);
Dictionary_2_Clear_m15851D727EEB432B18111F32D3F43D298CFE44DD(L_0, Dictionary_2_Clear_m15851D727EEB432B18111F32D3F43D298CFE44DD_RuntimeMethod_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_1 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
V_0 = L_1;
goto IL_002a;
}
IL_0012:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_2 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_3 = V_0;
NullCheck(L_3);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_4 = L_3->___Key_2;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_5 = V_0;
NullCheck(L_2);
Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81(L_2, L_4, L_5, Dictionary_2_Add_mF2D7262E69DB76A9EEC9E28EF88EFCC299E75E81_RuntimeMethod_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_6 = V_0;
NullCheck(L_6);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_7 = L_6->___Previous_1;
V_0 = L_7;
}
IL_002a:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_8 = V_0;
if (L_8)
{
goto IL_0012;
}
}
{
return;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::TryGetCacheValue(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_TryGetCacheValue_m8785E636E24F8F0C3E5A7CFE516978A434C99DEB (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** ___entry1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
if ((((int32_t)L_0) < ((int32_t)((int32_t)10))))
{
goto IL_0016;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_1 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_2 = ___key0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_3 = ___entry1;
NullCheck(L_1);
bool L_4;
L_4 = Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31(L_1, L_2, L_3, Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31_RuntimeMethod_var);
return L_4;
}
IL_0016:
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_5 = ___key0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_6 = ___entry1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Regex_TryGetCacheValueSmall_mEA1FE67593D84A849F8DDFD9BB4144FF5BE18A64(L_5, L_6, NULL);
return L_7;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::TryGetCacheValueSmall(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_TryGetCacheValueSmall_mEA1FE67593D84A849F8DDFD9BB4144FF5BE18A64 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** ___entry1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* G_B2_0 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** G_B2_1 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* G_B1_0 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** G_B1_1 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* G_B3_0 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** G_B3_1 = NULL;
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_0 = ___entry1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_1 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_2 = L_1;
G_B1_0 = L_2;
G_B1_1 = L_0;
if (L_2)
{
G_B2_0 = L_2;
G_B2_1 = L_0;
goto IL_000d;
}
}
{
G_B3_0 = ((CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)(NULL));
G_B3_1 = G_B1_1;
goto IL_0012;
}
IL_000d:
{
NullCheck(G_B2_0);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_3 = G_B2_0->___Previous_1;
G_B3_0 = L_3;
G_B3_1 = G_B2_1;
}
IL_0012:
{
*((RuntimeObject**)G_B3_1) = (RuntimeObject*)G_B3_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)G_B3_1, (void*)(RuntimeObject*)G_B3_0);
goto IL_002f;
}
IL_0015:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_4 = ___entry1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_5 = *((CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39**)L_4);
NullCheck(L_5);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_6 = L_5->___Key_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_7 = ___key0;
bool L_8;
L_8 = CachedCodeEntryKey_op_Equality_m5C48CEBA5D7F893F4FE88D06917EB738615DDCC6(L_6, L_7, NULL);
if (!L_8)
{
goto IL_0026;
}
}
{
return (bool)1;
}
IL_0026:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_9 = ___entry1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_10 = ___entry1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_11 = *((CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39**)L_10);
NullCheck(L_11);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_12 = L_11->___Previous_1;
*((RuntimeObject**)L_9) = (RuntimeObject*)L_12;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_9, (void*)(RuntimeObject*)L_12);
}
IL_002f:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_13 = ___entry1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_14 = *((CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39**)L_13);
if (L_14)
{
goto IL_0015;
}
}
{
return (bool)0;
}
}
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::LookupCachedAndPromote(System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_LookupCachedAndPromote_m41760A936BAED48327B5E239894DA154B7832DD3 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_0 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* G_B2_0 = NULL;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
G_B3_0 = 0;
goto IL_0017;
}
IL_000c:
{
NullCheck(G_B2_0);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_2 = G_B2_0->___Key_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_3 = ___key0;
bool L_4;
L_4 = CachedCodeEntryKey_op_Equality_m5C48CEBA5D7F893F4FE88D06917EB738615DDCC6(L_2, L_3, NULL);
G_B3_0 = ((int32_t)(L_4));
}
IL_0017:
{
if (!G_B3_0)
{
goto IL_001f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_5 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
return L_5;
}
IL_001f:
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_6 = ___key0;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Regex_TryGetCacheValue_m8785E636E24F8F0C3E5A7CFE516978A434C99DEB_inline(L_6, (&V_0), NULL);
if (!L_7)
{
goto IL_0083;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_8 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_9 = V_0;
if ((!(((RuntimeObject*)(CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)L_8) == ((RuntimeObject*)(CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)L_9))))
{
goto IL_003e;
}
}
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_10 = V_0;
NullCheck(L_10);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_11 = L_10->___Next_0;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheLast_5), (void*)L_11);
goto IL_004f;
}
IL_003e:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_12 = V_0;
NullCheck(L_12);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_13 = L_12->___Previous_1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_14 = V_0;
NullCheck(L_14);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_15 = L_14->___Next_0;
NullCheck(L_13);
L_13->___Next_0 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&L_13->___Next_0), (void*)L_15);
}
IL_004f:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_16 = V_0;
NullCheck(L_16);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_17 = L_16->___Next_0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_18 = V_0;
NullCheck(L_18);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_19 = L_18->___Previous_1;
NullCheck(L_17);
L_17->___Previous_1 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&L_17->___Previous_1), (void*)L_19);
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_20 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_21 = V_0;
NullCheck(L_20);
L_20->___Next_0 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&L_20->___Next_0), (void*)L_21);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_22 = V_0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_23 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
NullCheck(L_22);
L_22->___Previous_1 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&L_22->___Previous_1), (void*)L_23);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_24 = V_0;
NullCheck(L_24);
L_24->___Next_0 = (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_24->___Next_0), (void*)(CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)NULL);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_25 = V_0;
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4), (void*)L_25);
}
IL_0083:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_26 = V_0;
return L_26;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m967E98137B140DFD845C5E1699D1BC8EF08CC76C (String_t* ___input0, String_t* ___pattern1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
String_t* L_1 = ___pattern1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8;
bool L_3;
L_3 = Regex_IsMatch_m3709329406E39A80F61F4DD2CC9AB672835A3E81(L_0, L_1, 0, L_2, NULL);
return L_3;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_mCCD41B2FBCF36A2329B7D174FD117C09205CFA62 (String_t* ___input0, String_t* ___pattern1, int32_t ___options2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
String_t* L_1 = ___pattern1;
int32_t L_2 = ___options2;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8;
bool L_4;
L_4 = Regex_IsMatch_m3709329406E39A80F61F4DD2CC9AB672835A3E81(L_0, L_1, L_2, L_3, NULL);
return L_4;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m3709329406E39A80F61F4DD2CC9AB672835A3E81 (String_t* ___input0, String_t* ___pattern1, int32_t ___options2, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern1;
int32_t L_1 = ___options2;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___matchTimeout3;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_3 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
NullCheck(L_3);
Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4(L_3, L_0, L_1, L_2, (bool)1, NULL);
String_t* L_4 = ___input0;
NullCheck(L_3);
bool L_5;
L_5 = Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49(L_3, L_4, NULL);
return L_5;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, const RuntimeMethod* method)
{
String_t* G_B4_0 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B4_1 = NULL;
String_t* G_B3_0 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B3_1 = NULL;
int32_t G_B5_0 = 0;
String_t* G_B5_1 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B5_2 = NULL;
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
bool L_3;
L_3 = Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C(__this, NULL);
G_B3_0 = L_2;
G_B3_1 = __this;
if (L_3)
{
G_B4_0 = L_2;
G_B4_1 = __this;
goto IL_001b;
}
}
{
G_B5_0 = 0;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
goto IL_0021;
}
IL_001b:
{
String_t* L_4 = ___input0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
G_B5_0 = L_5;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
}
IL_0021:
{
NullCheck(G_B5_2);
bool L_6;
L_6 = Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E(G_B5_2, G_B5_1, G_B5_0, NULL);
return L_6;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, int32_t ___startat1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
String_t* L_3 = ___input0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5 = ___startat1;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_6;
L_6 = Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8(__this, (bool)1, (-1), L_2, 0, L_4, L_5, NULL);
return (bool)((((RuntimeObject*)(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)L_6) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_m49DD7357B4C9A9BCBCF686DAB3B5598B1BC688D7 (String_t* ___input0, String_t* ___pattern1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
String_t* L_1 = ___pattern1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_3;
L_3 = Regex_Match_m793BC1BE5D514C9CE9B0D2A6B9A0536BAE7C6147(L_0, L_1, 0, L_2, NULL);
return L_3;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_m793BC1BE5D514C9CE9B0D2A6B9A0536BAE7C6147 (String_t* ___input0, String_t* ___pattern1, int32_t ___options2, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern1;
int32_t L_1 = ___options2;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___matchTimeout3;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_3 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
NullCheck(L_3);
Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4(L_3, L_0, L_1, L_2, (bool)1, NULL);
String_t* L_4 = ___input0;
NullCheck(L_3);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_5;
L_5 = Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84(L_3, L_4, NULL);
return L_5;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, const RuntimeMethod* method)
{
String_t* G_B4_0 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B4_1 = NULL;
String_t* G_B3_0 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B3_1 = NULL;
int32_t G_B5_0 = 0;
String_t* G_B5_1 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B5_2 = NULL;
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
bool L_3;
L_3 = Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C(__this, NULL);
G_B3_0 = L_2;
G_B3_1 = __this;
if (L_3)
{
G_B4_0 = L_2;
G_B4_1 = __this;
goto IL_001b;
}
}
{
G_B5_0 = 0;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
goto IL_0021;
}
IL_001b:
{
String_t* L_4 = ___input0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
G_B5_0 = L_5;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
}
IL_0021:
{
NullCheck(G_B5_2);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_6;
L_6 = Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3(G_B5_2, G_B5_1, G_B5_0, NULL);
return L_6;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, int32_t ___startat1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
String_t* L_3 = ___input0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5 = ___startat1;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_6;
L_6 = Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8(__this, (bool)0, (-1), L_2, 0, L_4, L_5, NULL);
return L_6;
}
}
// System.Text.RegularExpressions.MatchCollection System.Text.RegularExpressions.Regex::Matches(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* Regex_Matches_mD0E47C23B403AC380AF7EAECA48E63C61DC39CDF (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, int32_t ___startat1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Matches_mD0E47C23B403AC380AF7EAECA48E63C61DC39CDF_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
String_t* L_3 = ___input0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5 = ___startat1;
MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC* L_6 = (MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC*)il2cpp_codegen_object_new(MatchCollection_t84805BAED3D556A405EE3FD165856045026106BC_il2cpp_TypeInfo_var);
NullCheck(L_6);
MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE(L_6, __this, L_2, 0, L_4, L_5, NULL);
return L_6;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_mA40B00220816EB1850F503AAB876812C726D8D66 (String_t* ___input0, String_t* ___pattern1, String_t* ___replacement2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
String_t* L_1 = ___pattern1;
String_t* L_2 = ___replacement2;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8;
String_t* L_4;
L_4 = Regex_Replace_m09B7AAE77B831CF7E8B1F469D62EF719069370EB(L_0, L_1, L_2, 0, L_3, NULL);
return L_4;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m09B7AAE77B831CF7E8B1F469D62EF719069370EB (String_t* ___input0, String_t* ___pattern1, String_t* ___replacement2, int32_t ___options3, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern1;
int32_t L_1 = ___options3;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___matchTimeout4;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_3 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
NullCheck(L_3);
Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4(L_3, L_0, L_1, L_2, (bool)1, NULL);
String_t* L_4 = ___input0;
String_t* L_5 = ___replacement2;
NullCheck(L_3);
String_t* L_6;
L_6 = Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90(L_3, L_4, L_5, NULL);
return L_6;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, String_t* ___replacement1, const RuntimeMethod* method)
{
int32_t G_B4_0 = 0;
String_t* G_B4_1 = NULL;
String_t* G_B4_2 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B4_3 = NULL;
int32_t G_B3_0 = 0;
String_t* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B3_3 = NULL;
int32_t G_B5_0 = 0;
int32_t G_B5_1 = 0;
String_t* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B5_4 = NULL;
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
String_t* L_3 = ___replacement1;
bool L_4;
L_4 = Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C(__this, NULL);
G_B3_0 = (-1);
G_B3_1 = L_3;
G_B3_2 = L_2;
G_B3_3 = __this;
if (L_4)
{
G_B4_0 = (-1);
G_B4_1 = L_3;
G_B4_2 = L_2;
G_B4_3 = __this;
goto IL_001d;
}
}
{
G_B5_0 = 0;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
G_B5_4 = G_B3_3;
goto IL_0023;
}
IL_001d:
{
String_t* L_5 = ___input0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
G_B5_0 = L_6;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
}
IL_0023:
{
NullCheck(G_B5_4);
String_t* L_7;
L_7 = Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4(G_B5_4, G_B5_3, G_B5_2, G_B5_1, G_B5_0, NULL);
return L_7;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, String_t* ___replacement1, int32_t ___count2, int32_t ___startat3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___replacement1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E972889E9B24A074D194A58B80B967B519863E2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4_RuntimeMethod_var)));
}
IL_001c:
{
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_4 = __this->____replref_20;
String_t* L_5 = ___replacement1;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->___caps_15;
int32_t L_7 = __this->___capsize_18;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_8 = __this->___capnames_16;
int32_t L_9 = __this->___roptions_13;
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* L_10;
L_10 = RegexReplacement_GetOrCreate_m3DABA1D0A9D785394FC1B3E7373EBFD0A2FEB3B5(L_4, L_5, L_6, L_7, L_8, L_9, NULL);
String_t* L_11 = ___input0;
int32_t L_12 = ___count2;
int32_t L_13 = ___startat3;
NullCheck(L_10);
String_t* L_14;
L_14 = RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9(L_10, __this, L_11, L_12, L_13, NULL);
return L_14;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.Text.RegularExpressions.MatchEvaluator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m424B7F3F25D939A4DC43BFE31F4E8C5ACC1B69E0 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___evaluator1, const RuntimeMethod* method)
{
int32_t G_B4_0 = 0;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* G_B4_1 = NULL;
String_t* G_B4_2 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B4_3 = NULL;
int32_t G_B3_0 = 0;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B3_3 = NULL;
int32_t G_B5_0 = 0;
int32_t G_B5_1 = 0;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B5_4 = NULL;
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_m424B7F3F25D939A4DC43BFE31F4E8C5ACC1B69E0_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___input0;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_3 = ___evaluator1;
bool L_4;
L_4 = Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C(__this, NULL);
G_B3_0 = (-1);
G_B3_1 = L_3;
G_B3_2 = L_2;
G_B3_3 = __this;
if (L_4)
{
G_B4_0 = (-1);
G_B4_1 = L_3;
G_B4_2 = L_2;
G_B4_3 = __this;
goto IL_001d;
}
}
{
G_B5_0 = 0;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
G_B5_4 = G_B3_3;
goto IL_0023;
}
IL_001d:
{
String_t* L_5 = ___input0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
G_B5_0 = L_6;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
}
IL_0023:
{
NullCheck(G_B5_4);
String_t* L_7;
L_7 = Regex_Replace_m600AC2C22F66C22022AD4A34B16F357A82D568FB(G_B5_4, G_B5_3, G_B5_2, G_B5_1, G_B5_0, NULL);
return L_7;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.Text.RegularExpressions.MatchEvaluator,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m600AC2C22F66C22022AD4A34B16F357A82D568FB (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___evaluator1, int32_t ___count2, int32_t ___startat3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
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*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_m600AC2C22F66C22022AD4A34B16F357A82D568FB_RuntimeMethod_var)));
}
IL_000e:
{
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_2 = ___evaluator1;
String_t* L_3 = ___input0;
int32_t L_4 = ___count2;
int32_t L_5 = ___startat3;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
String_t* L_6;
L_6 = Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22(L_2, __this, L_3, L_4, L_5, NULL);
return L_6;
}
}
// System.String System.Text.RegularExpressions.Regex::Replace(System.Text.RegularExpressions.MatchEvaluator,System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22 (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___evaluator0, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___regex1, String_t* ___input2, int32_t ___count3, int32_t ___startat4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* V_0 = NULL;
StringBuilder_t* V_1 = NULL;
int32_t V_2 = 0;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_0 = ___evaluator0;
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*)&_stringLiteralB209143BAEF9A40C448BD5BA6F688685DAED7B15)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___count3;
if ((((int32_t)L_2) >= ((int32_t)(-1))))
{
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*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9957B21B361EC3B1754C930C5A1C41F851A55813)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22_RuntimeMethod_var)));
}
IL_0022:
{
int32_t L_4 = ___startat4;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_5 = ___startat4;
String_t* L_6 = ___input2;
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_0041;
}
}
IL_0031:
{
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*)&_stringLiteralB132716D89EF0EE2CEF39498DA0895B2449AB344)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB596320AE4D74537B29168E9BDF95B753E2B5301)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Replace_m53B713FD0201D7EFD2C5ED87AF42A08E1F0D4A22_RuntimeMethod_var)));
}
IL_0041:
{
int32_t L_9 = ___count3;
if (L_9)
{
goto IL_0046;
}
}
{
String_t* L_10 = ___input2;
return L_10;
}
IL_0046:
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_11 = ___regex1;
String_t* L_12 = ___input2;
int32_t L_13 = ___startat4;
NullCheck(L_11);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_14;
L_14 = Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3(L_11, L_12, L_13, NULL);
V_0 = L_14;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_15 = V_0;
NullCheck(L_15);
bool L_16;
L_16 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_15, NULL);
if (L_16)
{
goto IL_005a;
}
}
{
String_t* L_17 = ___input2;
return L_17;
}
IL_005a:
{
StringBuilder_t* L_18;
L_18 = StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1(((int32_t)16), NULL);
V_1 = L_18;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_19 = ___regex1;
NullCheck(L_19);
bool L_20;
L_20 = Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B(L_19, NULL);
if (L_20)
{
goto IL_00db;
}
}
{
V_2 = 0;
}
IL_006c:
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_21 = V_0;
NullCheck(L_21);
int32_t L_22;
L_22 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_21, NULL);
int32_t L_23 = V_2;
if ((((int32_t)L_22) == ((int32_t)L_23)))
{
goto IL_0086;
}
}
{
StringBuilder_t* L_24 = V_1;
String_t* L_25 = ___input2;
int32_t L_26 = V_2;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_27 = V_0;
NullCheck(L_27);
int32_t L_28;
L_28 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_27, NULL);
int32_t L_29 = V_2;
NullCheck(L_24);
StringBuilder_t* L_30;
L_30 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_24, L_25, L_26, ((int32_t)il2cpp_codegen_subtract(L_28, L_29)), NULL);
}
IL_0086:
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_31 = V_0;
NullCheck(L_31);
int32_t L_32;
L_32 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_31, NULL);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_33 = V_0;
NullCheck(L_33);
int32_t L_34;
L_34 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_33, NULL);
V_2 = ((int32_t)il2cpp_codegen_add(L_32, L_34));
StringBuilder_t* L_35 = V_1;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_36 = ___evaluator0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_37 = V_0;
NullCheck(L_36);
String_t* L_38;
L_38 = MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_inline(L_36, L_37, NULL);
NullCheck(L_35);
StringBuilder_t* L_39;
L_39 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_35, L_38, NULL);
int32_t L_40 = ___count3;
int32_t L_41 = ((int32_t)il2cpp_codegen_subtract(L_40, 1));
___count3 = L_41;
if (!L_41)
{
goto IL_00b9;
}
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_42 = V_0;
NullCheck(L_42);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_43;
L_43 = Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052(L_42, NULL);
V_0 = L_43;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_44 = V_0;
NullCheck(L_44);
bool L_45;
L_45 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_44, NULL);
if (L_45)
{
goto IL_006c;
}
}
IL_00b9:
{
int32_t L_46 = V_2;
String_t* L_47 = ___input2;
NullCheck(L_47);
int32_t L_48;
L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
if ((((int32_t)L_46) >= ((int32_t)L_48)))
{
goto IL_0185;
}
}
{
StringBuilder_t* L_49 = V_1;
String_t* L_50 = ___input2;
int32_t L_51 = V_2;
String_t* L_52 = ___input2;
NullCheck(L_52);
int32_t L_53;
L_53 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_52, NULL);
int32_t L_54 = V_2;
NullCheck(L_49);
StringBuilder_t* L_55;
L_55 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_49, L_50, L_51, ((int32_t)il2cpp_codegen_subtract(L_53, L_54)), NULL);
goto IL_0185;
}
IL_00db:
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_56 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
NullCheck(L_56);
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_56, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
V_3 = L_56;
String_t* L_57 = ___input2;
NullCheck(L_57);
int32_t L_58;
L_58 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_57, NULL);
V_4 = L_58;
}
IL_00e9:
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_59 = V_0;
NullCheck(L_59);
int32_t L_60;
L_60 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_59, NULL);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_61 = V_0;
NullCheck(L_61);
int32_t L_62;
L_62 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_61, NULL);
int32_t L_63 = V_4;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_60, L_62))) == ((int32_t)L_63)))
{
goto IL_0123;
}
}
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_64 = V_3;
String_t* L_65 = ___input2;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_66 = V_0;
NullCheck(L_66);
int32_t L_67;
L_67 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_66, NULL);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_68 = V_0;
NullCheck(L_68);
int32_t L_69;
L_69 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_68, NULL);
int32_t L_70 = V_4;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_71 = V_0;
NullCheck(L_71);
int32_t L_72;
L_72 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_71, NULL);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_73 = V_0;
NullCheck(L_73);
int32_t L_74;
L_74 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_73, NULL);
NullCheck(L_65);
String_t* L_75;
L_75 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_65, ((int32_t)il2cpp_codegen_add(L_67, L_69)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_70, L_72)), L_74)), NULL);
NullCheck(L_64);
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_64, L_75, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
}
IL_0123:
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_76 = V_0;
NullCheck(L_76);
int32_t L_77;
L_77 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_76, NULL);
V_4 = L_77;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_78 = V_3;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_79 = ___evaluator0;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_80 = V_0;
NullCheck(L_79);
String_t* L_81;
L_81 = MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_inline(L_79, L_80, NULL);
NullCheck(L_78);
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_78, L_81, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
int32_t L_82 = ___count3;
int32_t L_83 = ((int32_t)il2cpp_codegen_subtract(L_82, 1));
___count3 = L_83;
if (!L_83)
{
goto IL_014f;
}
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_84 = V_0;
NullCheck(L_84);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_85;
L_85 = Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052(L_84, NULL);
V_0 = L_85;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_86 = V_0;
NullCheck(L_86);
bool L_87;
L_87 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_86, NULL);
if (L_87)
{
goto IL_00e9;
}
}
IL_014f:
{
int32_t L_88 = V_4;
if ((((int32_t)L_88) <= ((int32_t)0)))
{
goto IL_015f;
}
}
{
StringBuilder_t* L_89 = V_1;
String_t* L_90 = ___input2;
int32_t L_91 = V_4;
NullCheck(L_89);
StringBuilder_t* L_92;
L_92 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_89, L_90, 0, L_91, NULL);
}
IL_015f:
{
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_93 = V_3;
NullCheck(L_93);
int32_t L_94;
L_94 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_93, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
V_5 = ((int32_t)il2cpp_codegen_subtract(L_94, 1));
goto IL_0180;
}
IL_016b:
{
StringBuilder_t* L_95 = V_1;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_96 = V_3;
int32_t L_97 = V_5;
NullCheck(L_96);
String_t* L_98;
L_98 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_96, L_97, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
NullCheck(L_95);
StringBuilder_t* L_99;
L_99 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_95, L_98, NULL);
int32_t L_100 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_100, 1));
}
IL_0180:
{
int32_t L_101 = V_5;
if ((((int32_t)L_101) >= ((int32_t)0)))
{
goto IL_016b;
}
}
IL_0185:
{
StringBuilder_t* L_102 = V_1;
String_t* L_103;
L_103 = StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F(L_102, NULL);
return L_103;
}
}
// System.Void System.Text.RegularExpressions.Regex::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__cctor_mF29CE2FFB1941E7609C5B67C0236AC98003F675F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m5A1460881FED052D973F8F540B9406B0605D9333_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheSize_1 = ((int32_t)15);
int32_t L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheSize_1;
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_1 = (Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7*)il2cpp_codegen_object_new(Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7_il2cpp_TypeInfo_var);
NullCheck(L_1);
Dictionary_2__ctor_m5A1460881FED052D973F8F540B9406B0605D9333(L_1, L_0, Dictionary_2__ctor_m5A1460881FED052D973F8F540B9406B0605D9333_RuntimeMethod_var);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2), (void*)L_1);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3 = 0;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2;
L_2 = TimeSpan_FromMilliseconds_m95DA1C64A7D3111F8451D932CD0F94D608B1EC54((2147483646.0), NULL);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_maximumMatchTimeout_6 = L_2;
il2cpp_codegen_runtime_class_init_inline(Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41_StaticFields*)il2cpp_codegen_static_fields_for(Timeout_tDBB45B56C59D1AF9A6B1EC5F1E3200D12AB18E41_il2cpp_TypeInfo_var))->___InfiniteTimeSpan_0;
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___InfiniteMatchTimeout_9 = L_3;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4;
L_4 = Regex_InitDefaultMatchTimeout_mC441DFFACCC15C2710E85B95820DAB49AE9C47A7(NULL);
((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8 = L_4;
return;
}
}
// System.Void System.Text.RegularExpressions.Regex::ValidateMatchTimeout(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_ValidateMatchTimeout_mA50CD0CB49AB9B42B548900335CA6EABC30BD18F (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___InfiniteMatchTimeout_9;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___matchTimeout0;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
bool L_2;
L_2 = TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C(L_0, L_1, NULL);
if (!L_2)
{
goto IL_000e;
}
}
{
return;
}
IL_000e:
{
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ___matchTimeout0;
bool L_5;
L_5 = TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA(L_3, L_4, NULL);
if (!L_5)
{
goto IL_0029;
}
}
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ___matchTimeout0;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_maximumMatchTimeout_6;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
bool L_8;
L_8 = TimeSpan_op_LessThanOrEqual_m15A091041A6E53861348784744744319A33AA9EA(L_6, L_7, NULL);
if (!L_8)
{
goto IL_0029;
}
}
{
return;
}
IL_0029:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0CEAF0BD3FADF6359126DC7C9D79D9E24E0C446)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_ValidateMatchTimeout_mA50CD0CB49AB9B42B548900335CA6EABC30BD18F_RuntimeMethod_var)));
}
}
// System.TimeSpan System.Text.RegularExpressions.Regex::InitDefaultMatchTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Regex_InitDefaultMatchTimeout_mC441DFFACCC15C2710E85B95820DAB49AE9C47A7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AB8B9167B4BF3DC7E58D6977773F1FFF5B866E9);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1;
memset((&V_1), 0, sizeof(V_1));
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* L_0;
L_0 = AppDomain_get_CurrentDomain_m5085B6AF21A19506C85E0650C46BE35A18011CFE(NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = AppDomain_GetData_m10C16E04DB1CB63E8481AA27D57B58A5E2895C92(L_0, _stringLiteral9AB8B9167B4BF3DC7E58D6977773F1FFF5B866E9, NULL);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (L_2)
{
goto IL_0019;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___InfiniteMatchTimeout_9;
return L_3;
}
IL_0019:
{
RuntimeObject* L_4 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_4, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_004e;
}
}
{
RuntimeObject* L_5 = V_0;
V_1 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_5, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))));
}
try
{// begin try (depth: 1)
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = V_1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Regex_ValidateMatchTimeout_mA50CD0CB49AB9B42B548900335CA6EABC30BD18F(L_6, NULL);
goto IL_004c;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0030;
}
throw e;
}
CATCH_0030:
{// begin catch(System.ArgumentOutOfRangeException)
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = V_1;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = L_7;
RuntimeObject* L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)), &L_8);
String_t* L_10;
L_10 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29588F1CB3A3C49E44B9901B49671B5BFACA26AD)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9AB8B9167B4BF3DC7E58D6977773F1FFF5B866E9)), L_9, NULL);
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_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_11, L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_InitDefaultMatchTimeout_mC441DFFACCC15C2710E85B95820DAB49AE9C47A7_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_004c:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = V_1;
return L_12;
}
IL_004e:
{
RuntimeObject* L_13 = V_0;
String_t* L_14;
L_14 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29588F1CB3A3C49E44B9901B49671B5BFACA26AD)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9AB8B9167B4BF3DC7E58D6977773F1FFF5B866E9)), L_13, NULL);
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_15 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
NullCheck(L_15);
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_15, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_InitDefaultMatchTimeout_mC441DFFACCC15C2710E85B95820DAB49AE9C47A7_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern0;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8;
Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4(__this, L_0, 0, L_1, (bool)0, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_mE3996C71B04A4A6845745D01C93B1D27423D0621 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___pattern0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern0;
int32_t L_1 = ___options1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_defaultMatchTimeout_8;
Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4(__this, L_0, L_1, L_2, (bool)0, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.Regex::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_System_Runtime_Serialization_ISerializable_GetObjectData_mD788EE38607BF5D618FDA920048707DF4CA4B99C (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___si0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_0 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_System_Runtime_Serialization_ISerializable_GetObjectData_mD788EE38607BF5D618FDA920048707DF4CA4B99C_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___pattern0, int32_t ___options1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___matchTimeout2, bool ___addToCache3, 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*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 V_1;
memset((&V_1), 0, sizeof(V_1));
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_2 = NULL;
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* V_3 = NULL;
String_t* G_B11_0 = NULL;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___pattern0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___options1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001e;
}
}
{
int32_t L_3 = ___options1;
if (!((int32_t)((int32_t)L_3>>((int32_t)10))))
{
goto IL_0029;
}
}
IL_001e:
{
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_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4_RuntimeMethod_var)));
}
IL_0029:
{
int32_t L_5 = ___options1;
if (!((int32_t)((int32_t)L_5&((int32_t)256))))
{
goto IL_0046;
}
}
{
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&((int32_t)-780))))
{
goto IL_0046;
}
}
{
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_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4_RuntimeMethod_var)));
}
IL_0046:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___matchTimeout2;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Regex_ValidateMatchTimeout_mA50CD0CB49AB9B42B548900335CA6EABC30BD18F(L_8, NULL);
String_t* L_9 = ___pattern0;
__this->___pattern_12 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___pattern_12), (void*)L_9);
int32_t L_10 = ___options1;
__this->___roptions_13 = L_10;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ___matchTimeout2;
__this->___internalMatchTimeout_10 = L_11;
int32_t L_12 = ___options1;
if (((int32_t)((int32_t)L_12&((int32_t)512))))
{
goto IL_0076;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13;
L_13 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
G_B11_0 = L_14;
goto IL_0080;
}
IL_0076:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_15;
L_15 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
G_B11_0 = L_16;
}
IL_0080:
{
V_0 = G_B11_0;
int32_t L_17 = ___options1;
String_t* L_18 = V_0;
String_t* L_19 = ___pattern0;
CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F((&V_1), L_17, L_18, L_19, NULL);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_20 = V_1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_21;
L_21 = Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6_inline(__this, L_20, (bool)0, NULL);
V_2 = L_21;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_22 = V_2;
if (L_22)
{
goto IL_0100;
}
}
{
String_t* L_23 = ___pattern0;
int32_t L_24 = __this->___roptions_13;
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_25;
L_25 = RegexParser_Parse_m5AE448041BC21B17EF68A2039991EC85F91AA9BB(L_23, L_24, NULL);
V_3 = L_25;
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_26 = V_3;
NullCheck(L_26);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_27 = L_26->___CapNames_4;
__this->___capnames_16 = L_27;
Il2CppCodeGenWriteBarrier((void**)(&__this->___capnames_16), (void*)L_27);
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_28 = V_3;
NullCheck(L_28);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = L_28->___CapsList_5;
__this->___capslist_17 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&__this->___capslist_17), (void*)L_29);
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_30 = V_3;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_31;
L_31 = RegexWriter_Write_mCDBE8B9E7703439F2F27C082808594B1056BEB99(L_30, NULL);
__this->____code_21 = L_31;
Il2CppCodeGenWriteBarrier((void**)(&__this->____code_21), (void*)L_31);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_32 = __this->____code_21;
NullCheck(L_32);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_33 = L_32->___Caps_51;
__this->___caps_15 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&__this->___caps_15), (void*)L_33);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_34 = __this->____code_21;
NullCheck(L_34);
int32_t L_35 = L_34->___CapSize_52;
__this->___capsize_18 = L_35;
Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6(__this, NULL);
V_3 = (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2*)NULL;
bool L_36 = ___addToCache3;
if (!L_36)
{
goto IL_015b;
}
}
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_37 = V_1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_38;
L_38 = Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6_inline(__this, L_37, (bool)1, NULL);
V_2 = L_38;
return;
}
IL_0100:
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_39 = V_2;
NullCheck(L_39);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_40 = L_39->___Caps_4;
__this->___caps_15 = L_40;
Il2CppCodeGenWriteBarrier((void**)(&__this->___caps_15), (void*)L_40);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_41 = V_2;
NullCheck(L_41);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_42 = L_41->___Capnames_5;
__this->___capnames_16 = L_42;
Il2CppCodeGenWriteBarrier((void**)(&__this->___capnames_16), (void*)L_42);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_43 = V_2;
NullCheck(L_43);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_44 = L_43->___Capslist_6;
__this->___capslist_17 = L_44;
Il2CppCodeGenWriteBarrier((void**)(&__this->___capslist_17), (void*)L_44);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_45 = V_2;
NullCheck(L_45);
int32_t L_46 = L_45->___Capsize_7;
__this->___capsize_18 = L_46;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_47 = V_2;
NullCheck(L_47);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_48 = L_47->___Code_3;
__this->____code_21 = L_48;
Il2CppCodeGenWriteBarrier((void**)(&__this->____code_21), (void*)L_48);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_49 = V_2;
NullCheck(L_49);
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* L_50 = L_49->___Runnerref_8;
__this->____runnerref_19 = L_50;
Il2CppCodeGenWriteBarrier((void**)(&__this->____runnerref_19), (void*)L_50);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_51 = V_2;
NullCheck(L_51);
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_52 = L_51->___ReplRef_9;
__this->____replref_20 = L_52;
Il2CppCodeGenWriteBarrier((void**)(&__this->____replref_20), (void*)L_52);
__this->____refsInitialized_22 = (bool)1;
}
IL_015b:
{
return;
}
}
// System.String System.Text.RegularExpressions.Regex::Escape(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Escape_m2E4E071ABAFAE1BF55932725F28F4194CD56D7DE (String_t* ___str0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___str0;
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*)&Regex_Escape_m2E4E071ABAFAE1BF55932725F28F4194CD56D7DE_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___str0;
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = RegexParser_Escape_m0D7796B4DAB7A6BE2AE5C7664216121DB7F7C75C(L_2, NULL);
return L_3;
}
}
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::get_Options()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Regex_get_Options_m165C450CC7D77E4EA9BBFFED62C73269A6989EF2 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___roptions_13;
return L_0;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::get_RightToLeft()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C(__this, NULL);
return L_0;
}
}
// System.String System.Text.RegularExpressions.Regex::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_ToString_m4982DE4C344F7D529666314646F071580A450D5B (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___pattern_12;
return L_0;
}
}
// System.String System.Text.RegularExpressions.Regex::GroupNameFromNumber(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_GroupNameFromNumber_mC99A37419C4C0C9C3869BCDF055EDC72782D53FF (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, int32_t ___i0, 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*)&HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___capslist_17;
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = ___i0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0022;
}
}
{
int32_t L_2 = ___i0;
int32_t L_3 = __this->___capsize_18;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_0022;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4;
L_4 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_5;
L_5 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___i0), L_4, NULL);
return L_5;
}
IL_0022:
{
String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_6;
}
IL_0028:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___caps_15;
if (!L_7)
{
goto IL_004b;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_8 = __this->___caps_15;
int32_t L_9 = ___i0;
int32_t L_10 = L_9;
RuntimeObject* L_11 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_10);
bool L_12;
L_12 = HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395(L_8, L_11, (&___i0), HashtableExtensions_TryGetValue_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m561C961F96814FF2C5158E41E598F07DD2BB2395_RuntimeMethod_var);
if (L_12)
{
goto IL_004b;
}
}
{
String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_13;
}
IL_004b:
{
int32_t L_14 = ___i0;
if ((((int32_t)L_14) < ((int32_t)0)))
{
goto IL_0063;
}
}
{
int32_t L_15 = ___i0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = __this->___capslist_17;
NullCheck(L_16);
if ((((int32_t)L_15) >= ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0063;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = __this->___capslist_17;
int32_t L_18 = ___i0;
NullCheck(L_17);
int32_t L_19 = L_18;
String_t* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
return L_20;
}
IL_0063:
{
String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_21;
}
}
// System.Void System.Text.RegularExpressions.Regex::InitializeReferences()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1__ctor_mC8D9C90EA52FB1398802269D249E2CEC97A6269F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->____refsInitialized_22;
if (!L_0)
{
goto IL_0013;
}
}
{
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*)&_stringLiteral34706AEB52EC7987B7354AFAEFBE4DE3FF8A91EF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6_RuntimeMethod_var)));
}
IL_0013:
{
__this->____refsInitialized_22 = (bool)1;
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* L_2 = (ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837*)il2cpp_codegen_object_new(ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837_il2cpp_TypeInfo_var);
NullCheck(L_2);
ExclusiveReference__ctor_m41EB96FC1FA261CB792752B89F15E6513FEA1722(L_2, NULL);
__this->____runnerref_19 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____runnerref_19), (void*)L_2);
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_3 = (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257*)il2cpp_codegen_object_new(WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257_il2cpp_TypeInfo_var);
NullCheck(L_3);
WeakReference_1__ctor_mC8D9C90EA52FB1398802269D249E2CEC97A6269F(L_3, (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E*)NULL, WeakReference_1__ctor_mC8D9C90EA52FB1398802269D249E2CEC97A6269F_RuntimeMethod_var);
__this->____replref_20 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____replref_20), (void*)L_3);
return;
}
}
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Run(System.Boolean,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, bool ___quick0, int32_t ___prevlen1, String_t* ___input2, int32_t ___beginning3, int32_t ___length4, int32_t ___startat5, 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*)&RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* V_0 = NULL;
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* V_1 = NULL;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* G_B11_0 = NULL;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* G_B10_0 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B12_0 = NULL;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* G_B12_1 = NULL;
{
int32_t L_0 = ___startat5;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000f;
}
}
{
int32_t L_1 = ___startat5;
String_t* L_2 = ___input2;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if ((((int32_t)L_1) <= ((int32_t)L_3)))
{
goto IL_001f;
}
}
IL_000f:
{
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*)&_stringLiteralB132716D89EF0EE2CEF39498DA0895B2449AB344)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB596320AE4D74537B29168E9BDF95B753E2B5301)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8_RuntimeMethod_var)));
}
IL_001f:
{
int32_t L_5 = ___length4;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___length4;
String_t* L_7 = ___input2;
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_003e;
}
}
IL_002e:
{
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*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral143C872360343241D83008E13DCCEBD90A41C3C5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8_RuntimeMethod_var)));
}
IL_003e:
{
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* L_10 = __this->____runnerref_19;
NullCheck(L_10);
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_11;
L_11 = ExclusiveReference_Get_mCC2B9161946C9532001438C65A38E8D8FD56FB3C(L_10, NULL);
V_0 = L_11;
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_12 = V_0;
if (L_12)
{
goto IL_0083;
}
}
{
RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* L_13 = __this->___factory_14;
if (!L_13)
{
goto IL_0063;
}
}
{
RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* L_14 = __this->___factory_14;
NullCheck(L_14);
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_15;
L_15 = VirtualFuncInvoker0< RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* >::Invoke(4 /* System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.RegexRunnerFactory::CreateInstance() */, L_14);
V_0 = L_15;
goto IL_0083;
}
IL_0063:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_16 = __this->____code_21;
bool L_17;
L_17 = Regex_UseOptionInvariant_mD51BCBA0BF4C1B5CEBE9423B4AAA93CD83569B60(__this, NULL);
G_B10_0 = L_16;
if (L_17)
{
G_B11_0 = L_16;
goto IL_0078;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_18;
L_18 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
G_B12_0 = L_18;
G_B12_1 = G_B10_0;
goto IL_007d;
}
IL_0078:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_19;
L_19 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
G_B12_0 = L_19;
G_B12_1 = G_B11_0;
}
IL_007d:
{
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* L_20 = (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7*)il2cpp_codegen_object_new(RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7_il2cpp_TypeInfo_var);
NullCheck(L_20);
RegexInterpreter__ctor_mB81896A8292574F7532CF707F74A1AC1DECEA9FF(L_20, G_B12_1, G_B12_0, NULL);
V_0 = L_20;
}
IL_0083:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a0:
{// begin finally (depth: 1)
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* L_21 = __this->____runnerref_19;
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_22 = V_0;
NullCheck(L_21);
ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018(L_21, L_22, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* L_23 = V_0;
String_t* L_24 = ___input2;
int32_t L_25 = ___beginning3;
int32_t L_26 = ___beginning3;
int32_t L_27 = ___length4;
int32_t L_28 = ___startat5;
int32_t L_29 = ___prevlen1;
bool L_30 = ___quick0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = __this->___internalMatchTimeout_10;
NullCheck(L_23);
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_32;
L_32 = RegexRunner_Scan_m903691F4DFB68C0267F240D61A6F166BB592CE53(L_23, __this, L_24, L_25, ((int32_t)il2cpp_codegen_add(L_26, L_27)), L_28, L_29, L_30, L_31, NULL);
V_1 = L_32;
goto IL_00ad;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00ad:
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_33 = V_1;
return L_33;
}
}
// System.Boolean System.Text.RegularExpressions.Regex::UseOptionR()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___roptions_13;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Text.RegularExpressions.Regex::UseOptionInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_UseOptionInvariant_mD51BCBA0BF4C1B5CEBE9423B4AAA93CD83569B60 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___roptions_13;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)512)))) <= ((uint32_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
// Conversion methods for marshalling of: System.Text.RegularExpressions.Regex/CachedCodeEntryKey
IL2CPP_EXTERN_C void CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshal_pinvoke(const CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31& unmarshaled, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_pinvoke& marshaled)
{
marshaled.____options_0 = unmarshaled.____options_0;
marshaled.____cultureKey_1 = il2cpp_codegen_marshal_string(unmarshaled.____cultureKey_1);
marshaled.____pattern_2 = il2cpp_codegen_marshal_string(unmarshaled.____pattern_2);
}
IL2CPP_EXTERN_C void CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshal_pinvoke_back(const CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_pinvoke& marshaled, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31& unmarshaled)
{
int32_t unmarshaled_options_temp_0 = 0;
unmarshaled_options_temp_0 = marshaled.____options_0;
unmarshaled.____options_0 = unmarshaled_options_temp_0;
unmarshaled.____cultureKey_1 = il2cpp_codegen_marshal_string_result(marshaled.____cultureKey_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.____cultureKey_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.____cultureKey_1));
unmarshaled.____pattern_2 = il2cpp_codegen_marshal_string_result(marshaled.____pattern_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.____pattern_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.____pattern_2));
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.Regex/CachedCodeEntryKey
IL2CPP_EXTERN_C void CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshal_pinvoke_cleanup(CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.____cultureKey_1);
marshaled.____cultureKey_1 = NULL;
il2cpp_codegen_marshal_free(marshaled.____pattern_2);
marshaled.____pattern_2 = NULL;
}
// Conversion methods for marshalling of: System.Text.RegularExpressions.Regex/CachedCodeEntryKey
IL2CPP_EXTERN_C void CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshal_com(const CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31& unmarshaled, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_com& marshaled)
{
marshaled.____options_0 = unmarshaled.____options_0;
marshaled.____cultureKey_1 = il2cpp_codegen_marshal_bstring(unmarshaled.____cultureKey_1);
marshaled.____pattern_2 = il2cpp_codegen_marshal_bstring(unmarshaled.____pattern_2);
}
IL2CPP_EXTERN_C void CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshal_com_back(const CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_com& marshaled, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31& unmarshaled)
{
int32_t unmarshaled_options_temp_0 = 0;
unmarshaled_options_temp_0 = marshaled.____options_0;
unmarshaled.____options_0 = unmarshaled_options_temp_0;
unmarshaled.____cultureKey_1 = il2cpp_codegen_marshal_bstring_result(marshaled.____cultureKey_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.____cultureKey_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.____cultureKey_1));
unmarshaled.____pattern_2 = il2cpp_codegen_marshal_bstring_result(marshaled.____pattern_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.____pattern_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.____pattern_2));
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.Regex/CachedCodeEntryKey
IL2CPP_EXTERN_C void CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshal_com_cleanup(CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.____cultureKey_1);
marshaled.____cultureKey_1 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.____pattern_2);
marshaled.____pattern_2 = NULL;
}
// System.Void System.Text.RegularExpressions.Regex/CachedCodeEntryKey::.ctor(System.Text.RegularExpressions.RegexOptions,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, int32_t ___options0, String_t* ___cultureKey1, String_t* ___pattern2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___options0;
__this->____options_0 = L_0;
String_t* L_1 = ___cultureKey1;
__this->____cultureKey_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____cultureKey_1), (void*)L_1);
String_t* L_2 = ___pattern2;
__this->____pattern_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____pattern_2), (void*)L_2);
return;
}
}
IL2CPP_EXTERN_C void CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F_AdjustorThunk (RuntimeObject* __this, int32_t ___options0, String_t* ___cultureKey1, String_t* ___pattern2, const RuntimeMethod* method)
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*>(__this + _offset);
CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F(_thisAdjusted, ___options0, ___cultureKey1, ___pattern2, method);
}
// System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___obj0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = ___obj0;
bool L_2;
L_2 = CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0(__this, ((*(CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*)((CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*)(CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*)UnBox(L_1, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_il2cpp_TypeInfo_var)))), NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*>(__this + _offset);
bool _returnValue;
_returnValue = CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::Equals(System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___other0, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____pattern_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_1 = ___other0;
String_t* L_2 = L_1.____pattern_2;
NullCheck(L_0);
bool L_3;
L_3 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_0, L_2, NULL);
if (!L_3)
{
goto IL_0033;
}
}
{
int32_t L_4 = __this->____options_0;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_5 = ___other0;
int32_t L_6 = L_5.____options_0;
if ((!(((uint32_t)L_4) == ((uint32_t)L_6))))
{
goto IL_0033;
}
}
{
String_t* L_7 = __this->____cultureKey_1;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_8 = ___other0;
String_t* L_9 = L_8.____cultureKey_1;
NullCheck(L_7);
bool L_10;
L_10 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_7, L_9, NULL);
return L_10;
}
IL_0033:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0_AdjustorThunk (RuntimeObject* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___other0, const RuntimeMethod* method)
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*>(__this + _offset);
bool _returnValue;
_returnValue = CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::op_Equality(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CachedCodeEntryKey_op_Equality_m5C48CEBA5D7F893F4FE88D06917EB738615DDCC6 (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___left0, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___right1, const RuntimeMethod* method)
{
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_0 = ___right1;
bool L_1;
L_1 = CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0((&___left0), L_0, NULL);
return L_1;
}
}
// System.Int32 System.Text.RegularExpressions.Regex/CachedCodeEntryKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____options_0;
String_t* L_1 = __this->____cultureKey_1;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
String_t* L_3 = __this->____pattern_2;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
return ((int32_t)(((int32_t)((int32_t)L_0^L_2))^L_4));
}
}
IL2CPP_EXTERN_C int32_t CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31*>(__this + _offset);
int32_t _returnValue;
_returnValue = CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE(_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 System.Text.RegularExpressions.Regex/CachedCodeEntry::.ctor(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexCode,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.ExclusiveReference,System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedCodeEntry__ctor_m14145ADFF67BA7C888673D806C24E28C96B83B2A (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist2, RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ___code3, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps4, int32_t ___capsize5, ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ___runner6, WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ___replref7, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_0 = ___key0;
__this->___Key_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___Key_2))->____cultureKey_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___Key_2))->____pattern_2), (void*)NULL);
#endif
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = ___capnames1;
__this->___Capnames_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Capnames_5), (void*)L_1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = ___capslist2;
__this->___Capslist_6 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Capslist_6), (void*)L_2);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_3 = ___code3;
__this->___Code_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Code_3), (void*)L_3);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = ___caps4;
__this->___Caps_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Caps_4), (void*)L_4);
int32_t L_5 = ___capsize5;
__this->___Capsize_7 = L_5;
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* L_6 = ___runner6;
__this->___Runnerref_8 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Runnerref_8), (void*)L_6);
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_7 = ___replref7;
__this->___ReplRef_9 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ReplRef_9), (void*)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
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Multicast(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef String_t* (*FunctionPointerType) (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method);
String_t* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* currentDelegate = reinterpret_cast<MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___match0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Open(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___match0, method);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Closed(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (RuntimeObject*, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___match0, method);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenStaticInvoker(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< String_t*, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* >::Invoke(__this->___method_ptr_0, method, NULL, ___match0);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_ClosedStaticInvoker(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< String_t*, RuntimeObject*, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___match0);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenVirtual(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
return VirtualFuncInvoker0< String_t* >::Invoke(il2cpp_codegen_method_get_slot(method), ___match0);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenInterface(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
return InterfaceFuncInvoker0< String_t* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___match0);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenGenericVirtual(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
return GenericVirtualFuncInvoker0< String_t* >::Invoke(method, ___match0);
}
String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenGenericInterface(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
return GenericInterfaceFuncInvoker0< String_t* >::Invoke(method, ___match0);
}
// System.Void System.Text.RegularExpressions.MatchEvaluator::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchEvaluator__ctor_m4F7140E86A532BE1E1206DCEA76DE8E91CB985F2 (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Open;
else
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_Multicast;
}
// System.String System.Text.RegularExpressions.MatchEvaluator::Invoke(System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97 (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___match0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.RegexBoyerMoore::.ctor(System.String,System.Boolean,System.Boolean,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexBoyerMoore__ctor_mFDCB1AB420E718548B67DE42C233402955BBB189 (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___pattern0, bool ___caseInsensitive1, bool ___rightToLeft2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
int32_t V_5 = 0;
int32_t V_6 = 0;
StringBuilder_t* V_7 = NULL;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
int32_t V_11 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_12 = NULL;
int32_t V_13 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
bool L_0 = ___caseInsensitive1;
if (!L_0)
{
goto IL_0050;
}
}
{
String_t* L_1 = ___pattern0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
StringBuilder_t* L_3;
L_3 = StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1(L_2, NULL);
V_7 = L_3;
V_8 = 0;
goto IL_003d;
}
IL_001b:
{
StringBuilder_t* L_4 = V_7;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5 = ___culture3;
NullCheck(L_5);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_6;
L_6 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_5);
String_t* L_7 = ___pattern0;
int32_t L_8 = V_8;
NullCheck(L_7);
Il2CppChar L_9;
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL);
NullCheck(L_6);
Il2CppChar L_10;
L_10 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_6, L_9);
NullCheck(L_4);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_4, L_10, NULL);
int32_t L_12 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_003d:
{
int32_t L_13 = V_8;
String_t* L_14 = ___pattern0;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_001b;
}
}
{
StringBuilder_t* L_16 = V_7;
String_t* L_17;
L_17 = StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F(L_16, NULL);
___pattern0 = L_17;
}
IL_0050:
{
String_t* L_18 = ___pattern0;
__this->___Pattern_3 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Pattern_3), (void*)L_18);
bool L_19 = ___rightToLeft2;
__this->___RightToLeft_6 = L_19;
bool L_20 = ___caseInsensitive1;
__this->___CaseInsensitive_7 = L_20;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_21 = ___culture3;
__this->____culture_8 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&__this->____culture_8), (void*)L_21);
bool L_22 = ___rightToLeft2;
if (L_22)
{
goto IL_007f;
}
}
{
V_0 = (-1);
String_t* L_23 = ___pattern0;
NullCheck(L_23);
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract(L_24, 1));
V_2 = 1;
goto IL_008a;
}
IL_007f:
{
String_t* L_25 = ___pattern0;
NullCheck(L_25);
int32_t L_26;
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
V_0 = L_26;
V_1 = 0;
V_2 = (-1);
}
IL_008a:
{
String_t* L_27 = ___pattern0;
NullCheck(L_27);
int32_t L_28;
L_28 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_27, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_29 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_28);
__this->___Positive_0 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Positive_0), (void*)L_29);
int32_t L_30 = V_1;
V_3 = L_30;
String_t* L_31 = ___pattern0;
int32_t L_32 = V_3;
NullCheck(L_31);
Il2CppChar L_33;
L_33 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_31, L_32, NULL);
V_4 = L_33;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = __this->___Positive_0;
int32_t L_35 = V_3;
int32_t L_36 = V_2;
NullCheck(L_34);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (int32_t)L_36);
int32_t L_37 = V_3;
int32_t L_38 = V_2;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
}
IL_00b3:
{
int32_t L_39 = V_3;
int32_t L_40 = V_0;
if ((((int32_t)L_39) == ((int32_t)L_40)))
{
goto IL_0114;
}
}
{
String_t* L_41 = ___pattern0;
int32_t L_42 = V_3;
NullCheck(L_41);
Il2CppChar L_43;
L_43 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_41, L_42, NULL);
Il2CppChar L_44 = V_4;
if ((((int32_t)L_43) == ((int32_t)L_44)))
{
goto IL_00c8;
}
}
{
int32_t L_45 = V_3;
int32_t L_46 = V_2;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_45, L_46));
goto IL_00b3;
}
IL_00c8:
{
int32_t L_47 = V_1;
V_6 = L_47;
int32_t L_48 = V_3;
V_5 = L_48;
}
IL_00ce:
{
int32_t L_49 = V_5;
int32_t L_50 = V_0;
if ((((int32_t)L_49) == ((int32_t)L_50)))
{
goto IL_00e5;
}
}
{
String_t* L_51 = ___pattern0;
int32_t L_52 = V_6;
NullCheck(L_51);
Il2CppChar L_53;
L_53 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_51, L_52, NULL);
String_t* L_54 = ___pattern0;
int32_t L_55 = V_5;
NullCheck(L_54);
Il2CppChar L_56;
L_56 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_54, L_55, NULL);
if ((((int32_t)L_53) == ((int32_t)L_56)))
{
goto IL_0100;
}
}
IL_00e5:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_57 = __this->___Positive_0;
int32_t L_58 = V_6;
NullCheck(L_57);
int32_t L_59 = L_58;
int32_t L_60 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_59));
if (L_60)
{
goto IL_010e;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_61 = __this->___Positive_0;
int32_t L_62 = V_6;
int32_t L_63 = V_6;
int32_t L_64 = V_5;
NullCheck(L_61);
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(L_62), (int32_t)((int32_t)il2cpp_codegen_subtract(L_63, L_64)));
goto IL_010e;
}
IL_0100:
{
int32_t L_65 = V_5;
int32_t L_66 = V_2;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_65, L_66));
int32_t L_67 = V_6;
int32_t L_68 = V_2;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_67, L_68));
goto IL_00ce;
}
IL_010e:
{
int32_t L_69 = V_3;
int32_t L_70 = V_2;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_69, L_70));
goto IL_00b3;
}
IL_0114:
{
int32_t L_71 = V_1;
int32_t L_72 = V_2;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_71, L_72));
goto IL_0136;
}
IL_011b:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_73 = __this->___Positive_0;
int32_t L_74 = V_6;
NullCheck(L_73);
int32_t L_75 = L_74;
int32_t L_76 = (L_73)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
if (L_76)
{
goto IL_0130;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_77 = __this->___Positive_0;
int32_t L_78 = V_6;
int32_t L_79 = V_2;
NullCheck(L_77);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(L_78), (int32_t)L_79);
}
IL_0130:
{
int32_t L_80 = V_6;
int32_t L_81 = V_2;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_80, L_81));
}
IL_0136:
{
int32_t L_82 = V_6;
int32_t L_83 = V_0;
if ((!(((uint32_t)L_82) == ((uint32_t)L_83))))
{
goto IL_011b;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_84 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
__this->___NegativeASCII_1 = L_84;
Il2CppCodeGenWriteBarrier((void**)(&__this->___NegativeASCII_1), (void*)L_84);
V_9 = 0;
goto IL_0162;
}
IL_0150:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_85 = __this->___NegativeASCII_1;
int32_t L_86 = V_9;
int32_t L_87 = V_1;
int32_t L_88 = V_0;
NullCheck(L_85);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(L_86), (int32_t)((int32_t)il2cpp_codegen_subtract(L_87, L_88)));
int32_t L_89 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_89, 1));
}
IL_0162:
{
int32_t L_90 = V_9;
if ((((int32_t)L_90) < ((int32_t)((int32_t)128))))
{
goto IL_0150;
}
}
{
__this->___LowASCII_4 = ((int32_t)127);
__this->___HighASCII_5 = 0;
int32_t L_91 = V_1;
V_3 = L_91;
goto IL_0282;
}
IL_0181:
{
String_t* L_92 = ___pattern0;
int32_t L_93 = V_3;
NullCheck(L_92);
Il2CppChar L_94;
L_94 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_92, L_93, NULL);
V_4 = L_94;
Il2CppChar L_95 = V_4;
if ((((int32_t)L_95) >= ((int32_t)((int32_t)128))))
{
goto IL_01d9;
}
}
{
int32_t L_96 = __this->___LowASCII_4;
Il2CppChar L_97 = V_4;
if ((((int32_t)L_96) <= ((int32_t)L_97)))
{
goto IL_01a5;
}
}
{
Il2CppChar L_98 = V_4;
__this->___LowASCII_4 = L_98;
}
IL_01a5:
{
int32_t L_99 = __this->___HighASCII_5;
Il2CppChar L_100 = V_4;
if ((((int32_t)L_99) >= ((int32_t)L_100)))
{
goto IL_01b7;
}
}
{
Il2CppChar L_101 = V_4;
__this->___HighASCII_5 = L_101;
}
IL_01b7:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_102 = __this->___NegativeASCII_1;
Il2CppChar L_103 = V_4;
NullCheck(L_102);
Il2CppChar L_104 = L_103;
int32_t L_105 = (L_102)->GetAt(static_cast<il2cpp_array_size_t>(L_104));
int32_t L_106 = V_1;
int32_t L_107 = V_0;
if ((!(((uint32_t)L_105) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_106, L_107))))))
{
goto IL_027e;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_108 = __this->___NegativeASCII_1;
Il2CppChar L_109 = V_4;
int32_t L_110 = V_1;
int32_t L_111 = V_3;
NullCheck(L_108);
(L_108)->SetAt(static_cast<il2cpp_array_size_t>(L_109), (int32_t)((int32_t)il2cpp_codegen_subtract(L_110, L_111)));
goto IL_027e;
}
IL_01d9:
{
Il2CppChar L_112 = V_4;
V_10 = ((int32_t)((int32_t)L_112>>8));
Il2CppChar L_113 = V_4;
V_11 = ((int32_t)((int32_t)L_113&((int32_t)255)));
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_114 = __this->___NegativeUnicode_2;
if (L_114)
{
goto IL_0201;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_115 = (Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E*)(Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E*)SZArrayNew(Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
__this->___NegativeUnicode_2 = L_115;
Il2CppCodeGenWriteBarrier((void**)(&__this->___NegativeUnicode_2), (void*)L_115);
}
IL_0201:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_116 = __this->___NegativeUnicode_2;
int32_t L_117 = V_10;
NullCheck(L_116);
int32_t L_118 = L_117;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_119 = (L_116)->GetAt(static_cast<il2cpp_array_size_t>(L_118));
if (L_119)
{
goto IL_025e;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_120 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
V_12 = L_120;
V_13 = 0;
goto IL_022b;
}
IL_021d:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_121 = V_12;
int32_t L_122 = V_13;
int32_t L_123 = V_1;
int32_t L_124 = V_0;
NullCheck(L_121);
(L_121)->SetAt(static_cast<il2cpp_array_size_t>(L_122), (int32_t)((int32_t)il2cpp_codegen_subtract(L_123, L_124)));
int32_t L_125 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add(L_125, 1));
}
IL_022b:
{
int32_t L_126 = V_13;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_127 = V_12;
NullCheck(L_127);
if ((((int32_t)L_126) < ((int32_t)((int32_t)(((RuntimeArray*)L_127)->max_length)))))
{
goto IL_021d;
}
}
{
int32_t L_128 = V_10;
if (L_128)
{
goto IL_0253;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_129 = __this->___NegativeASCII_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_130 = V_12;
Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_129, 0, (RuntimeArray*)L_130, 0, ((int32_t)128), NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_131 = V_12;
__this->___NegativeASCII_1 = L_131;
Il2CppCodeGenWriteBarrier((void**)(&__this->___NegativeASCII_1), (void*)L_131);
}
IL_0253:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_132 = __this->___NegativeUnicode_2;
int32_t L_133 = V_10;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_134 = V_12;
NullCheck(L_132);
ArrayElementTypeCheck (L_132, L_134);
(L_132)->SetAt(static_cast<il2cpp_array_size_t>(L_133), (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)L_134);
}
IL_025e:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_135 = __this->___NegativeUnicode_2;
int32_t L_136 = V_10;
NullCheck(L_135);
int32_t L_137 = L_136;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_138 = (L_135)->GetAt(static_cast<il2cpp_array_size_t>(L_137));
int32_t L_139 = V_11;
NullCheck(L_138);
int32_t L_140 = L_139;
int32_t L_141 = (L_138)->GetAt(static_cast<il2cpp_array_size_t>(L_140));
int32_t L_142 = V_1;
int32_t L_143 = V_0;
if ((!(((uint32_t)L_141) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_142, L_143))))))
{
goto IL_027e;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_144 = __this->___NegativeUnicode_2;
int32_t L_145 = V_10;
NullCheck(L_144);
int32_t L_146 = L_145;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_147 = (L_144)->GetAt(static_cast<il2cpp_array_size_t>(L_146));
int32_t L_148 = V_11;
int32_t L_149 = V_1;
int32_t L_150 = V_3;
NullCheck(L_147);
(L_147)->SetAt(static_cast<il2cpp_array_size_t>(L_148), (int32_t)((int32_t)il2cpp_codegen_subtract(L_149, L_150)));
}
IL_027e:
{
int32_t L_151 = V_3;
int32_t L_152 = V_2;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_151, L_152));
}
IL_0282:
{
int32_t L_153 = V_3;
int32_t L_154 = V_0;
if ((!(((uint32_t)L_153) == ((uint32_t)L_154))))
{
goto IL_0181;
}
}
{
return;
}
}
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::MatchPattern(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexBoyerMoore_MatchPattern_m0E84EAABBFCDA85484466A41A7B90187D3489E8C (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___text0, int32_t ___index1, const RuntimeMethod* method)
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* V_0 = NULL;
int32_t V_1 = 0;
{
bool L_0 = __this->___CaseInsensitive_7;
if (!L_0)
{
goto IL_0062;
}
}
{
String_t* L_1 = ___text0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
int32_t L_3 = ___index1;
String_t* L_4 = __this->___Pattern_3;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_5)))
{
goto IL_001f;
}
}
{
return (bool)0;
}
IL_001f:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6 = __this->____culture_8;
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_0 = L_7;
V_1 = 0;
goto IL_0052;
}
IL_002f:
{
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_8 = V_0;
String_t* L_9 = ___text0;
int32_t L_10 = ___index1;
int32_t L_11 = V_1;
NullCheck(L_9);
Il2CppChar L_12;
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_9, ((int32_t)il2cpp_codegen_add(L_10, L_11)), NULL);
NullCheck(L_8);
Il2CppChar L_13;
L_13 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_8, L_12);
String_t* L_14 = __this->___Pattern_3;
int32_t L_15 = V_1;
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_004e;
}
}
{
return (bool)0;
}
IL_004e:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0052:
{
int32_t L_18 = V_1;
String_t* L_19 = __this->___Pattern_3;
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_002f;
}
}
{
return (bool)1;
}
IL_0062:
{
String_t* L_21 = __this->___Pattern_3;
String_t* L_22 = ___text0;
int32_t L_23 = ___index1;
String_t* L_24 = __this->___Pattern_3;
NullCheck(L_24);
int32_t L_25;
L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL);
int32_t L_26;
L_26 = String_CompareOrdinal_mD47B989E9AABCC58368D9A65D53B7995240BB1FD(L_21, 0, L_22, L_23, L_25, NULL);
return (bool)((((int32_t)L_26) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::IsMatch(System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexBoyerMoore_IsMatch_mC09692237823CC6C74D4F5D8900D82CEC840FB47 (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___text0, int32_t ___index1, int32_t ___beglimit2, int32_t ___endlimit3, const RuntimeMethod* method)
{
{
bool L_0 = __this->___RightToLeft_6;
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = ___index1;
int32_t L_2 = ___beglimit2;
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___endlimit3;
int32_t L_4 = ___index1;
String_t* L_5 = __this->___Pattern_3;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4))) >= ((int32_t)L_6)))
{
goto IL_001f;
}
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
String_t* L_7 = ___text0;
int32_t L_8 = ___index1;
bool L_9;
L_9 = RegexBoyerMoore_MatchPattern_m0E84EAABBFCDA85484466A41A7B90187D3489E8C(__this, L_7, L_8, NULL);
return L_9;
}
IL_0028:
{
int32_t L_10 = ___index1;
int32_t L_11 = ___endlimit3;
if ((((int32_t)L_10) > ((int32_t)L_11)))
{
goto IL_003d;
}
}
{
int32_t L_12 = ___index1;
int32_t L_13 = ___beglimit2;
String_t* L_14 = __this->___Pattern_3;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_12, L_13))) >= ((int32_t)L_15)))
{
goto IL_003f;
}
}
IL_003d:
{
return (bool)0;
}
IL_003f:
{
String_t* L_16 = ___text0;
int32_t L_17 = ___index1;
String_t* L_18 = __this->___Pattern_3;
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
bool L_20;
L_20 = RegexBoyerMoore_MatchPattern_m0E84EAABBFCDA85484466A41A7B90187D3489E8C(__this, L_16, ((int32_t)il2cpp_codegen_subtract(L_17, L_19)), NULL);
return L_20;
}
}
// System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::Scan(System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexBoyerMoore_Scan_m86EB5A209D33DA3F4C7335F8FE133238666FA57B (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___text0, int32_t ___index1, int32_t ___beglimit2, int32_t ___endlimit3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
Il2CppChar V_6 = 0x0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_10 = NULL;
int32_t G_B34_0 = 0;
{
bool L_0 = __this->___RightToLeft_6;
if (L_0)
{
goto IL_002f;
}
}
{
String_t* L_1 = __this->___Pattern_3;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
V_0 = L_2;
String_t* L_3 = __this->___Pattern_3;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
V_2 = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
V_3 = 0;
int32_t L_5 = ___index1;
int32_t L_6 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_5, L_6)), 1));
V_4 = 1;
goto IL_004a;
}
IL_002f:
{
String_t* L_7 = __this->___Pattern_3;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
V_0 = ((-L_8));
V_2 = 0;
int32_t L_9 = V_0;
V_3 = ((int32_t)il2cpp_codegen_subtract(((-L_9)), 1));
int32_t L_10 = ___index1;
int32_t L_11 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, L_11));
V_4 = (-1);
}
IL_004a:
{
String_t* L_12 = __this->___Pattern_3;
int32_t L_13 = V_2;
NullCheck(L_12);
Il2CppChar L_14;
L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL);
V_5 = L_14;
}
IL_0058:
{
int32_t L_15 = V_1;
int32_t L_16 = ___endlimit3;
if ((((int32_t)L_15) >= ((int32_t)L_16)))
{
goto IL_0061;
}
}
{
int32_t L_17 = V_1;
int32_t L_18 = ___beglimit2;
if ((((int32_t)L_17) >= ((int32_t)L_18)))
{
goto IL_0063;
}
}
IL_0061:
{
return (-1);
}
IL_0063:
{
String_t* L_19 = ___text0;
int32_t L_20 = V_1;
NullCheck(L_19);
Il2CppChar L_21;
L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_19, L_20, NULL);
V_6 = L_21;
bool L_22 = __this->___CaseInsensitive_7;
if (!L_22)
{
goto IL_0088;
}
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_23 = __this->____culture_8;
NullCheck(L_23);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_24;
L_24 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_23);
Il2CppChar L_25 = V_6;
NullCheck(L_24);
Il2CppChar L_26;
L_26 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_24, L_25);
V_6 = L_26;
}
IL_0088:
{
Il2CppChar L_27 = V_6;
Il2CppChar L_28 = V_5;
if ((((int32_t)L_27) == ((int32_t)L_28)))
{
goto IL_00d5;
}
}
{
Il2CppChar L_29 = V_6;
if ((((int32_t)L_29) >= ((int32_t)((int32_t)128))))
{
goto IL_00a4;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_30 = __this->___NegativeASCII_1;
Il2CppChar L_31 = V_6;
NullCheck(L_30);
Il2CppChar L_32 = L_31;
int32_t L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
V_9 = L_33;
goto IL_00ce;
}
IL_00a4:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_34 = __this->___NegativeUnicode_2;
if (!L_34)
{
goto IL_00cb;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_35 = __this->___NegativeUnicode_2;
Il2CppChar L_36 = V_6;
NullCheck(L_35);
int32_t L_37 = ((int32_t)((int32_t)L_36>>8));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_39 = L_38;
V_10 = L_39;
if (!L_39)
{
goto IL_00cb;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_40 = V_10;
Il2CppChar L_41 = V_6;
NullCheck(L_40);
int32_t L_42 = ((int32_t)((int32_t)L_41&((int32_t)255)));
int32_t L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
V_9 = L_43;
goto IL_00ce;
}
IL_00cb:
{
int32_t L_44 = V_0;
V_9 = L_44;
}
IL_00ce:
{
int32_t L_45 = V_1;
int32_t L_46 = V_9;
V_1 = ((int32_t)il2cpp_codegen_add(L_45, L_46));
goto IL_0058;
}
IL_00d5:
{
int32_t L_47 = V_1;
V_7 = L_47;
int32_t L_48 = V_2;
V_8 = L_48;
}
IL_00db:
{
int32_t L_49 = V_8;
int32_t L_50 = V_3;
if ((!(((uint32_t)L_49) == ((uint32_t)L_50))))
{
goto IL_00f0;
}
}
{
bool L_51 = __this->___RightToLeft_6;
if (L_51)
{
goto IL_00eb;
}
}
{
int32_t L_52 = V_7;
return L_52;
}
IL_00eb:
{
int32_t L_53 = V_7;
return ((int32_t)il2cpp_codegen_add(L_53, 1));
}
IL_00f0:
{
int32_t L_54 = V_8;
int32_t L_55 = V_4;
V_8 = ((int32_t)il2cpp_codegen_subtract(L_54, L_55));
int32_t L_56 = V_7;
int32_t L_57 = V_4;
V_7 = ((int32_t)il2cpp_codegen_subtract(L_56, L_57));
String_t* L_58 = ___text0;
int32_t L_59 = V_7;
NullCheck(L_58);
Il2CppChar L_60;
L_60 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_58, L_59, NULL);
V_6 = L_60;
bool L_61 = __this->___CaseInsensitive_7;
if (!L_61)
{
goto IL_0124;
}
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_62 = __this->____culture_8;
NullCheck(L_62);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_63;
L_63 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_62);
Il2CppChar L_64 = V_6;
NullCheck(L_63);
Il2CppChar L_65;
L_65 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_63, L_64);
V_6 = L_65;
}
IL_0124:
{
Il2CppChar L_66 = V_6;
String_t* L_67 = __this->___Pattern_3;
int32_t L_68 = V_8;
NullCheck(L_67);
Il2CppChar L_69;
L_69 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_67, L_68, NULL);
if ((((int32_t)L_66) == ((int32_t)L_69)))
{
goto IL_00db;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_70 = __this->___Positive_0;
int32_t L_71 = V_8;
NullCheck(L_70);
int32_t L_72 = L_71;
int32_t L_73 = (L_70)->GetAt(static_cast<il2cpp_array_size_t>(L_72));
V_9 = L_73;
Il2CppChar L_74 = V_6;
if (((int32_t)((int32_t)L_74&((int32_t)65408))))
{
goto IL_015c;
}
}
{
int32_t L_75 = V_8;
int32_t L_76 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_77 = __this->___NegativeASCII_1;
Il2CppChar L_78 = V_6;
NullCheck(L_77);
Il2CppChar L_79 = L_78;
int32_t L_80 = (L_77)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
V_7 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_75, L_76)), L_80));
goto IL_0192;
}
IL_015c:
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_81 = __this->___NegativeUnicode_2;
if (!L_81)
{
goto IL_0188;
}
}
{
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_82 = __this->___NegativeUnicode_2;
Il2CppChar L_83 = V_6;
NullCheck(L_82);
int32_t L_84 = ((int32_t)((int32_t)L_83>>8));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_85 = (L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_86 = L_85;
V_10 = L_86;
if (!L_86)
{
goto IL_0188;
}
}
{
int32_t L_87 = V_8;
int32_t L_88 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_89 = V_10;
Il2CppChar L_90 = V_6;
NullCheck(L_89);
int32_t L_91 = ((int32_t)((int32_t)L_90&((int32_t)255)));
int32_t L_92 = (L_89)->GetAt(static_cast<il2cpp_array_size_t>(L_91));
V_7 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_87, L_88)), L_92));
goto IL_0192;
}
IL_0188:
{
int32_t L_93 = V_1;
int32_t L_94 = V_9;
V_1 = ((int32_t)il2cpp_codegen_add(L_93, L_94));
goto IL_0058;
}
IL_0192:
{
bool L_95 = __this->___RightToLeft_6;
if (L_95)
{
goto IL_01a2;
}
}
{
int32_t L_96 = V_7;
int32_t L_97 = V_9;
G_B34_0 = ((((int32_t)L_96) > ((int32_t)L_97))? 1 : 0);
goto IL_01a8;
}
IL_01a2:
{
int32_t L_98 = V_7;
int32_t L_99 = V_9;
G_B34_0 = ((((int32_t)L_98) < ((int32_t)L_99))? 1 : 0);
}
IL_01a8:
{
if (!G_B34_0)
{
goto IL_01ae;
}
}
{
int32_t L_100 = V_7;
V_9 = L_100;
}
IL_01ae:
{
int32_t L_101 = V_1;
int32_t L_102 = V_9;
V_1 = ((int32_t)il2cpp_codegen_add(L_101, L_102));
goto IL_0058;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.RegexCharClass::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*)il2cpp_codegen_object_new(List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4(L_0, 6, List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_RuntimeMethod_var);
__this->____rangelist_14 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rangelist_14), (void*)L_0);
__this->____canonical_16 = (bool)1;
StringBuilder_t* L_1 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_1);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_1, NULL);
__this->____categories_15 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____categories_15), (void*)L_1);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::.ctor(System.Boolean,System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>,System.Text.StringBuilder,System.Text.RegularExpressions.RegexCharClass)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__ctor_mFAD2AF3D7B0D4D3DC8BC850B8899C5C4D55F8B49 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___negate0, List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ___ranges1, StringBuilder_t* ___categories2, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___subtraction3, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = ___ranges1;
__this->____rangelist_14 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rangelist_14), (void*)L_0);
StringBuilder_t* L_1 = ___categories2;
__this->____categories_15 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____categories_15), (void*)L_1);
__this->____canonical_16 = (bool)1;
bool L_2 = ___negate0;
__this->____negate_17 = L_2;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_3 = ___subtraction3;
__this->____subtractor_18 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____subtractor_18), (void*)L_3);
return;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::get_CanMerge()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_get_CanMerge_mC093FE4BE7C1933BA9F146CF2A33CD729A965172 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____negate_17;
if (L_0)
{
goto IL_0012;
}
}
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_1 = __this->____subtractor_18;
return (bool)((((RuntimeObject*)(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_0012:
{
return (bool)0;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::set_Negate(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_set_Negate_m8EA71CB8F671E99EF0B388CB520F44B8B6653A6B (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->____negate_17 = L_0;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddChar_mED269B31D5C606032B3394A9B9305ED172D16746 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
Il2CppChar L_1 = ___c0;
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCharClass(System.Text.RegularExpressions.RegexCharClass)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCharClass_mDE8C70A6A99B2223DE4EA36A4753A13B5EEDE7BB (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___cc0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_0 = ___cc0;
NullCheck(L_0);
bool L_1 = L_0->____canonical_16;
if (L_1)
{
goto IL_0011;
}
}
{
__this->____canonical_16 = (bool)0;
goto IL_0053;
}
IL_0011:
{
bool L_2 = __this->____canonical_16;
if (!L_2)
{
goto IL_0053;
}
}
{
int32_t L_3;
L_3 = RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1(__this, NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_0053;
}
}
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_4 = ___cc0;
NullCheck(L_4);
int32_t L_5;
L_5 = RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1(L_4, NULL);
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_0053;
}
}
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_6 = ___cc0;
NullCheck(L_6);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_7;
L_7 = RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128(L_6, 0, NULL);
Il2CppChar L_8 = L_7.___First_0;
int32_t L_9;
L_9 = RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1(__this, NULL);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_10;
L_10 = RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128(__this, ((int32_t)il2cpp_codegen_subtract(L_9, 1)), NULL);
Il2CppChar L_11 = L_10.___Last_1;
if ((((int32_t)L_8) > ((int32_t)L_11)))
{
goto IL_0053;
}
}
{
__this->____canonical_16 = (bool)0;
}
IL_0053:
{
V_0 = 0;
goto IL_006d;
}
IL_0057:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_12 = __this->____rangelist_14;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_13 = ___cc0;
int32_t L_14 = V_0;
NullCheck(L_13);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_15;
L_15 = RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128(L_13, L_14, NULL);
NullCheck(L_12);
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(L_12, L_15, List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_006d:
{
int32_t L_17 = V_0;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_18 = ___cc0;
NullCheck(L_18);
int32_t L_19;
L_19 = RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1(L_18, NULL);
if ((((int32_t)L_17) < ((int32_t)L_19)))
{
goto IL_0057;
}
}
{
StringBuilder_t* L_20 = __this->____categories_15;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_21 = ___cc0;
NullCheck(L_21);
StringBuilder_t* L_22 = L_21->____categories_15;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22);
NullCheck(L_20);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, L_23, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddSet(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___set0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = __this->____canonical_16;
if (!L_0)
{
goto IL_003d;
}
}
{
int32_t L_1;
L_1 = RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1(__this, NULL);
if ((((int32_t)L_1) <= ((int32_t)0)))
{
goto IL_003d;
}
}
{
String_t* L_2 = ___set0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_003d;
}
}
{
String_t* L_4 = ___set0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 0, NULL);
int32_t L_6;
L_6 = RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1(__this, NULL);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_7;
L_7 = RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128(__this, ((int32_t)il2cpp_codegen_subtract(L_6, 1)), NULL);
Il2CppChar L_8 = L_7.___Last_1;
if ((((int32_t)L_5) > ((int32_t)L_8)))
{
goto IL_003d;
}
}
{
__this->____canonical_16 = (bool)0;
}
IL_003d:
{
V_0 = 0;
goto IL_0068;
}
IL_0041:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_9 = __this->____rangelist_14;
String_t* L_10 = ___set0;
int32_t L_11 = V_0;
NullCheck(L_10);
Il2CppChar L_12;
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL);
String_t* L_13 = ___set0;
int32_t L_14 = V_0;
NullCheck(L_13);
Il2CppChar L_15;
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_16;
memset((&L_16), 0, sizeof(L_16));
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E((&L_16), L_12, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, 1))), /*hidden argument*/NULL);
NullCheck(L_9);
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(L_9, L_16, List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_17, 2));
}
IL_0068:
{
int32_t L_18 = V_0;
String_t* L_19 = ___set0;
NullCheck(L_19);
int32_t L_20;
L_20 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_19, NULL);
if ((((int32_t)L_18) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_20, 1)))))
{
goto IL_0041;
}
}
{
int32_t L_21 = V_0;
String_t* L_22 = ___set0;
NullCheck(L_22);
int32_t L_23;
L_23 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_22, NULL);
if ((((int32_t)L_21) >= ((int32_t)L_23)))
{
goto IL_0098;
}
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_24 = __this->____rangelist_14;
String_t* L_25 = ___set0;
int32_t L_26 = V_0;
NullCheck(L_25);
Il2CppChar L_27;
L_27 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_25, L_26, NULL);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_28;
memset((&L_28), 0, sizeof(L_28));
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E((&L_28), L_27, ((int32_t)65535), /*hidden argument*/NULL);
NullCheck(L_24);
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(L_24, L_28, List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
}
IL_0098:
{
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddSubtraction(System.Text.RegularExpressions.RegexCharClass)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___sub0, const RuntimeMethod* method)
{
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_0 = ___sub0;
__this->____subtractor_18 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____subtractor_18), (void*)L_0);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddRange(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___first0, Il2CppChar ___last1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = __this->____rangelist_14;
Il2CppChar L_1 = ___first0;
Il2CppChar L_2 = ___last1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_3;
memset((&L_3), 0, sizeof(L_3));
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E((&L_3), L_1, L_2, /*hidden argument*/NULL);
NullCheck(L_0);
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(L_0, L_3, List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
bool L_4 = __this->____canonical_16;
if (!L_4)
{
goto IL_004f;
}
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_5 = __this->____rangelist_14;
NullCheck(L_5);
int32_t L_6;
L_6 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_5, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_004f;
}
}
{
Il2CppChar L_7 = ___first0;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_8 = __this->____rangelist_14;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_9 = __this->____rangelist_14;
NullCheck(L_9);
int32_t L_10;
L_10 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_9, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
NullCheck(L_8);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_11;
L_11 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_8, ((int32_t)il2cpp_codegen_subtract(L_10, 1)), List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
Il2CppChar L_12 = L_11.___Last_1;
if ((((int32_t)L_7) > ((int32_t)L_12)))
{
goto IL_004f;
}
}
{
__this->____canonical_16 = (bool)0;
}
IL_004f:
{
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCategoryFromName(System.String,System.Boolean,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___categoryName0, bool ___invert1, bool ___caseInsensitive2, String_t* ___pattern3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mB13DFB3E7499031847CF544977D4EFB1AC0157AB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7E8A279C6B408C8115ECB8D5D20FFD0A71025C3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED5AFE132A97BA24E8306366DD70B9A8D78BFA48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF23271A51B0CAD6D72E7ADE5AD13B8927F6F770C);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_0 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_definedCategories_11;
String_t* L_1 = ___categoryName0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
if (!L_2)
{
goto IL_006e;
}
}
{
String_t* L_3 = ___categoryName0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_4 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_internalRegexIgnoreCase_0;
NullCheck(L_3);
bool L_5;
L_5 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_3, L_4, NULL);
if (L_5)
{
goto IL_006e;
}
}
{
bool L_6 = ___caseInsensitive2;
if (!L_6)
{
goto IL_0056;
}
}
{
String_t* L_7 = ___categoryName0;
NullCheck(L_7);
bool L_8;
L_8 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_7, _stringLiteralED5AFE132A97BA24E8306366DD70B9A8D78BFA48, NULL);
if (L_8)
{
goto IL_0046;
}
}
{
String_t* L_9 = ___categoryName0;
NullCheck(L_9);
bool L_10;
L_10 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_9, _stringLiteralF23271A51B0CAD6D72E7ADE5AD13B8927F6F770C, NULL);
if (L_10)
{
goto IL_0046;
}
}
{
String_t* L_11 = ___categoryName0;
NullCheck(L_11);
bool L_12;
L_12 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_11, _stringLiteralE7E8A279C6B408C8115ECB8D5D20FFD0A71025C3, NULL);
if (!L_12)
{
goto IL_0056;
}
}
IL_0046:
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_13 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_definedCategories_11;
String_t* L_14 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_internalRegexIgnoreCase_0;
NullCheck(L_13);
String_t* L_15;
L_15 = Dictionary_2_get_Item_mB13DFB3E7499031847CF544977D4EFB1AC0157AB(L_13, L_14, Dictionary_2_get_Item_mB13DFB3E7499031847CF544977D4EFB1AC0157AB_RuntimeMethod_var);
V_0 = L_15;
}
IL_0056:
{
bool L_16 = ___invert1;
if (!L_16)
{
goto IL_0060;
}
}
{
String_t* L_17 = V_0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_18;
L_18 = RegexCharClass_NegateCategory_m1C615694A5F8EECBBE4C09BA293454D856F52F50(L_17, NULL);
V_0 = L_18;
}
IL_0060:
{
StringBuilder_t* L_19 = __this->____categories_15;
String_t* L_20 = V_0;
NullCheck(L_19);
StringBuilder_t* L_21;
L_21 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, L_20, NULL);
return;
}
IL_006e:
{
String_t* L_22 = ___categoryName0;
bool L_23 = ___invert1;
String_t* L_24 = ___pattern3;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_25;
L_25 = RegexCharClass_SetFromProperty_m75FD04D8F9EA5FD996E4C8B4A2DF45BEEE6BABC5(L_22, L_23, L_24, NULL);
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, L_25, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCategory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___category0, const RuntimeMethod* method)
{
{
StringBuilder_t* L_0 = __this->____categories_15;
String_t* L_1 = ___category0;
NullCheck(L_0);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, L_1, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercase(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_2;
memset((&V_2), 0, sizeof(V_2));
Il2CppChar V_3 = 0x0;
{
__this->____canonical_16 = (bool)0;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = __this->____rangelist_14;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_0, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
V_0 = L_1;
V_1 = 0;
goto IL_0070;
}
IL_0017:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_2 = __this->____rangelist_14;
int32_t L_3 = V_1;
NullCheck(L_2);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_4;
L_4 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_2, L_3, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
V_2 = L_4;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_5 = V_2;
Il2CppChar L_6 = L_5.___First_0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_7 = V_2;
Il2CppChar L_8 = L_7.___Last_1;
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
{
goto IL_0059;
}
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_9 = ___culture0;
NullCheck(L_9);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_10;
L_10 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_9);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_11 = V_2;
Il2CppChar L_12 = L_11.___First_0;
NullCheck(L_10);
Il2CppChar L_13;
L_13 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_10, L_12);
V_3 = L_13;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_14 = __this->____rangelist_14;
int32_t L_15 = V_1;
Il2CppChar L_16 = V_3;
Il2CppChar L_17 = V_3;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_18;
memset((&L_18), 0, sizeof(L_18));
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E((&L_18), L_16, L_17, /*hidden argument*/NULL);
NullCheck(L_14);
List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD(L_14, L_15, L_18, List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_RuntimeMethod_var);
goto IL_006c;
}
IL_0059:
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_19 = V_2;
Il2CppChar L_20 = L_19.___First_0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_21 = V_2;
Il2CppChar L_22 = L_21.___Last_1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_23 = ___culture0;
RegexCharClass_AddLowercaseRange_m75E07C55A082FE5B2926997F2564B611DF61A343(__this, L_20, L_22, L_23, NULL);
}
IL_006c:
{
int32_t L_24 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0070:
{
int32_t L_25 = V_1;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0017;
}
}
{
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercaseRange(System.Char,System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddLowercaseRange_m75E07C55A082FE5B2926997F2564B611DF61A343 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___chMin0, Il2CppChar ___chMax1, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
Il2CppChar V_4 = 0x0;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 V_5;
memset((&V_5), 0, sizeof(V_5));
int32_t V_6 = 0;
{
V_0 = 0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_0 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13;
NullCheck(L_0);
V_1 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
goto IL_002d;
}
IL_000c:
{
int32_t L_1 = V_0;
int32_t L_2 = V_1;
V_2 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_1, L_2))/2));
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_3 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13;
int32_t L_4 = V_2;
NullCheck(L_3);
Il2CppChar L_5 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->___ChMax_1;
Il2CppChar L_6 = ___chMin0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_002b;
}
}
{
int32_t L_7 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
goto IL_002d;
}
IL_002b:
{
int32_t L_8 = V_2;
V_1 = L_8;
}
IL_002d:
{
int32_t L_9 = V_0;
int32_t L_10 = V_1;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_000c;
}
}
{
int32_t L_11 = V_0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_12 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
{
goto IL_00e7;
}
}
{
return;
}
IL_003f:
{
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_13 = V_5;
Il2CppChar L_14 = L_13.___ChMin_0;
Il2CppChar L_15 = L_14;
V_3 = L_15;
Il2CppChar L_16 = ___chMin0;
if ((((int32_t)L_15) >= ((int32_t)L_16)))
{
goto IL_004d;
}
}
{
Il2CppChar L_17 = ___chMin0;
V_3 = L_17;
}
IL_004d:
{
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_18 = V_5;
Il2CppChar L_19 = L_18.___ChMax_1;
Il2CppChar L_20 = L_19;
V_4 = L_20;
Il2CppChar L_21 = ___chMax1;
if ((((int32_t)L_20) <= ((int32_t)L_21)))
{
goto IL_005d;
}
}
{
Il2CppChar L_22 = ___chMax1;
V_4 = L_22;
}
IL_005d:
{
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_23 = V_5;
int32_t L_24 = L_23.___LcOp_2;
V_6 = L_24;
int32_t L_25 = V_6;
switch (L_25)
{
case 0:
{
goto IL_007f;
}
case 1:
{
goto IL_0094;
}
case 2:
{
goto IL_00b0;
}
case 3:
{
goto IL_00be;
}
}
}
{
goto IL_00d1;
}
IL_007f:
{
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_26 = V_5;
int32_t L_27 = L_26.___Data_3;
V_3 = ((int32_t)(uint16_t)L_27);
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_28 = V_5;
int32_t L_29 = L_28.___Data_3;
V_4 = ((int32_t)(uint16_t)L_29);
goto IL_00d1;
}
IL_0094:
{
Il2CppChar L_30 = V_3;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_31 = V_5;
int32_t L_32 = L_31.___Data_3;
V_3 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, ((int32_t)(uint16_t)L_32))));
Il2CppChar L_33 = V_4;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_34 = V_5;
int32_t L_35 = L_34.___Data_3;
V_4 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, ((int32_t)(uint16_t)L_35))));
goto IL_00d1;
}
IL_00b0:
{
Il2CppChar L_36 = V_3;
V_3 = ((int32_t)(uint16_t)((int32_t)((int32_t)L_36|1)));
Il2CppChar L_37 = V_4;
V_4 = ((int32_t)(uint16_t)((int32_t)((int32_t)L_37|1)));
goto IL_00d1;
}
IL_00be:
{
Il2CppChar L_38 = V_3;
Il2CppChar L_39 = V_3;
V_3 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, ((int32_t)(uint16_t)((int32_t)((int32_t)L_39&1))))));
Il2CppChar L_40 = V_4;
Il2CppChar L_41 = V_4;
V_4 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, ((int32_t)(uint16_t)((int32_t)((int32_t)L_41&1))))));
}
IL_00d1:
{
Il2CppChar L_42 = V_3;
Il2CppChar L_43 = ___chMin0;
if ((((int32_t)L_42) < ((int32_t)L_43)))
{
goto IL_00da;
}
}
{
Il2CppChar L_44 = V_4;
Il2CppChar L_45 = ___chMax1;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_00e3;
}
}
IL_00da:
{
Il2CppChar L_46 = V_3;
Il2CppChar L_47 = V_4;
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(__this, L_46, L_47, NULL);
}
IL_00e3:
{
int32_t L_48 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_48, 1));
}
IL_00e7:
{
int32_t L_49 = V_0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_50 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13;
NullCheck(L_50);
if ((((int32_t)L_49) >= ((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length)))))
{
goto IL_010a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_51 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13;
int32_t L_52 = V_0;
NullCheck(L_51);
int32_t L_53 = L_52;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_54 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_53));
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_55 = L_54;
V_5 = L_55;
Il2CppChar L_56 = L_55.___ChMin_0;
Il2CppChar L_57 = ___chMax1;
if ((((int32_t)L_56) <= ((int32_t)L_57)))
{
goto IL_003f;
}
}
IL_010a:
{
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddWord(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddWord_mAED995BB6613893E0950C5895515204F1E95D152 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___ecma0, bool ___negate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C834A0A1BF9CAFE03A200455551D5F3BE9F6A17);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DE7291AD6C60143F257C33D0032851C6605B3D5);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___negate1;
if (!L_0)
{
goto IL_001e;
}
}
{
bool L_1 = ___ecma0;
if (!L_1)
{
goto IL_0012;
}
}
{
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, _stringLiteral8DE7291AD6C60143F257C33D0032851C6605B3D5, NULL);
return;
}
IL_0012:
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_2 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_notWord_4;
RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A(__this, L_2, NULL);
return;
}
IL_001e:
{
bool L_3 = ___ecma0;
if (!L_3)
{
goto IL_002d;
}
}
{
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, _stringLiteral4C834A0A1BF9CAFE03A200455551D5F3BE9F6A17, NULL);
return;
}
IL_002d:
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_4 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_word_3;
RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A(__this, L_4, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddSpace(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddSpace_mD1BF3AD215D69EC6CF0E49A359F7FC709FD6FBB6 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___ecma0, bool ___negate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F976B576FF11797205EF4CC68ACD9A800BE2AC1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8EA5CF52FFE7CFAC422779A2A3A79A89B2C32DD0);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___negate1;
if (!L_0)
{
goto IL_001e;
}
}
{
bool L_1 = ___ecma0;
if (!L_1)
{
goto IL_0012;
}
}
{
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, _stringLiteral4F976B576FF11797205EF4CC68ACD9A800BE2AC1, NULL);
return;
}
IL_0012:
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_2 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_notSpace_2;
RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A(__this, L_2, NULL);
return;
}
IL_001e:
{
bool L_3 = ___ecma0;
if (!L_3)
{
goto IL_002d;
}
}
{
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, _stringLiteral8EA5CF52FFE7CFAC422779A2A3A79A89B2C32DD0, NULL);
return;
}
IL_002d:
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_4 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_space_1;
RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A(__this, L_4, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::AddDigit(System.Boolean,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddDigit_m04C1001F7E8DA85CB2D262ED403BA9BD215A7A8E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___ecma0, bool ___negate1, String_t* ___pattern2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44B60543C50583A2A430E5FA54F980E8284D55D1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4FC45147C51541AA3B68C8DE185FC773C7F6CAD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABE9CD4CAAC47E6616956B57C733BDA8F7C48677);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___ecma0;
if (!L_0)
{
goto IL_001e;
}
}
{
bool L_1 = ___negate1;
if (!L_1)
{
goto IL_0012;
}
}
{
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, _stringLiteral44B60543C50583A2A430E5FA54F980E8284D55D1, NULL);
return;
}
IL_0012:
{
RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83(__this, _stringLiteralABE9CD4CAAC47E6616956B57C733BDA8F7C48677, NULL);
return;
}
IL_001e:
{
bool L_2 = ___negate1;
String_t* L_3 = ___pattern2;
RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97(__this, _stringLiteralA4FC45147C51541AA3B68C8DE185FC773C7F6CAD, L_2, (bool)0, L_3, NULL);
return;
}
}
// System.Char System.Text.RegularExpressions.RegexCharClass::SingletonChar(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexCharClass_SingletonChar_m11683F48B3AA3E0B5CD5849C40ADDCECC91BFF10 (String_t* ___set0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___set0;
NullCheck(L_0);
Il2CppChar L_1;
L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 3, NULL);
return L_1;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsMergeable(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsMergeable_mD017475B43D0621F15ECAF5006410D4D0CCC46AD (String_t* ___charClass0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___charClass0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = RegexCharClass_IsNegated_m66E1348EBCAAD253AEEA5EDC3F9A93E84A433947(L_0, NULL);
if (L_1)
{
goto IL_0012;
}
}
{
String_t* L_2 = ___charClass0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = RegexCharClass_IsSubtraction_m069CC20713C5757A8AAD9BA556F07C8E042F3BE8(L_2, NULL);
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
}
IL_0012:
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsEmpty_mDD55987C8F4B887716E46869730F5E1E31593A44 (String_t* ___charClass0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___charClass0;
NullCheck(L_0);
Il2CppChar L_1;
L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 2, NULL);
if (L_1)
{
goto IL_0025;
}
}
{
String_t* L_2 = ___charClass0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL);
if (L_3)
{
goto IL_0025;
}
}
{
String_t* L_4 = ___charClass0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 1, NULL);
if (L_5)
{
goto IL_0025;
}
}
{
String_t* L_6 = ___charClass0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = RegexCharClass_IsSubtraction_m069CC20713C5757A8AAD9BA556F07C8E042F3BE8(L_6, NULL);
return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
}
IL_0025:
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingleton(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSingleton_mF23CB7003B555ADB4C5035A1B3A218A8ED847D12 (String_t* ___set0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___set0;
NullCheck(L_0);
Il2CppChar L_1;
L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL);
if (L_1)
{
goto IL_0046;
}
}
{
String_t* L_2 = ___set0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 2, NULL);
if (L_3)
{
goto IL_0046;
}
}
{
String_t* L_4 = ___set0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 1, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)2))))
{
goto IL_0046;
}
}
{
String_t* L_6 = ___set0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = RegexCharClass_IsSubtraction_m069CC20713C5757A8AAD9BA556F07C8E042F3BE8(L_6, NULL);
if (L_7)
{
goto IL_0046;
}
}
{
String_t* L_8 = ___set0;
NullCheck(L_8);
Il2CppChar L_9;
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, 3, NULL);
if ((((int32_t)L_9) == ((int32_t)((int32_t)65535))))
{
goto IL_0044;
}
}
{
String_t* L_10 = ___set0;
NullCheck(L_10);
Il2CppChar L_11;
L_11 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, 3, NULL);
String_t* L_12 = ___set0;
NullCheck(L_12);
Il2CppChar L_13;
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, 4, NULL);
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, 1))) == ((uint32_t)L_13))))
{
goto IL_0046;
}
}
IL_0044:
{
return (bool)1;
}
IL_0046:
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingletonInverse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSingletonInverse_m62E7E31998BEBC824A4EED3CEE5A2D3FB3BF5831 (String_t* ___set0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___set0;
NullCheck(L_0);
Il2CppChar L_1;
L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_0047;
}
}
{
String_t* L_2 = ___set0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 2, NULL);
if (L_3)
{
goto IL_0047;
}
}
{
String_t* L_4 = ___set0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 1, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)2))))
{
goto IL_0047;
}
}
{
String_t* L_6 = ___set0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = RegexCharClass_IsSubtraction_m069CC20713C5757A8AAD9BA556F07C8E042F3BE8(L_6, NULL);
if (L_7)
{
goto IL_0047;
}
}
{
String_t* L_8 = ___set0;
NullCheck(L_8);
Il2CppChar L_9;
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, 3, NULL);
if ((((int32_t)L_9) == ((int32_t)((int32_t)65535))))
{
goto IL_0045;
}
}
{
String_t* L_10 = ___set0;
NullCheck(L_10);
Il2CppChar L_11;
L_11 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, 3, NULL);
String_t* L_12 = ___set0;
NullCheck(L_12);
Il2CppChar L_13;
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, 4, NULL);
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, 1))) == ((uint32_t)L_13))))
{
goto IL_0047;
}
}
IL_0045:
{
return (bool)1;
}
IL_0047:
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSubtraction(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSubtraction_m069CC20713C5757A8AAD9BA556F07C8E042F3BE8 (String_t* ___charClass0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___charClass0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
String_t* L_2 = ___charClass0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 1, NULL);
String_t* L_4 = ___charClass0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 2, NULL);
return (bool)((((int32_t)L_1) > ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(3, (int32_t)L_3)), (int32_t)L_5))))? 1 : 0);
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsNegated(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsNegated_m66E1348EBCAAD253AEEA5EDC3F9A93E84A433947 (String_t* ___set0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___set0;
if (!L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ___set0;
NullCheck(L_1);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, 0, NULL);
return (bool)((((int32_t)L_2) == ((int32_t)1))? 1 : 0);
}
IL_000e:
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsECMAWordChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsECMAWordChar_m3A2920E6309D58F982B8B7AE20D9166601DDCA0B (Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_0, _stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B, NULL);
return L_1;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsWordChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsWordChar_m9FEFF0FC22277053D7A4404FD919C7F41733DB94 (Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
String_t* L_1 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___WordClass_7;
bool L_2;
L_2 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_0, L_1, NULL);
if (L_2)
{
goto IL_001e;
}
}
{
Il2CppChar L_3 = ___ch0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)8205))))
{
goto IL_001e;
}
}
{
Il2CppChar L_4 = ___ch0;
return (bool)((((int32_t)L_4) == ((int32_t)((int32_t)8204)))? 1 : 0);
}
IL_001e:
{
return (bool)1;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClass(System.Char,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83 (Il2CppChar ___ch0, String_t* ___set1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___ch0;
String_t* L_1 = ___set1;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = RegexCharClass_CharInClassRecursive_m7B2DC6EF52CFA494C26DC8AA976F3A06DDAF22FC(L_0, L_1, 0, NULL);
return L_2;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClassRecursive(System.Char,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClassRecursive_m7B2DC6EF52CFA494C26DC8AA976F3A06DDAF22FC (Il2CppChar ___ch0, String_t* ___set1, int32_t ___start2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
{
String_t* L_0 = ___set1;
int32_t L_1 = ___start2;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, ((int32_t)il2cpp_codegen_add(L_1, 1)), NULL);
V_0 = L_2;
String_t* L_3 = ___set1;
int32_t L_4 = ___start2;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, ((int32_t)il2cpp_codegen_add(L_4, 2)), NULL);
V_1 = L_5;
int32_t L_6 = ___start2;
int32_t L_7 = V_0;
int32_t L_8 = V_1;
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_6, 3)), L_7)), L_8));
V_3 = (bool)0;
String_t* L_9 = ___set1;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
int32_t L_11 = V_2;
if ((((int32_t)L_10) <= ((int32_t)L_11)))
{
goto IL_0030;
}
}
{
Il2CppChar L_12 = ___ch0;
String_t* L_13 = ___set1;
int32_t L_14 = V_2;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_15;
L_15 = RegexCharClass_CharInClassRecursive_m7B2DC6EF52CFA494C26DC8AA976F3A06DDAF22FC(L_12, L_13, L_14, NULL);
V_3 = L_15;
}
IL_0030:
{
Il2CppChar L_16 = ___ch0;
String_t* L_17 = ___set1;
int32_t L_18 = ___start2;
int32_t L_19 = V_0;
int32_t L_20 = V_1;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_21;
L_21 = RegexCharClass_CharInClassInternal_m166B4DDEB0553E88B58A2F3E859CA2D29995CF54(L_16, L_17, L_18, L_19, L_20, NULL);
V_4 = L_21;
String_t* L_22 = ___set1;
int32_t L_23 = ___start2;
NullCheck(L_22);
Il2CppChar L_24;
L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_22, L_23, NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)1))))
{
goto IL_004d;
}
}
{
bool L_25 = V_4;
V_4 = (bool)((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
}
IL_004d:
{
bool L_26 = V_4;
if (!L_26)
{
goto IL_0056;
}
}
{
bool L_27 = V_3;
return (bool)((((int32_t)L_27) == ((int32_t)0))? 1 : 0);
}
IL_0056:
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClassInternal(System.Char,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClassInternal_m166B4DDEB0553E88B58A2F3E859CA2D29995CF54 (Il2CppChar ___ch0, String_t* ___set1, int32_t ___start2, int32_t ___mySetLength3, int32_t ___myCategoryLength4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___start2;
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 3));
int32_t L_1 = V_0;
int32_t L_2 = ___mySetLength3;
V_1 = ((int32_t)il2cpp_codegen_add(L_1, L_2));
goto IL_0022;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
V_2 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_3, L_4))/2));
Il2CppChar L_5 = ___ch0;
String_t* L_6 = ___set1;
int32_t L_7 = V_2;
NullCheck(L_6);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL);
if ((((int32_t)L_5) >= ((int32_t)L_8)))
{
goto IL_001e;
}
}
{
int32_t L_9 = V_2;
V_1 = L_9;
goto IL_0022;
}
IL_001e:
{
int32_t L_10 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0022:
{
int32_t L_11 = V_0;
int32_t L_12 = V_1;
if ((!(((uint32_t)L_11) == ((uint32_t)L_12))))
{
goto IL_000a;
}
}
{
int32_t L_13 = V_0;
int32_t L_14 = ___start2;
if ((!(((uint32_t)((int32_t)(L_13&1))) == ((uint32_t)((int32_t)(L_14&1))))))
{
goto IL_0030;
}
}
{
return (bool)1;
}
IL_0030:
{
int32_t L_15 = ___myCategoryLength4;
if (L_15)
{
goto IL_0036;
}
}
{
return (bool)0;
}
IL_0036:
{
Il2CppChar L_16 = ___ch0;
String_t* L_17 = ___set1;
int32_t L_18 = ___start2;
int32_t L_19 = ___mySetLength3;
int32_t L_20 = ___myCategoryLength4;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_21;
L_21 = RegexCharClass_CharInCategory_m1B20968374CE9C35FE81D172C3325E37433897E1(L_16, L_17, L_18, L_19, L_20, NULL);
return L_21;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInCategory(System.Char,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInCategory_m1B20968374CE9C35FE81D172C3325E37433897E1 (Il2CppChar ___ch0, String_t* ___set1, int32_t ___start2, int32_t ___mySetLength3, int32_t ___myCategoryLength4, 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*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_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;
{
Il2CppChar L_0 = ___ch0;
int32_t L_1;
L_1 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_0, NULL);
V_0 = L_1;
int32_t L_2 = ___start2;
int32_t L_3 = ___mySetLength3;
V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_2, 3)), L_3));
int32_t L_4 = V_1;
int32_t L_5 = ___myCategoryLength4;
V_2 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
goto IL_0074;
}
IL_0014:
{
String_t* L_6 = ___set1;
int32_t L_7 = V_1;
NullCheck(L_6);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL);
V_3 = ((int16_t)L_8);
int32_t L_9 = V_3;
if (L_9)
{
goto IL_002e;
}
}
{
Il2CppChar L_10 = ___ch0;
int32_t L_11 = V_0;
String_t* L_12 = ___set1;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_13;
L_13 = RegexCharClass_CharInCategoryGroup_mDDAA3F1975AC1A7527137AE6951121F381703D48(L_10, L_11, L_12, (&V_1), NULL);
if (!L_13)
{
goto IL_0070;
}
}
{
return (bool)1;
}
IL_002e:
{
int32_t L_14 = V_3;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_0051;
}
}
{
int32_t L_15 = V_3;
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)100)))))
{
goto IL_0047;
}
}
{
Il2CppChar L_16 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_17;
L_17 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_16, NULL);
if (!L_17)
{
goto IL_0041;
}
}
{
return (bool)1;
}
IL_0041:
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
goto IL_0074;
}
IL_0047:
{
int32_t L_19 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_19, 1));
int32_t L_20 = V_0;
int32_t L_21 = V_3;
if ((!(((uint32_t)L_20) == ((uint32_t)L_21))))
{
goto IL_0070;
}
}
{
return (bool)1;
}
IL_0051:
{
int32_t L_22 = V_3;
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)-100)))))
{
goto IL_0066;
}
}
{
Il2CppChar L_23 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_23, NULL);
if (L_24)
{
goto IL_0060;
}
}
{
return (bool)1;
}
IL_0060:
{
int32_t L_25 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_25, 1));
goto IL_0074;
}
IL_0066:
{
int32_t L_26 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract((-1), L_26));
int32_t L_27 = V_0;
int32_t L_28 = V_3;
if ((((int32_t)L_27) == ((int32_t)L_28)))
{
goto IL_0070;
}
}
{
return (bool)1;
}
IL_0070:
{
int32_t L_29 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
}
IL_0074:
{
int32_t L_30 = V_1;
int32_t L_31 = V_2;
if ((((int32_t)L_30) < ((int32_t)L_31)))
{
goto IL_0014;
}
}
{
return (bool)0;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInCategoryGroup(System.Char,System.Globalization.UnicodeCategory,System.String,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInCategoryGroup_mDDAA3F1975AC1A7527137AE6951121F381703D48 (Il2CppChar ___ch0, int32_t ___chcategory1, String_t* ___category2, int32_t* ___i3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
{
int32_t* L_0 = ___i3;
int32_t* L_1 = ___i3;
int32_t L_2 = *((int32_t*)L_1);
*((int32_t*)L_0) = (int32_t)((int32_t)il2cpp_codegen_add(L_2, 1));
String_t* L_3 = ___category2;
int32_t* L_4 = ___i3;
int32_t L_5 = *((int32_t*)L_4);
NullCheck(L_3);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_5, NULL);
V_0 = ((int16_t)L_6);
int32_t L_7 = V_0;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_003a;
}
}
{
V_1 = (bool)0;
goto IL_0035;
}
IL_0018:
{
bool L_8 = V_1;
if (L_8)
{
goto IL_0025;
}
}
{
int32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
int32_t L_10 = ___chcategory1;
int32_t L_11 = V_0;
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
{
goto IL_0025;
}
}
{
V_1 = (bool)1;
}
IL_0025:
{
int32_t* L_12 = ___i3;
int32_t* L_13 = ___i3;
int32_t L_14 = *((int32_t*)L_13);
*((int32_t*)L_12) = (int32_t)((int32_t)il2cpp_codegen_add(L_14, 1));
String_t* L_15 = ___category2;
int32_t* L_16 = ___i3;
int32_t L_17 = *((int32_t*)L_16);
NullCheck(L_15);
Il2CppChar L_18;
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_15, L_17, NULL);
V_0 = ((int16_t)L_18);
}
IL_0035:
{
int32_t L_19 = V_0;
if (L_19)
{
goto IL_0018;
}
}
{
bool L_20 = V_1;
return L_20;
}
IL_003a:
{
V_2 = (bool)1;
goto IL_005b;
}
IL_003e:
{
bool L_21 = V_2;
if (!L_21)
{
goto IL_004b;
}
}
{
int32_t L_22 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((-1), L_22));
int32_t L_23 = ___chcategory1;
int32_t L_24 = V_0;
if ((!(((uint32_t)L_23) == ((uint32_t)L_24))))
{
goto IL_004b;
}
}
{
V_2 = (bool)0;
}
IL_004b:
{
int32_t* L_25 = ___i3;
int32_t* L_26 = ___i3;
int32_t L_27 = *((int32_t*)L_26);
*((int32_t*)L_25) = (int32_t)((int32_t)il2cpp_codegen_add(L_27, 1));
String_t* L_28 = ___category2;
int32_t* L_29 = ___i3;
int32_t L_30 = *((int32_t*)L_29);
NullCheck(L_28);
Il2CppChar L_31;
L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_28, L_30, NULL);
V_0 = ((int16_t)L_31);
}
IL_005b:
{
int32_t L_32 = V_0;
if (L_32)
{
goto IL_003e;
}
}
{
bool L_33 = V_2;
return L_33;
}
}
// System.String System.Text.RegularExpressions.RegexCharClass::NegateCategory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_NegateCategory_m1C615694A5F8EECBBE4C09BA293454D856F52F50 (String_t* ___category0, const RuntimeMethod* method)
{
StringBuilder_t* V_0 = NULL;
int32_t V_1 = 0;
int16_t V_2 = 0;
{
String_t* L_0 = ___category0;
if (L_0)
{
goto IL_0005;
}
}
{
return (String_t*)NULL;
}
IL_0005:
{
String_t* L_1 = ___category0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
StringBuilder_t* L_3;
L_3 = StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1(L_2, NULL);
V_0 = L_3;
V_1 = 0;
goto IL_002c;
}
IL_0015:
{
String_t* L_4 = ___category0;
int32_t L_5 = V_1;
NullCheck(L_4);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL);
V_2 = ((int16_t)L_6);
StringBuilder_t* L_7 = V_0;
int16_t L_8 = V_2;
NullCheck(L_7);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_7, ((int32_t)(uint16_t)((-L_8))), NULL);
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_002c:
{
int32_t L_11 = V_1;
String_t* L_12 = ___category0;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0015;
}
}
{
StringBuilder_t* L_14 = V_0;
String_t* L_15;
L_15 = StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F(L_14, NULL);
return L_15;
}
}
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* RegexCharClass_Parse_m4766E7E53BF572FD9815DEEBD9831380C33C796A (String_t* ___charClass0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___charClass0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_1;
L_1 = RegexCharClass_ParseRecursive_m6ABF2F2B8B8C5A559866EBF3FBA305247DE4CCF6(L_0, 0, NULL);
return L_1;
}
}
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::ParseRecursive(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* RegexCharClass_ParseRecursive_m6ABF2F2B8B8C5A559866EBF3FBA305247DE4CCF6 (String_t* ___charClass0, int32_t ___start1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* V_6 = NULL;
Il2CppChar V_7 = 0x0;
Il2CppChar V_8 = 0x0;
{
String_t* L_0 = ___charClass0;
int32_t L_1 = ___start1;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, ((int32_t)il2cpp_codegen_add(L_1, 1)), NULL);
V_0 = L_2;
String_t* L_3 = ___charClass0;
int32_t L_4 = ___start1;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, ((int32_t)il2cpp_codegen_add(L_4, 2)), NULL);
V_1 = L_5;
int32_t L_6 = ___start1;
int32_t L_7 = V_0;
int32_t L_8 = V_1;
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_6, 3)), L_7)), L_8));
int32_t L_9 = V_0;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_10 = (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*)il2cpp_codegen_object_new(List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_il2cpp_TypeInfo_var);
NullCheck(L_10);
List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4(L_10, L_9, List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_RuntimeMethod_var);
V_3 = L_10;
int32_t L_11 = ___start1;
V_4 = ((int32_t)il2cpp_codegen_add(L_11, 3));
int32_t L_12 = V_4;
int32_t L_13 = V_0;
V_5 = ((int32_t)il2cpp_codegen_add(L_12, L_13));
goto IL_0071;
}
IL_0030:
{
String_t* L_14 = ___charClass0;
int32_t L_15 = V_4;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
V_7 = L_16;
int32_t L_17 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_17, 1));
int32_t L_18 = V_4;
int32_t L_19 = V_5;
if ((((int32_t)L_18) >= ((int32_t)L_19)))
{
goto IL_0055;
}
}
{
String_t* L_20 = ___charClass0;
int32_t L_21 = V_4;
NullCheck(L_20);
Il2CppChar L_22;
L_22 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_20, L_21, NULL);
V_8 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, 1)));
goto IL_005c;
}
IL_0055:
{
V_8 = ((int32_t)65535);
}
IL_005c:
{
int32_t L_23 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_23, 1));
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_24 = V_3;
Il2CppChar L_25 = V_7;
Il2CppChar L_26 = V_8;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_27;
memset((&L_27), 0, sizeof(L_27));
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E((&L_27), L_25, L_26, /*hidden argument*/NULL);
NullCheck(L_24);
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(L_24, L_27, List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_RuntimeMethod_var);
}
IL_0071:
{
int32_t L_28 = V_4;
int32_t L_29 = V_5;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0030;
}
}
{
V_6 = (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)NULL;
String_t* L_30 = ___charClass0;
NullCheck(L_30);
int32_t L_31;
L_31 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_30, NULL);
int32_t L_32 = V_2;
if ((((int32_t)L_31) <= ((int32_t)L_32)))
{
goto IL_008c;
}
}
{
String_t* L_33 = ___charClass0;
int32_t L_34 = V_2;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_35;
L_35 = RegexCharClass_ParseRecursive_m6ABF2F2B8B8C5A559866EBF3FBA305247DE4CCF6(L_33, L_34, NULL);
V_6 = L_35;
}
IL_008c:
{
String_t* L_36 = ___charClass0;
int32_t L_37 = ___start1;
NullCheck(L_36);
Il2CppChar L_38;
L_38 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_36, L_37, NULL);
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_39 = V_3;
String_t* L_40 = ___charClass0;
int32_t L_41 = V_5;
int32_t L_42 = V_1;
NullCheck(L_40);
String_t* L_43;
L_43 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_40, L_41, L_42, NULL);
StringBuilder_t* L_44 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_44);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_44, L_43, NULL);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_45 = V_6;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_46 = (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)il2cpp_codegen_object_new(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
NullCheck(L_46);
RegexCharClass__ctor_mFAD2AF3D7B0D4D3DC8BC850B8899C5C4D55F8B49(L_46, (bool)((((int32_t)L_38) == ((int32_t)1))? 1 : 0), L_39, L_44, L_45, NULL);
return L_46;
}
}
// System.Int32 System.Text.RegularExpressions.RegexCharClass::RangeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = __this->____rangelist_14;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_0, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
return L_1;
}
}
// System.String System.Text.RegularExpressions.RegexCharClass::ToStringClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
StringBuilder_t* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_4;
memset((&V_4), 0, sizeof(V_4));
{
bool L_0 = __this->____canonical_16;
if (L_0)
{
goto IL_000e;
}
}
{
RegexCharClass_Canonicalize_m77EEBAD046B3EAD5110DD472434BDE16851C7A9E(__this, NULL);
}
IL_000e:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_1 = __this->____rangelist_14;
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_1, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_multiply(L_2, 2));
int32_t L_3 = V_0;
StringBuilder_t* L_4 = __this->____categories_15;
NullCheck(L_4);
int32_t L_5;
L_5 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_4, NULL);
StringBuilder_t* L_6;
L_6 = StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_3, L_5)), 3)), NULL);
V_1 = L_6;
bool L_7 = __this->____negate_17;
if (!L_7)
{
goto IL_003d;
}
}
{
V_2 = 1;
goto IL_003f;
}
IL_003d:
{
V_2 = 0;
}
IL_003f:
{
StringBuilder_t* L_8 = V_1;
int32_t L_9 = V_2;
NullCheck(L_8);
StringBuilder_t* L_10;
L_10 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_8, ((int32_t)(uint16_t)L_9), NULL);
StringBuilder_t* L_11 = V_1;
int32_t L_12 = V_0;
NullCheck(L_11);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_11, ((int32_t)(uint16_t)L_12), NULL);
StringBuilder_t* L_14 = V_1;
StringBuilder_t* L_15 = __this->____categories_15;
NullCheck(L_15);
int32_t L_16;
L_16 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_15, NULL);
NullCheck(L_14);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)(uint16_t)L_16), NULL);
V_3 = 0;
goto IL_00a7;
}
IL_0068:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_18 = __this->____rangelist_14;
int32_t L_19 = V_3;
NullCheck(L_18);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_20;
L_20 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_18, L_19, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
V_4 = L_20;
StringBuilder_t* L_21 = V_1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_22 = V_4;
Il2CppChar L_23 = L_22.___First_0;
NullCheck(L_21);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_21, L_23, NULL);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_25 = V_4;
Il2CppChar L_26 = L_25.___Last_1;
if ((((int32_t)L_26) == ((int32_t)((int32_t)65535))))
{
goto IL_00a3;
}
}
{
StringBuilder_t* L_27 = V_1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_28 = V_4;
Il2CppChar L_29 = L_28.___Last_1;
NullCheck(L_27);
StringBuilder_t* L_30;
L_30 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_27, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, 1))), NULL);
}
IL_00a3:
{
int32_t L_31 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_31, 1));
}
IL_00a7:
{
int32_t L_32 = V_3;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_33 = __this->____rangelist_14;
NullCheck(L_33);
int32_t L_34;
L_34 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_33, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
if ((((int32_t)L_32) < ((int32_t)L_34)))
{
goto IL_0068;
}
}
{
StringBuilder_t* L_35 = V_1;
StringBuilder_t* L_36 = V_1;
NullCheck(L_36);
int32_t L_37;
L_37 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_36, NULL);
NullCheck(L_35);
StringBuilder_set_Chars_m20B53B0EEAB2A0BB0EC84A130FF12EA86ADD99AE(L_35, 1, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract(L_37, 3))), NULL);
StringBuilder_t* L_38 = V_1;
StringBuilder_t* L_39 = __this->____categories_15;
NullCheck(L_38);
StringBuilder_t* L_40;
L_40 = StringBuilder_Append_m8037E51D061CE657D7EB2EDAFCEE91878E4F8FFB(L_38, L_39, NULL);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_41 = __this->____subtractor_18;
if (!L_41)
{
goto IL_00ec;
}
}
{
StringBuilder_t* L_42 = V_1;
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_43 = __this->____subtractor_18;
NullCheck(L_43);
String_t* L_44;
L_44 = RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57(L_43, NULL);
NullCheck(L_42);
StringBuilder_t* L_45;
L_45 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_42, L_44, NULL);
}
IL_00ec:
{
StringBuilder_t* L_46 = V_1;
String_t* L_47;
L_47 = StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F(L_46, NULL);
return L_47;
}
}
// System.Text.RegularExpressions.RegexCharClass/SingleRange System.Text.RegularExpressions.RegexCharClass::GetRangeAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = __this->____rangelist_14;
int32_t L_1 = ___i0;
NullCheck(L_0);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_2;
L_2 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_0, L_1, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
return L_2;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::Canonicalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_Canonicalize_m77EEBAD046B3EAD5110DD472434BDE16851C7A9E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
bool V_4 = false;
{
__this->____canonical_16 = (bool)1;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_0 = __this->____rangelist_14;
il2cpp_codegen_runtime_class_init_inline(SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var);
SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0* L_1 = ((SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_StaticFields*)il2cpp_codegen_static_fields_for(SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var))->___Instance_0;
NullCheck(L_0);
List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF(L_0, L_1, List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF_RuntimeMethod_var);
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_2 = __this->____rangelist_14;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_2, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_00f3;
}
}
{
V_4 = (bool)0;
V_1 = 1;
V_2 = 0;
}
IL_002f:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_4 = __this->____rangelist_14;
int32_t L_5 = V_2;
NullCheck(L_4);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_6;
L_6 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_4, L_5, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
Il2CppChar L_7 = L_6.___Last_1;
V_3 = L_7;
}
IL_0041:
{
int32_t L_8 = V_1;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_9 = __this->____rangelist_14;
NullCheck(L_9);
int32_t L_10;
L_10 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_9, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
if ((((int32_t)L_8) == ((int32_t)L_10)))
{
goto IL_0057;
}
}
{
Il2CppChar L_11 = V_3;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)65535)))))
{
goto IL_005c;
}
}
IL_0057:
{
V_4 = (bool)1;
goto IL_008a;
}
IL_005c:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_12 = __this->____rangelist_14;
int32_t L_13 = V_1;
NullCheck(L_12);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_14;
L_14 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_12, L_13, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_15 = L_14;
V_0 = L_15;
Il2CppChar L_16 = L_15.___First_0;
Il2CppChar L_17 = V_3;
if ((((int32_t)L_16) > ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, 1)))))
{
goto IL_008a;
}
}
{
Il2CppChar L_18 = V_3;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_19 = V_0;
Il2CppChar L_20 = L_19.___Last_1;
if ((((int32_t)L_18) >= ((int32_t)L_20)))
{
goto IL_0084;
}
}
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_21 = V_0;
Il2CppChar L_22 = L_21.___Last_1;
V_3 = L_22;
}
IL_0084:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1));
goto IL_0041;
}
IL_008a:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_24 = __this->____rangelist_14;
int32_t L_25 = V_2;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_26 = __this->____rangelist_14;
int32_t L_27 = V_2;
NullCheck(L_26);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_28;
L_28 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_26, L_27, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
Il2CppChar L_29 = L_28.___First_0;
Il2CppChar L_30 = V_3;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_31;
memset((&L_31), 0, sizeof(L_31));
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E((&L_31), L_29, L_30, /*hidden argument*/NULL);
NullCheck(L_24);
List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD(L_24, L_25, L_31, List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_RuntimeMethod_var);
int32_t L_32 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_32, 1));
bool L_33 = V_4;
if (L_33)
{
goto IL_00da;
}
}
{
int32_t L_34 = V_2;
int32_t L_35 = V_1;
if ((((int32_t)L_34) >= ((int32_t)L_35)))
{
goto IL_00d1;
}
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_36 = __this->____rangelist_14;
int32_t L_37 = V_2;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_38 = __this->____rangelist_14;
int32_t L_39 = V_1;
NullCheck(L_38);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_40;
L_40 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(L_38, L_39, List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_RuntimeMethod_var);
NullCheck(L_36);
List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD(L_36, L_37, L_40, List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_RuntimeMethod_var);
}
IL_00d1:
{
int32_t L_41 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_41, 1));
goto IL_002f;
}
IL_00da:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_42 = __this->____rangelist_14;
int32_t L_43 = V_2;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_44 = __this->____rangelist_14;
NullCheck(L_44);
int32_t L_45;
L_45 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(L_44, List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_RuntimeMethod_var);
int32_t L_46 = V_2;
NullCheck(L_42);
List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92(L_42, L_43, ((int32_t)il2cpp_codegen_subtract(L_45, L_46)), List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92_RuntimeMethod_var);
}
IL_00f3:
{
return;
}
}
// System.String System.Text.RegularExpressions.RegexCharClass::SetFromProperty(System.String,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_SetFromProperty_m75FD04D8F9EA5FD996E4C8B4A2DF45BEEE6BABC5 (String_t* ___capname0, bool ___invert1, String_t* ___pattern2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1489F923C4DCA729178B3E3233458550D8DDDF29);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
String_t* V_4 = NULL;
{
V_0 = 0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_0 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_propTable_12;
NullCheck(L_0);
V_1 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
goto IL_0066;
}
IL_000c:
{
int32_t L_1 = V_0;
int32_t L_2 = V_1;
V_2 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_1, L_2))/2));
String_t* L_3 = ___capname0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_4 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_propTable_12;
int32_t L_5 = V_2;
NullCheck(L_4);
int32_t L_6 = L_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
int32_t L_8 = 0;
String_t* L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
int32_t L_10;
L_10 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_3, L_9, 4, NULL);
V_3 = L_10;
int32_t L_11 = V_3;
if ((((int32_t)L_11) >= ((int32_t)0)))
{
goto IL_002b;
}
}
{
int32_t L_12 = V_2;
V_1 = L_12;
goto IL_0066;
}
IL_002b:
{
int32_t L_13 = V_3;
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_0035;
}
}
{
int32_t L_14 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1));
goto IL_0066;
}
IL_0035:
{
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_15 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_propTable_12;
int32_t L_16 = V_2;
NullCheck(L_15);
int32_t L_17 = L_16;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_18);
int32_t L_19 = 1;
String_t* L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_4 = L_20;
bool L_21 = ___invert1;
if (!L_21)
{
goto IL_0063;
}
}
{
String_t* L_22 = V_4;
NullCheck(L_22);
Il2CppChar L_23;
L_23 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_22, 0, NULL);
if (L_23)
{
goto IL_0056;
}
}
{
String_t* L_24 = V_4;
NullCheck(L_24);
String_t* L_25;
L_25 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_24, 1, NULL);
return L_25;
}
IL_0056:
{
String_t* L_26 = V_4;
String_t* L_27;
L_27 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral1489F923C4DCA729178B3E3233458550D8DDDF29, L_26, NULL);
return L_27;
}
IL_0063:
{
String_t* L_28 = V_4;
return L_28;
}
IL_0066:
{
int32_t L_29 = V_0;
int32_t L_30 = V_1;
if ((!(((uint32_t)L_29) == ((uint32_t)L_30))))
{
goto IL_000c;
}
}
{
String_t* L_31 = ___pattern2;
String_t* L_32 = ___capname0;
String_t* L_33;
L_33 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE56748CDD247AC396C7847513B2D2D24821D48DA)), L_32, NULL);
String_t* L_34;
L_34 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1)), L_31, L_33, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_35);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_35, L_34, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexCharClass_SetFromProperty_m75FD04D8F9EA5FD996E4C8B4A2DF45BEEE6BABC5_RuntimeMethod_var)));
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__cctor_m70495E564EC18CDEF2A2687F8012C96E571A0631 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m5D77EB3F62FED2B879551BFADA7FE409B56F99F2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral000F57CC5E07B45534A096C11FC9672E840B7F68);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral011DF8383E0C2BB51ACA74815C24731CD9E6CE0F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0140171DEC0E182AA67E7F6CFEEBAB7C8B5C0FCE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral01AA0D36274A76E5B82E172EB39CD0A2B7C42F6F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04F6959FE66299139C73EEDA75304959291465E4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053D8D6CEEBA9453C97D0EE5374DB863E6F77AD4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral070D6014844E6DF132D41B316BE8094A83EA1438);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral078B26963F0AABA0E769F9FE2FD2A435F23963D3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral07C1C7BA92E50F21FFD892D17457CF1A69BB791D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08DD4EB050E73CCA4453097A7DBA79D40E0E3979);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral096B13703C72B9AEA7C14C090DF850AD4A3A1041);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A4E2151BBA9A1D6C1D5A0AD327D1B10C9EE9832);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DB5D60B71A46B7795916FE26C1C4DBC53DE160A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DF7C1A0741BEED9A8C63FAA83056EC4B6BEE7A6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E356BA505631FBF715758BED27D503F8B260E3A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EA4B1CC43D32D001CCC7AEB31AED2F319871953);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F622D75F0434A833C1A20335861864CB07278C7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral101267D78B17257986305184E104E56DAAB7F530);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral10FD1944C65E314C0A29404FEA92EF36B361E76F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral114F963FF5A99D30DEF5029A17A2882AE35F3351);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1170C7BC5A746D6ACA6EDEF05E2564FF8B22FCBE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E7A22EB71C40109AE6CB22789A72565B8017FC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1210E68C52ADBB898A6E113C26B325E97793204E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral128334FD6CDD6094EC6C44C09CAD6FF7669AF5E2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral130E357173B69D89809090B52517E63B39F780E8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13D9C88B313302420C8CFE519F4C703FF034E7EE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FE9FD2E16CB2DFD4137039CFA338E990ED2CDC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15040C7E5288B7B711A62DA4A28F41E54CDA46C6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15511681E57C6B2F87C98682ED71B8CA850A8F9D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1597D592E82DA28F57E15327C1FB8CCAA68433C3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15CF5C2792462326B481E11AC5840FB1C9BD9753);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1617F2BEE10D5175D04111AF86F02617CABA97F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16E57333086571811A55FB94A0709583DE6ED3ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral17138F1A25103243037965AF0DACDE016F009F1F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1957A3E746ABE2F553BFCCE9CB0D765AF0E28F1F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19E0261B9934BD92A6FCAC8943D903675768820D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19F63BC67A386ED4A60194F8544D07544E0ED578);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A95536CFA43BE767A4C275A39B7BE4808E9089C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AB68A0E52A32EE36A9AE0A3D6EFEB01F0F7FADA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C7F51C9DB9BE64870719C518062BBF577083F00);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1DCAF254E462C711D74E7655EF57F6ADFE0005F3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1DE5A73ADD8E12B2946578D4ECFC5F00255F2C55);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E9F798EB462039BB2177A8C3030D8E9736FDC2F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EC89EE4781577447EF59AEA1BDCB577E3152BED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral206A50481A582043159547C0CBBBBDCC728C7AEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2086C9392E067629621EF48286148B3F05A73E71);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20CB4BC9AD027C4DBCABC34553F9EDA5EF3DA0A5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21A998A9E8032EA402184FF6E9E027A017C5E340);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral234D19ACC97DBDDB4C2351D9B583DDC8AD958380);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23F68F010E1BEF01AE1E817AB8CB5610B3123D6C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24313380B89749FA23D81C8CFE7ECADF5F282DF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral247E61BCA5CC999BD7DF819AFB4BD1625BD89B92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2532DF950B4388A092C5014E3ED2E06043E01B06);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25AE09788E4F4652C4499CDB887696F30D3C0A14);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26B8A55537BB75F22B06B27AB210733192EB9255);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26F6EDFC76E72DC536C20E57742C3028CF19D0E4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27CDC5C40A6244DAB073099C8597F6AE59E64332);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28B479468676DD63B85F4D86A55B2B645958E13F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral291D5871DD89F1D30A07082FF0F885DB96ED978E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A6312F3D68C885205BF84CED395D8AF4B0AE871);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A7EF3D582665CA41115B9D210D25F834B8A136E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A9DB411D2677142C609D070E692BAF2D45522FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B9C80C1D9D6D29DCFBF1AF4BBC3F8B76CA52758);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BA36E0ECAE4F6481FD29426D81E78B78AFC7010);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BC80923BC3E932EEF70C3EADA463E4AFCEAF41C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2DA4F5666B10D635F4124ED2863B7EDAE4456F97);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E36B6524DCDA0E1F8E3C5E4DE0EDEE1CE1D593E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F15DCEA75308906FE22DC8E2CB71A007135A75B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F627E050FC96CB06809DD00B72C043AF06DD74F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FA567A6E7C4AF82CD3E48D19E671A027AA8C39F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FE2C0AAB1B3726B4599067198204955DC8B58BC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral300268D606563A63B1FA078DEEDF83AFCAAAE4F0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3311705E737BEADF911B313590BF8CF65EB59CC1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33283793135AFF6EA11C4E5C8BF20BFE3DCBA7D8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33AAE7E3BDF099D0868E4C15621108A967FE4DC4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral340B59088D1E7ED96B802B2F82F9F37B545A0D7D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral34557A7DCB2F8DBA8DB69871993A003A8F4D2956);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral34ACA0350B0D7DEE2485343251B1984C498672B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral34D4FC077E54157726AE9B0ADDA15B8BFF84A418);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35896C163A11D689243E387537FCD8A2318B554F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B8114AC69BEBAACEEF31EAE37667FA389CB075);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral36CB796E61D012C499558795200D7D4714DA234C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B18B4FDEC37ECA95A5E9D9C8B31C5C413A09A6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral382CEA341283C799FB6CF03C7FD23F5A61EA9F7E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38383EE49792CC3B3E578FC02137E10AFCD4758D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral389A9F19C8A7AB79BBF990BB3DCB06B29F25F918);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B74C4EE573585B536403D684B3EBF642E92483B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C2555089D217F13B7AA63E80C445CC9BB96E4F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3E0F8D65BB2C91CC1B08E6BF17D4F04D124FB22D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3E8C94A3E14E14AA02CE50BE5898BFE459EFF966);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F312D3A9558BFCCCA55C437288461A61D8E1D93);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3FF3E7DECFB9C95D2D63B46FEE99497F03EA7B17);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4073D00CB09BBEA83C116CD6C23565C9EA25BD79);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40C5D20526D3E1F271BCC96E4185E2B8D38D5CD6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral417B904D495BF7B5B00D670B422777028B0F07DA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41DC862347F6094C3DE052ECE9EDE8691528B858);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4251DBF5ADF22DF838851BDEA678ED6D151EF9C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42B381340E99A7D1B67884D1B8FC702C25279D7E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral430944DE69F10C0B23DC2BCA3D2D3116A748687C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral43248ADAE46B03C6973C36912CF5A1F9388DA3CA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4366DE5220453B7E4119C139B5899C931A1996B1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44164D1EBC6AEE4BF7519590E8E1EC986D7AE6AB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44B9BD7E0CF8DFB1AE4286D58C477BC0EAD8DB8A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4647EBF68BAADB1E3B9B0C77F3A69B79BF1A0C1E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46E1FF853298BBE44C51916BE2DE99315FDA94EE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46FE6AEAF3CC2C63CB04108AD734B8F3343F9CEC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48B15371F248E055C6B88CA5F7E8908A2F9528A1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral492FBC692FA08806670CCBD96D41280D1A10D87C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral493CF4443F62774E118495D34076BBB67DA26447);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49FDD37399D8F47722B2A2D5F3272B1F0A84C50A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A94750FA069FF6E0CA4240635D562EC6A9A3CD9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C301992B1F446471CFF312BEC98B68362ED7195);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4E22436534F7DDDA6023610945AD3FB84B08D5F2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4EE7674C61A1A731E18D5F2496FE39B31A85571E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F6FCE005462468B85E1B17BF50DABD387E2AA0D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5059FE07AF01D26644CD156256DE05A498559F40);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral507838B99A8D85F0312998B7DAFF905BD48ED124);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral516E5BE6DD9745A9A8953C8F5212FB4B0BAC5414);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51B91EE138D75025CB4AD85CAE46A3613A4FE4F1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral536FBABA39FCBBBEAC12562490EE276814293C4E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5573AC6AB93A9166E7A15D98F63033348624AB14);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5672E54AB2E54B13506540FFFD4046D50ADD13F5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral572C38B92C9B0B812EDF7214BF6A234D5B82A1BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral585541DFE94914F2247B4370A9C9041BA8A8817A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58ECA1815AE37FF755F51324305C6B20EEB5CA43);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D0500A33A5D752B7F9B7739B149EF5093EB4A4C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D06023694DC591611674259693BCE83EA3DB59D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D87BBECD21302E784C8C8CBE6A07BB1F9F99A6A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E2FCEA4A7480B304F0A57BA73C66905F03F82D8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EA04EBADB6862D231CCC55599471F40B5853152);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5F802F2CCDDC761DBC132CF3C338C39FE047A6C5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral60820866198451E7A511DDE45223B743485E091B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6384916204C3C792C7ADFE16CD44673450DC60BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63CBAAA066EA660C960DD134AECF48535F87D341);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6400E1A9A53D55249951EBDFEFD090A6FEEA713C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6437668AAFF3C7A470F151AD7B4EE6B5D8AF0CDD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral647DE9597222B23A6CBF484F4ACE45204FDF469C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64CEBA4D1E05040C825F3B67FF36104CDF8C140B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral656D9E0C66BEC4E7D31947D0F46CDD1F3D0780C4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67A5CD5B9B1936E3A2E1D14DF804FE6F86F90FBF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral688934845F22049CB14668832EFA33D45013B6B9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68C5BFBDA21C60E498829E6DC505022F5F16F460);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral697C469609DEBC892F8465E2D7EFBE41919EE6C4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral699E5CF5FC92D12C09117936E6A4F78CFD297C40);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69E08279F3AF3F2F95DAE723B001E20161FBE38C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69E73A35FA56B5A7C368371EE1AA96E00AA5E7F6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B1E5651A6A221CCC8E859CCB7CCB4C9377DAD2D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B91749ECEA9F52797D5D7575432F93DA98ED9B6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6BBBCAD0FED20F4E716FA5226DA069AD1A531464);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D6909BC795B5728D6DDEA208DA7986143605B77);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70A458D9D35DAA83073018B72782A5859364AEC2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7156D4CC436B517B16046BA39F6FA35A225096BD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral732A3DD582071D41FA00671D01893D635D8037D1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74037E48AC20A388E61DF94BF787B61C405AB756);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74AE75B992F1B9D977C2A9EB14D1887671443FD9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral761474E731109EBFC61E66B2EA5CF80B189944C4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral78FDF6509F51FFE965CF86F9D7B2D7478FBC3CC8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79872D0EDAA11B89BD19D3E51D0881503A87EDA1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7B5E86CF8187B91807877AF0725E3F9554E40645);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BB02F22CCAAAF38745BF587A5C3005D1AD136BE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7EADE718A2652FC00E2DC3C5311A1FC3B7EB0994);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral802D3A4E1213A50A2A168149B9FD26645A8A87A2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral815CF156B85729CF6777A81E222C740FEE04C774);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8175D6867E215079046783AF13663AA07AF75633);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8259BDC645D534B5B71BDC6C8AD2D935199FFA07);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8280C6CBF3DFC21B10377BE693A06682AF6F0152);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82FE3474C49C05BF5FDB35ACB3EAFF407B81BEC2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral847F72FEB0580436035F6D3588EE4923C9664F52);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84D767750F508A5D8214DC4EF507F64102853819);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8503C1230DB9F8ED4C302C9ACA86BE76005A7AD4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8524162C1D54A81B8F41E8ABC73B7F338BCBF999);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral85A82DCF7E610B3F027071C9E03590C558821E8B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86AAD9106A4B33A52D356C887F9FCCD9575A84FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88CC141217D41B201641CF8FBC99ABE39D231BED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral89E1EA169C60546C4BD1EF37579FE39231438D24);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8AA46685E79CC9C6CF70A788C04B335A1EDB671A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8B196021BB84888FED22FF4F69DE2891530E658E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C1BBD97ACA7E0F0DABD7D5A3480E8D91A8BF27E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CB0CD7CE18209A25B0A83FA41BF1814407366B2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D8FB160B4C212DAD2E50C479B19DFEAE167F4A3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8FC9007895DB64A6B839275F76D1C08A3877082E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral905A5E6884BC6877A3AB37B1447674394A694C9D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral90CE8CBDC840E407D5B2A4C6CF6E6A4F4794897F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral923C91A55674664C20A3103F09FC6FC4F3831DEF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92A5652D382A18E89C4881EC57041FC7D885CA80);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral958F6341A9F87CE00B85F8434E98205AFF29E113);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9646358C9E75E51D9842A7C6E688647074D38F76);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96C094BE3157837A8972ED02015161B75EBCF5C8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral974BB14506DAA8EED27240396BEDF6F88D18365F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9782BAAC1929C850665C4846404B90AE23B25CD5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98A4DE8EF9F62DFF4A8C0BECFE7D99D6D24B4F04);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9ACABBE7C959ED3E3557E5F849A9541171B808CB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B99593353A610C4BEE0D6A94A01A3296080C0FB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DD0CB5BBF8C6FB7DD693869683F1175C428DA5C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DD8BCA1A64695C9743B1D5588BFE0E1402EEC02);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E866232FC6EBE054D645DFC95919F28F962D426);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F11BF96AA5B3A5F06F42DC23DCB6903ADA909CB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FC89E4E581ACD10FED351BAADA0107858CD0772);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FEB4C9AB9914D2D0C51EA57D72B50A208A74A7C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0E4803448ED328FB6169A86026FEEFF36A78441);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA13DE744B01F63C5DE74C2AEADCEEB872A243DC4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA17E97D5B68A896AB2F537CA1EE9FD4C545D7923);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA1927043DBE274F716E7BB98AC63A1A852D80205);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA25635816BE6BF5F9885D4A2338FD40C8B7DC8F9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA329D18BF9C9A4F354B5EC57F9B7D834C6032C03);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA392C242A443C3023ABF204424167CEB86A765BB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA453C374F6792B40611F98BF51F5D93A3E737CF6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA46556E3586F9581468C3C15BA58F8F32AA80D97);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4FC45147C51541AA3B68C8DE185FC773C7F6CAD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA78E6DE17205365FF846BB0AEBE6FFBC845BDDCB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA81B3CACE590267ABAC8F88DC90A961A186D07CF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA922C7ADD6A014291A7FFA692FA08A7256871463);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA47367E18DA97EF3E14E15715D8040CD17C608E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAAB6296466565113D9AAC1E6D930A78C4D894D6A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralADF2661D275D11E81149306F5D08B9D5E84C7307);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE073D669EEEC0D4EBD6B8BA56FC2EB068FC8CC5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAEB44B3AF9B25AF5609DB2851CC6DBBFBD804E36);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAF8BC0EC6A1874C3FFEB5694BC36974F673E80C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB10277638EC53EB7D22B3B79D907BFD78922FC76);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB17AD117813334488CF4057081F2A11E84A72B95);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3540DC5F4E7161FB5ACC0E521B524D09EFBB39D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3BEEC8B86540DA8BBF1877930CF5FDDA2E8F963);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5A115BB1CE4803865CD66B55FC8156AC0679670);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5D9D630D3F3D38953C83CBDD8DFE9F787ED2539);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB62F98976C11D79674B019EA78A7CE4D6D78B479);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7A8E72255793F3D559B82C227A7B54D89AB39C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7DE1ACA72F835F3396AD81830488D0727FF94A3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB91B6F05EA4E92AA0B68BF2F9397F4B779488A3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBEC53F210EEFBB98EF2CAE4411F7B8752E7FACC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBC0BAEBA6F8E2018F25D23B1BD64D592B35B4069);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBED8BA080781189AD5278F5FD0FDA9B4C6C100ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF2221AB16FB9687DDA842ED1CFE5633B877E6F0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF53E31F872A964047C43886D54F04889191A28A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF86C9E9E7FE0EF09A2EAE8066CDC31F859254CC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFF9CD3D2942E27EF1ABAF545D8B0E0B86603731);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC44C2F590228488B806D8213DBB719C19809D150);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC4FCD561B8C5DA432455F7E3ADBAC02546B61A38);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC6BDE6281A6DDE809EBE72900994CBF891E78F10);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7B7AF7E20FE503A74EE797E05BBC5470FF66124);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC86FCE1203EE3CAA6611690288314B0C99D501B9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB538922875B62DA11C3262AEB634351322DC418);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB67ED3E50C5654AA77B99B4554E3AFAEEE311B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB8A88570CBF36DC78148EBD758CD3F8AEA5314C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCBD3E9D3F4E9D9956F458F1B0BAECA6A02588D00);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC6FC188750EC9797EBFA0909E85EDB331E88EE7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE0F5818CCD7D6797586BC1FA0752C6E48E439B5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEB6FFBDFB48FCAF07F10A052F01C570D7215633);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0B508D8B38DC8221EF81CCB26367A9A83211BC9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD13061BFE442388F8BF8B53BE38AA80ED585E8B5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1544DEAD240C6096C5860AB974ECDD19CA2E201);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1CEBB9049B4505763F2EE8BDFDC123DF8F1DF08);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD22FB8178574254C2A9BCF06DF9F5835B11AC8D3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD40F98F04519E8B839CB845B706DE89A31373E6D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD513926BC65531B10DF4D71DB0A350013DA25BDB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6A89F463B2D89A9279731202698C58374A26D23);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7CC7E478F16C73256D19059051F024252A028A8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD884F35E59A1E1A56C51BCEE6A01D6B3DDBA9CAD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD99B048E5E2132B0C4C39A7C2BF2D6C91DE6C0F3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA1679121AAD822018502ECC16BA2D35114EF119);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDAAC8074AC3DFB6E43BF44F036CA368289069A09);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDAFE8F412E5C9A2B1CB554D39DEA0D6CD543C0E7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB5B55A9B215F744DB82517864984D073F2E8F8C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBAE7A16641727E84CF74581E4727DAC4B78897A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDC86C4C7779BA26AAC7ABC828D643C5F57E2DED0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD7461C99FE0AF610527A1F4273DBC4696AB5F17);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE28F98354F48E7C0878BBA93033C6BDC68B27E2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEF14698D1C0D2A1D64529BEAB4A86A685650609);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE14F1B14BE116CFA355535FCD1863D382601BDE0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3234876E15804436882B2C3806341594D339F4F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE35D6A21B557408AC6AD57457A73222633C0C7B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3AECE0361D3EBD6F53120D1A60E09EDF69E0C2D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE42E8BB820D4F7550A0F04619F4E15FDC56943B9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE451A00E15058124C55AB7BE480EFAEDB11B2B9C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE737077F82A6A1C9D7B4A05167CF04250F549BC4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7E8A279C6B408C8115ECB8D5D20FFD0A71025C3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8F8956EC2DD3FD7AA7C20BA5CD0ED3EE5739BED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA8E729CC5987110F10D39A9A665EE53E922C344);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB8804A531370DBDDE190078E101C64B7CB3BC7F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBE46DF54B01B606DB21F86C7C40D5E6231B0C66);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED4642B9462EF943DD5E810FB4B4B61803DB85A8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED5AFE132A97BA24E8306366DD70B9A8D78BFA48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDD0B5EECD58DD1FC50E50A6FDCB780B42076BDB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEE17B9A3774B84CC5EF248A0C6133425A90545CB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEE8F28023EC9CDDD92DEF34472DB9261ECBF59AD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF3BAED9292CF98983DB6849376890F2994BFFD8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF4B6098669A6B78CCE056EF8FB491E9E9332C1B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEFA8BED8E96B526AE693D294B1F2669AE609AB32);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF23271A51B0CAD6D72E7ADE5AD13B8927F6F770C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2564EEB56D40593CB508FC692C0A8909F572CA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF25C8369F2CB39B76E314E1965B832A8A976C9B9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF263CCD44CB2B9304F9F18DC1F6912F785B7E34C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4509A041EA8302549B9E119D97A7AB78C63BC8C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF53390C74D60B2DC19B777A65C813262B3859D6C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF8480841753DCB62E4006AD3F6DF510C0D0EFC29);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF8D8397ADB5D5049DE1EA528891B9EFEA8264944);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF9B788DCC0D65BA8F1E9F11D9E451C2E37BACE77);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFCA440D9A4F7E2D10772A726D6FB427BAE128D34);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFDE0C40B48F344565494A602561F2C8DD806E00F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE0B3298C2A71B0C504421DE1D5782EBAD7F5CD8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFEAE53A3E63FA5CCDEAD64D8BA28ACCD560BA205);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFEE32A45D8A04516F9D627B9E45532DCB07259F7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFD23053085F6DD265328D7B65A7C42E13AC3DA7);
s_Il2CppMethodInitialized = true;
}
{
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_internalRegexIgnoreCase_0 = _stringLiteralAEB44B3AF9B25AF5609DB2851CC6DBBFBD804E36;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_internalRegexIgnoreCase_0), (void*)_stringLiteralAEB44B3AF9B25AF5609DB2851CC6DBBFBD804E36);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_space_1 = _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_space_1), (void*)_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_notSpace_2 = _stringLiteralFEAE53A3E63FA5CCDEAD64D8BA28ACCD560BA205;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_notSpace_2), (void*)_stringLiteralFEAE53A3E63FA5CCDEAD64D8BA28ACCD560BA205);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_word_3 = _stringLiteral493CF4443F62774E118495D34076BBB67DA26447;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_word_3), (void*)_stringLiteral493CF4443F62774E118495D34076BBB67DA26447);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_notWord_4 = _stringLiteral23F68F010E1BEF01AE1E817AB8CB5610B3123D6C;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_notWord_4), (void*)_stringLiteral23F68F010E1BEF01AE1E817AB8CB5610B3123D6C);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___SpaceClass_5 = _stringLiteralC6BDE6281A6DDE809EBE72900994CBF891E78F10;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___SpaceClass_5), (void*)_stringLiteralC6BDE6281A6DDE809EBE72900994CBF891E78F10);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotSpaceClass_6 = _stringLiteral4EE7674C61A1A731E18D5F2496FE39B31A85571E;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotSpaceClass_6), (void*)_stringLiteral4EE7674C61A1A731E18D5F2496FE39B31A85571E);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___WordClass_7 = _stringLiteralE451A00E15058124C55AB7BE480EFAEDB11B2B9C;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___WordClass_7), (void*)_stringLiteralE451A00E15058124C55AB7BE480EFAEDB11B2B9C);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotWordClass_8 = _stringLiteralCC6FC188750EC9797EBFA0909E85EDB331E88EE7;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotWordClass_8), (void*)_stringLiteralCC6FC188750EC9797EBFA0909E85EDB331E88EE7);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___DigitClass_9 = _stringLiteral63CBAAA066EA660C960DD134AECF48535F87D341;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___DigitClass_9), (void*)_stringLiteral63CBAAA066EA660C960DD134AECF48535F87D341);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotDigitClass_10 = _stringLiteralD7CC7E478F16C73256D19059051F024252A028A8;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotDigitClass_10), (void*)_stringLiteralD7CC7E478F16C73256D19059051F024252A028A8);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_0 = (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*)il2cpp_codegen_object_new(Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
NullCheck(L_0);
Dictionary_2__ctor_m5D77EB3F62FED2B879551BFADA7FE409B56F99F2(L_0, ((int32_t)38), Dictionary_2__ctor_m5D77EB3F62FED2B879551BFADA7FE409B56F99F2_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_1 = L_0;
NullCheck(L_1);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_1, _stringLiteral8259BDC645D534B5B71BDC6C8AD2D935199FFA07, _stringLiteral1170C7BC5A746D6ACA6EDEF05E2564FF8B22FCBE, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_2 = L_1;
NullCheck(L_2);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_2, _stringLiteralDAAC8074AC3DFB6E43BF44F036CA368289069A09, _stringLiteralB62F98976C11D79674B019EA78A7CE4D6D78B479, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_3 = L_2;
NullCheck(L_3);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_3, _stringLiteral27CDC5C40A6244DAB073099C8597F6AE59E64332, _stringLiteral34D4FC077E54157726AE9B0ADDA15B8BFF84A418, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_4 = L_3;
NullCheck(L_4);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_4, _stringLiteral572C38B92C9B0B812EDF7214BF6A234D5B82A1BF, _stringLiteral92A5652D382A18E89C4881EC57041FC7D885CA80, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_5 = L_4;
NullCheck(L_5);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_5, _stringLiteral492FBC692FA08806670CCBD96D41280D1A10D87C, _stringLiteral7156D4CC436B517B16046BA39F6FA35A225096BD, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_6 = L_5;
NullCheck(L_6);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_6, _stringLiteralBF86C9E9E7FE0EF09A2EAE8066CDC31F859254CC, _stringLiteral9DD0CB5BBF8C6FB7DD693869683F1175C428DA5C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_7 = L_6;
NullCheck(L_7);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_7, _stringLiteralED5AFE132A97BA24E8306366DD70B9A8D78BFA48, _stringLiteral9B99593353A610C4BEE0D6A94A01A3296080C0FB, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_8 = L_7;
NullCheck(L_8);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_8, _stringLiteral4F6FCE005462468B85E1B17BF50DABD387E2AA0D, _stringLiteral4E22436534F7DDDA6023610945AD3FB84B08D5F2, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_9 = L_8;
NullCheck(L_9);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_9, _stringLiteral5672E54AB2E54B13506540FFFD4046D50ADD13F5, _stringLiteral6B91749ECEA9F52797D5D7575432F93DA98ED9B6, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_10 = L_9;
NullCheck(L_10);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_10, _stringLiteralE7E8A279C6B408C8115ECB8D5D20FFD0A71025C3, _stringLiteral688934845F22049CB14668832EFA33D45013B6B9, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_11 = L_10;
NullCheck(L_11);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_11, _stringLiteralF23271A51B0CAD6D72E7ADE5AD13B8927F6F770C, _stringLiteral0E356BA505631FBF715758BED27D503F8B260E3A, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_12 = L_11;
NullCheck(L_12);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_12, _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A, _stringLiteral34557A7DCB2F8DBA8DB69871993A003A8F4D2956, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_13 = L_12;
NullCheck(L_13);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_13, _stringLiteralAEB44B3AF9B25AF5609DB2851CC6DBBFBD804E36, _stringLiteral5D06023694DC591611674259693BCE83EA3DB59D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_14 = L_13;
NullCheck(L_14);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_14, _stringLiteralDC86C4C7779BA26AAC7ABC828D643C5F57E2DED0, _stringLiteralF8480841753DCB62E4006AD3F6DF510C0D0EFC29, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_15 = L_14;
NullCheck(L_15);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_15, _stringLiteral16E57333086571811A55FB94A0709583DE6ED3ED, _stringLiteral053D8D6CEEBA9453C97D0EE5374DB863E6F77AD4, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_16 = L_15;
NullCheck(L_16);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_16, _stringLiteral2A6312F3D68C885205BF84CED395D8AF4B0AE871, _stringLiteral1A95536CFA43BE767A4C275A39B7BE4808E9089C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_17 = L_16;
NullCheck(L_17);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_17, _stringLiteralDD7461C99FE0AF610527A1F4273DBC4696AB5F17, _stringLiteralCB8A88570CBF36DC78148EBD758CD3F8AEA5314C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_18 = L_17;
NullCheck(L_18);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_18, _stringLiteralA4FC45147C51541AA3B68C8DE185FC773C7F6CAD, _stringLiteral24313380B89749FA23D81C8CFE7ECADF5F282DF3, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_19 = L_18;
NullCheck(L_19);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_19, _stringLiteral10FD1944C65E314C0A29404FEA92EF36B361E76F, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_20 = L_19;
NullCheck(L_20);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_20, _stringLiteralEBE46DF54B01B606DB21F86C7C40D5E6231B0C66, _stringLiteral33283793135AFF6EA11C4E5C8BF20BFE3DCBA7D8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_21 = L_20;
NullCheck(L_21);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_21, _stringLiteralE42E8BB820D4F7550A0F04619F4E15FDC56943B9, _stringLiteralEF4B6098669A6B78CCE056EF8FB491E9E9332C1B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_22 = L_21;
NullCheck(L_22);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_22, _stringLiteral2DA4F5666B10D635F4124ED2863B7EDAE4456F97, _stringLiteral300268D606563A63B1FA078DEEDF83AFCAAAE4F0, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_23 = L_22;
NullCheck(L_23);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_23, _stringLiteralEE8F28023EC9CDDD92DEF34472DB9261ECBF59AD, _stringLiteral974BB14506DAA8EED27240396BEDF6F88D18365F, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_24 = L_23;
NullCheck(L_24);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_24, _stringLiteral78FDF6509F51FFE965CF86F9D7B2D7478FBC3CC8, _stringLiteral9DD8BCA1A64695C9743B1D5588BFE0E1402EEC02, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_25 = L_24;
NullCheck(L_25);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_25, _stringLiteral815CF156B85729CF6777A81E222C740FEE04C774, _stringLiteralCB538922875B62DA11C3262AEB634351322DC418, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_26 = L_25;
NullCheck(L_26);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_26, _stringLiteral17138F1A25103243037965AF0DACDE016F009F1F, _stringLiteralBC0BAEBA6F8E2018F25D23B1BD64D592B35B4069, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_27 = L_26;
NullCheck(L_27);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_27, _stringLiteral2BC80923BC3E932EEF70C3EADA463E4AFCEAF41C, _stringLiteralBFF9CD3D2942E27EF1ABAF545D8B0E0B86603731, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_28 = L_27;
NullCheck(L_28);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_28, _stringLiteralB17AD117813334488CF4057081F2A11E84A72B95, _stringLiteral13FE9FD2E16CB2DFD4137039CFA338E990ED2CDC, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_29 = L_28;
NullCheck(L_29);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_29, _stringLiteralFCA440D9A4F7E2D10772A726D6FB427BAE128D34, _stringLiteral647DE9597222B23A6CBF484F4ACE45204FDF469C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_30 = L_29;
NullCheck(L_30);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_30, _stringLiteral8503C1230DB9F8ED4C302C9ACA86BE76005A7AD4, _stringLiteralD13061BFE442388F8BF8B53BE38AA80ED585E8B5, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_31 = L_30;
NullCheck(L_31);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_31, _stringLiteralD1CEBB9049B4505763F2EE8BDFDC123DF8F1DF08, _stringLiteral9E866232FC6EBE054D645DFC95919F28F962D426, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_32 = L_31;
NullCheck(L_32);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_32, _stringLiteral60820866198451E7A511DDE45223B743485E091B, _stringLiteralBED8BA080781189AD5278F5FD0FDA9B4C6C100ED, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_33 = L_32;
NullCheck(L_33);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_33, _stringLiteral6400E1A9A53D55249951EBDFEFD090A6FEEA713C, _stringLiteral40C5D20526D3E1F271BCC96E4185E2B8D38D5CD6, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_34 = L_33;
NullCheck(L_34);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_34, _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10, _stringLiteral1597D592E82DA28F57E15327C1FB8CCAA68433C3, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_35 = L_34;
NullCheck(L_35);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_35, _stringLiteral0A4E2151BBA9A1D6C1D5A0AD327D1B10C9EE9832, _stringLiteralDB5B55A9B215F744DB82517864984D073F2E8F8C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_36 = L_35;
NullCheck(L_36);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_36, _stringLiteral46E1FF853298BBE44C51916BE2DE99315FDA94EE, _stringLiteralADF2661D275D11E81149306F5D08B9D5E84C7307, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_37 = L_36;
NullCheck(L_37);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_37, _stringLiteralCE0F5818CCD7D6797586BC1FA0752C6E48E439B5, _stringLiteralDE28F98354F48E7C0878BBA93033C6BDC68B27E2, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_38 = L_37;
NullCheck(L_38);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_38, _stringLiteral234D19ACC97DBDDB4C2351D9B583DDC8AD958380, _stringLiteral389A9F19C8A7AB79BBF990BB3DCB06B29F25F918, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_definedCategories_11 = L_38;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_definedCategories_11), (void*)L_38);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_39 = (StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF*)(StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF*)SZArrayNew(StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF_il2cpp_TypeInfo_var, (uint32_t)((int32_t)112));
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_40 = L_39;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_42 = L_41;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, _stringLiteral15040C7E5288B7B711A62DA4A28F41E54CDA46C6);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral15040C7E5288B7B711A62DA4A28F41E54CDA46C6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_43 = L_42;
NullCheck(L_43);
ArrayElementTypeCheck (L_43, _stringLiteral382CEA341283C799FB6CF03C7FD23F5A61EA9F7E);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral382CEA341283C799FB6CF03C7FD23F5A61EA9F7E);
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_43);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_43);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_44 = L_40;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = L_45;
NullCheck(L_46);
ArrayElementTypeCheck (L_46, _stringLiteralDEF14698D1C0D2A1D64529BEAB4A86A685650609);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDEF14698D1C0D2A1D64529BEAB4A86A685650609);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_47 = L_46;
NullCheck(L_47);
ArrayElementTypeCheck (L_47, _stringLiteralA1927043DBE274F716E7BB98AC63A1A852D80205);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA1927043DBE274F716E7BB98AC63A1A852D80205);
NullCheck(L_44);
ArrayElementTypeCheck (L_44, L_47);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(1), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_47);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_48 = L_44;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_49 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = L_49;
NullCheck(L_50);
ArrayElementTypeCheck (L_50, _stringLiteral51B91EE138D75025CB4AD85CAE46A3613A4FE4F1);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral51B91EE138D75025CB4AD85CAE46A3613A4FE4F1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = L_50;
NullCheck(L_51);
ArrayElementTypeCheck (L_51, _stringLiteral69E08279F3AF3F2F95DAE723B001E20161FBE38C);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral69E08279F3AF3F2F95DAE723B001E20161FBE38C);
NullCheck(L_48);
ArrayElementTypeCheck (L_48, L_51);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(2), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_51);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_52 = L_48;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_53 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_53;
NullCheck(L_54);
ArrayElementTypeCheck (L_54, _stringLiteral74037E48AC20A388E61DF94BF787B61C405AB756);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral74037E48AC20A388E61DF94BF787B61C405AB756);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
NullCheck(L_55);
ArrayElementTypeCheck (L_55, _stringLiteralE3AECE0361D3EBD6F53120D1A60E09EDF69E0C2D);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralE3AECE0361D3EBD6F53120D1A60E09EDF69E0C2D);
NullCheck(L_52);
ArrayElementTypeCheck (L_52, L_55);
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(3), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_55);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_56 = L_52;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_57 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_58 = L_57;
NullCheck(L_58);
ArrayElementTypeCheck (L_58, _stringLiteralEB8804A531370DBDDE190078E101C64B7CB3BC7F);
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralEB8804A531370DBDDE190078E101C64B7CB3BC7F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_58;
NullCheck(L_59);
ArrayElementTypeCheck (L_59, _stringLiteral5D87BBECD21302E784C8C8CBE6A07BB1F9F99A6A);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5D87BBECD21302E784C8C8CBE6A07BB1F9F99A6A);
NullCheck(L_56);
ArrayElementTypeCheck (L_56, L_59);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(4), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_59);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_60 = L_56;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_61 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_62 = L_61;
NullCheck(L_62);
ArrayElementTypeCheck (L_62, _stringLiteralEE17B9A3774B84CC5EF248A0C6133425A90545CB);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralEE17B9A3774B84CC5EF248A0C6133425A90545CB);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_63 = L_62;
NullCheck(L_63);
ArrayElementTypeCheck (L_63, _stringLiteral96C094BE3157837A8972ED02015161B75EBCF5C8);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral96C094BE3157837A8972ED02015161B75EBCF5C8);
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_63);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(5), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_63);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_64 = L_60;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_65 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_66 = L_65;
NullCheck(L_66);
ArrayElementTypeCheck (L_66, _stringLiteralD22FB8178574254C2A9BCF06DF9F5835B11AC8D3);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD22FB8178574254C2A9BCF06DF9F5835B11AC8D3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_67 = L_66;
NullCheck(L_67);
ArrayElementTypeCheck (L_67, _stringLiteral67A5CD5B9B1936E3A2E1D14DF804FE6F86F90FBF);
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral67A5CD5B9B1936E3A2E1D14DF804FE6F86F90FBF);
NullCheck(L_64);
ArrayElementTypeCheck (L_64, L_67);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(6), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_67);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_68 = L_64;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_69 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_70 = L_69;
NullCheck(L_70);
ArrayElementTypeCheck (L_70, _stringLiteral0EA4B1CC43D32D001CCC7AEB31AED2F319871953);
(L_70)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral0EA4B1CC43D32D001CCC7AEB31AED2F319871953);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_71 = L_70;
NullCheck(L_71);
ArrayElementTypeCheck (L_71, _stringLiteral2A9DB411D2677142C609D070E692BAF2D45522FD);
(L_71)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2A9DB411D2677142C609D070E692BAF2D45522FD);
NullCheck(L_68);
ArrayElementTypeCheck (L_68, L_71);
(L_68)->SetAt(static_cast<il2cpp_array_size_t>(7), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_71);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_72 = L_68;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_73 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_74 = L_73;
NullCheck(L_74);
ArrayElementTypeCheck (L_74, _stringLiteral19F63BC67A386ED4A60194F8544D07544E0ED578);
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral19F63BC67A386ED4A60194F8544D07544E0ED578);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_75 = L_74;
NullCheck(L_75);
ArrayElementTypeCheck (L_75, _stringLiteral13D9C88B313302420C8CFE519F4C703FF034E7EE);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral13D9C88B313302420C8CFE519F4C703FF034E7EE);
NullCheck(L_72);
ArrayElementTypeCheck (L_72, L_75);
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(8), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_75);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_76 = L_72;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_78 = L_77;
NullCheck(L_78);
ArrayElementTypeCheck (L_78, _stringLiteral82FE3474C49C05BF5FDB35ACB3EAFF407B81BEC2);
(L_78)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral82FE3474C49C05BF5FDB35ACB3EAFF407B81BEC2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_79 = L_78;
NullCheck(L_79);
ArrayElementTypeCheck (L_79, _stringLiteral5D0500A33A5D752B7F9B7739B149EF5093EB4A4C);
(L_79)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5D0500A33A5D752B7F9B7739B149EF5093EB4A4C);
NullCheck(L_76);
ArrayElementTypeCheck (L_76, L_79);
(L_76)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_79);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_80 = L_76;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_81 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = L_81;
NullCheck(L_82);
ArrayElementTypeCheck (L_82, _stringLiteral206A50481A582043159547C0CBBBBDCC728C7AEB);
(L_82)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral206A50481A582043159547C0CBBBBDCC728C7AEB);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_83 = L_82;
NullCheck(L_83);
ArrayElementTypeCheck (L_83, _stringLiteral68C5BFBDA21C60E498829E6DC505022F5F16F460);
(L_83)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral68C5BFBDA21C60E498829E6DC505022F5F16F460);
NullCheck(L_80);
ArrayElementTypeCheck (L_80, L_83);
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_83);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_84 = L_80;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_85 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_86 = L_85;
NullCheck(L_86);
ArrayElementTypeCheck (L_86, _stringLiteral28B479468676DD63B85F4D86A55B2B645958E13F);
(L_86)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral28B479468676DD63B85F4D86A55B2B645958E13F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = L_86;
NullCheck(L_87);
ArrayElementTypeCheck (L_87, _stringLiteralD6A89F463B2D89A9279731202698C58374A26D23);
(L_87)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralD6A89F463B2D89A9279731202698C58374A26D23);
NullCheck(L_84);
ArrayElementTypeCheck (L_84, L_87);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_87);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_88 = L_84;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_89 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_90 = L_89;
NullCheck(L_90);
ArrayElementTypeCheck (L_90, _stringLiteral1C7F51C9DB9BE64870719C518062BBF577083F00);
(L_90)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1C7F51C9DB9BE64870719C518062BBF577083F00);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_91 = L_90;
NullCheck(L_91);
ArrayElementTypeCheck (L_91, _stringLiteral41DC862347F6094C3DE052ECE9EDE8691528B858);
(L_91)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral41DC862347F6094C3DE052ECE9EDE8691528B858);
NullCheck(L_88);
ArrayElementTypeCheck (L_88, L_91);
(L_88)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_91);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_92 = L_88;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_93 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_94 = L_93;
NullCheck(L_94);
ArrayElementTypeCheck (L_94, _stringLiteral1DCAF254E462C711D74E7655EF57F6ADFE0005F3);
(L_94)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1DCAF254E462C711D74E7655EF57F6ADFE0005F3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_95 = L_94;
NullCheck(L_95);
ArrayElementTypeCheck (L_95, _stringLiteralB7A8E72255793F3D559B82C227A7B54D89AB39C9);
(L_95)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralB7A8E72255793F3D559B82C227A7B54D89AB39C9);
NullCheck(L_92);
ArrayElementTypeCheck (L_92, L_95);
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_95);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_96 = L_92;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_98 = L_97;
NullCheck(L_98);
ArrayElementTypeCheck (L_98, _stringLiteralED4642B9462EF943DD5E810FB4B4B61803DB85A8);
(L_98)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralED4642B9462EF943DD5E810FB4B4B61803DB85A8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_99 = L_98;
NullCheck(L_99);
ArrayElementTypeCheck (L_99, _stringLiteral4073D00CB09BBEA83C116CD6C23565C9EA25BD79);
(L_99)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral4073D00CB09BBEA83C116CD6C23565C9EA25BD79);
NullCheck(L_96);
ArrayElementTypeCheck (L_96, L_99);
(L_96)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_99);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_100 = L_96;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_101 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_102 = L_101;
NullCheck(L_102);
ArrayElementTypeCheck (L_102, _stringLiteral114F963FF5A99D30DEF5029A17A2882AE35F3351);
(L_102)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral114F963FF5A99D30DEF5029A17A2882AE35F3351);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_103 = L_102;
NullCheck(L_103);
ArrayElementTypeCheck (L_103, _stringLiteralA46556E3586F9581468C3C15BA58F8F32AA80D97);
(L_103)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA46556E3586F9581468C3C15BA58F8F32AA80D97);
NullCheck(L_100);
ArrayElementTypeCheck (L_100, L_103);
(L_100)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_103);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_104 = L_100;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_106 = L_105;
NullCheck(L_106);
ArrayElementTypeCheck (L_106, _stringLiteralA78E6DE17205365FF846BB0AEBE6FFBC845BDDCB);
(L_106)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA78E6DE17205365FF846BB0AEBE6FFBC845BDDCB);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_107 = L_106;
NullCheck(L_107);
ArrayElementTypeCheck (L_107, _stringLiteral0140171DEC0E182AA67E7F6CFEEBAB7C8B5C0FCE);
(L_107)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0140171DEC0E182AA67E7F6CFEEBAB7C8B5C0FCE);
NullCheck(L_104);
ArrayElementTypeCheck (L_104, L_107);
(L_104)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_107);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_108 = L_104;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_109 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_110 = L_109;
NullCheck(L_110);
ArrayElementTypeCheck (L_110, _stringLiteral44B9BD7E0CF8DFB1AE4286D58C477BC0EAD8DB8A);
(L_110)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral44B9BD7E0CF8DFB1AE4286D58C477BC0EAD8DB8A);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_111 = L_110;
NullCheck(L_111);
ArrayElementTypeCheck (L_111, _stringLiteral5E2FCEA4A7480B304F0A57BA73C66905F03F82D8);
(L_111)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5E2FCEA4A7480B304F0A57BA73C66905F03F82D8);
NullCheck(L_108);
ArrayElementTypeCheck (L_108, L_111);
(L_108)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_111);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_112 = L_108;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_113 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_114 = L_113;
NullCheck(L_114);
ArrayElementTypeCheck (L_114, _stringLiteralB7DE1ACA72F835F3396AD81830488D0727FF94A3);
(L_114)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralB7DE1ACA72F835F3396AD81830488D0727FF94A3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_115 = L_114;
NullCheck(L_115);
ArrayElementTypeCheck (L_115, _stringLiteral430944DE69F10C0B23DC2BCA3D2D3116A748687C);
(L_115)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral430944DE69F10C0B23DC2BCA3D2D3116A748687C);
NullCheck(L_112);
ArrayElementTypeCheck (L_112, L_115);
(L_112)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_115);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_116 = L_112;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_117 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_118 = L_117;
NullCheck(L_118);
ArrayElementTypeCheck (L_118, _stringLiteral42B381340E99A7D1B67884D1B8FC702C25279D7E);
(L_118)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral42B381340E99A7D1B67884D1B8FC702C25279D7E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_119 = L_118;
NullCheck(L_119);
ArrayElementTypeCheck (L_119, _stringLiteralA392C242A443C3023ABF204424167CEB86A765BB);
(L_119)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA392C242A443C3023ABF204424167CEB86A765BB);
NullCheck(L_116);
ArrayElementTypeCheck (L_116, L_119);
(L_116)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_119);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_120 = L_116;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_121 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_122 = L_121;
NullCheck(L_122);
ArrayElementTypeCheck (L_122, _stringLiteralD40F98F04519E8B839CB845B706DE89A31373E6D);
(L_122)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD40F98F04519E8B839CB845B706DE89A31373E6D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_123 = L_122;
NullCheck(L_123);
ArrayElementTypeCheck (L_123, _stringLiteral33AAE7E3BDF099D0868E4C15621108A967FE4DC4);
(L_123)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral33AAE7E3BDF099D0868E4C15621108A967FE4DC4);
NullCheck(L_120);
ArrayElementTypeCheck (L_120, L_123);
(L_120)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_123);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_124 = L_120;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_125 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_126 = L_125;
NullCheck(L_126);
ArrayElementTypeCheck (L_126, _stringLiteral8C1BBD97ACA7E0F0DABD7D5A3480E8D91A8BF27E);
(L_126)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8C1BBD97ACA7E0F0DABD7D5A3480E8D91A8BF27E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_127 = L_126;
NullCheck(L_127);
ArrayElementTypeCheck (L_127, _stringLiteral000F57CC5E07B45534A096C11FC9672E840B7F68);
(L_127)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral000F57CC5E07B45534A096C11FC9672E840B7F68);
NullCheck(L_124);
ArrayElementTypeCheck (L_124, L_127);
(L_124)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_127);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_128 = L_124;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_129 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_130 = L_129;
NullCheck(L_130);
ArrayElementTypeCheck (L_130, _stringLiteral3B74C4EE573585B536403D684B3EBF642E92483B);
(L_130)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3B74C4EE573585B536403D684B3EBF642E92483B);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_131 = L_130;
NullCheck(L_131);
ArrayElementTypeCheck (L_131, _stringLiteral130E357173B69D89809090B52517E63B39F780E8);
(L_131)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral130E357173B69D89809090B52517E63B39F780E8);
NullCheck(L_128);
ArrayElementTypeCheck (L_128, L_131);
(L_128)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_131);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_132 = L_128;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_133 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_134 = L_133;
NullCheck(L_134);
ArrayElementTypeCheck (L_134, _stringLiteralDAFE8F412E5C9A2B1CB554D39DEA0D6CD543C0E7);
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDAFE8F412E5C9A2B1CB554D39DEA0D6CD543C0E7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_135 = L_134;
NullCheck(L_135);
ArrayElementTypeCheck (L_135, _stringLiteralAF8BC0EC6A1874C3FFEB5694BC36974F673E80C2);
(L_135)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralAF8BC0EC6A1874C3FFEB5694BC36974F673E80C2);
NullCheck(L_132);
ArrayElementTypeCheck (L_132, L_135);
(L_132)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_135);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_136 = L_132;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_137 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_138 = L_137;
NullCheck(L_138);
ArrayElementTypeCheck (L_138, _stringLiteral096B13703C72B9AEA7C14C090DF850AD4A3A1041);
(L_138)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral096B13703C72B9AEA7C14C090DF850AD4A3A1041);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_139 = L_138;
NullCheck(L_139);
ArrayElementTypeCheck (L_139, _stringLiteralCBD3E9D3F4E9D9956F458F1B0BAECA6A02588D00);
(L_139)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralCBD3E9D3F4E9D9956F458F1B0BAECA6A02588D00);
NullCheck(L_136);
ArrayElementTypeCheck (L_136, L_139);
(L_136)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_139);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_140 = L_136;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_141 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_142 = L_141;
NullCheck(L_142);
ArrayElementTypeCheck (L_142, _stringLiteral802D3A4E1213A50A2A168149B9FD26645A8A87A2);
(L_142)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral802D3A4E1213A50A2A168149B9FD26645A8A87A2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_143 = L_142;
NullCheck(L_143);
ArrayElementTypeCheck (L_143, _stringLiteralAF8BC0EC6A1874C3FFEB5694BC36974F673E80C2);
(L_143)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralAF8BC0EC6A1874C3FFEB5694BC36974F673E80C2);
NullCheck(L_140);
ArrayElementTypeCheck (L_140, L_143);
(L_140)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_143);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_144 = L_140;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_145 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_146 = L_145;
NullCheck(L_146);
ArrayElementTypeCheck (L_146, _stringLiteral5EA04EBADB6862D231CCC55599471F40B5853152);
(L_146)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5EA04EBADB6862D231CCC55599471F40B5853152);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_147 = L_146;
NullCheck(L_147);
ArrayElementTypeCheck (L_147, _stringLiteralBB91B6F05EA4E92AA0B68BF2F9397F4B779488A3);
(L_147)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralBB91B6F05EA4E92AA0B68BF2F9397F4B779488A3);
NullCheck(L_144);
ArrayElementTypeCheck (L_144, L_147);
(L_144)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_147);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_148 = L_144;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_149 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_150 = L_149;
NullCheck(L_150);
ArrayElementTypeCheck (L_150, _stringLiteral761474E731109EBFC61E66B2EA5CF80B189944C4);
(L_150)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral761474E731109EBFC61E66B2EA5CF80B189944C4);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_151 = L_150;
NullCheck(L_151);
ArrayElementTypeCheck (L_151, _stringLiteral4C301992B1F446471CFF312BEC98B68362ED7195);
(L_151)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral4C301992B1F446471CFF312BEC98B68362ED7195);
NullCheck(L_148);
ArrayElementTypeCheck (L_148, L_151);
(L_148)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_151);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_152 = L_148;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_153 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_154 = L_153;
NullCheck(L_154);
ArrayElementTypeCheck (L_154, _stringLiteral15CF5C2792462326B481E11AC5840FB1C9BD9753);
(L_154)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral15CF5C2792462326B481E11AC5840FB1C9BD9753);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_155 = L_154;
NullCheck(L_155);
ArrayElementTypeCheck (L_155, _stringLiteral19E0261B9934BD92A6FCAC8943D903675768820D);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral19E0261B9934BD92A6FCAC8943D903675768820D);
NullCheck(L_152);
ArrayElementTypeCheck (L_152, L_155);
(L_152)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_155);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_156 = L_152;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_157 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_158 = L_157;
NullCheck(L_158);
ArrayElementTypeCheck (L_158, _stringLiteral2BA36E0ECAE4F6481FD29426D81E78B78AFC7010);
(L_158)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2BA36E0ECAE4F6481FD29426D81E78B78AFC7010);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_159 = L_158;
NullCheck(L_159);
ArrayElementTypeCheck (L_159, _stringLiteral21A998A9E8032EA402184FF6E9E027A017C5E340);
(L_159)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral21A998A9E8032EA402184FF6E9E027A017C5E340);
NullCheck(L_156);
ArrayElementTypeCheck (L_156, L_159);
(L_156)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_159);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_160 = L_156;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_161 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_162 = L_161;
NullCheck(L_162);
ArrayElementTypeCheck (L_162, _stringLiteral98A4DE8EF9F62DFF4A8C0BECFE7D99D6D24B4F04);
(L_162)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral98A4DE8EF9F62DFF4A8C0BECFE7D99D6D24B4F04);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_163 = L_162;
NullCheck(L_163);
ArrayElementTypeCheck (L_163, _stringLiteralE8F8956EC2DD3FD7AA7C20BA5CD0ED3EE5739BED);
(L_163)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralE8F8956EC2DD3FD7AA7C20BA5CD0ED3EE5739BED);
NullCheck(L_160);
ArrayElementTypeCheck (L_160, L_163);
(L_160)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_163);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_164 = L_160;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_165 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_166 = L_165;
NullCheck(L_166);
ArrayElementTypeCheck (L_166, _stringLiteral38383EE49792CC3B3E578FC02137E10AFCD4758D);
(L_166)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral38383EE49792CC3B3E578FC02137E10AFCD4758D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_167 = L_166;
NullCheck(L_167);
ArrayElementTypeCheck (L_167, _stringLiteralEFA8BED8E96B526AE693D294B1F2669AE609AB32);
(L_167)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralEFA8BED8E96B526AE693D294B1F2669AE609AB32);
NullCheck(L_164);
ArrayElementTypeCheck (L_164, L_167);
(L_164)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_167);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_168 = L_164;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_169 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_170 = L_169;
NullCheck(L_170);
ArrayElementTypeCheck (L_170, _stringLiteral247E61BCA5CC999BD7DF819AFB4BD1625BD89B92);
(L_170)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral247E61BCA5CC999BD7DF819AFB4BD1625BD89B92);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_171 = L_170;
NullCheck(L_171);
ArrayElementTypeCheck (L_171, _stringLiteral4647EBF68BAADB1E3B9B0C77F3A69B79BF1A0C1E);
(L_171)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral4647EBF68BAADB1E3B9B0C77F3A69B79BF1A0C1E);
NullCheck(L_168);
ArrayElementTypeCheck (L_168, L_171);
(L_168)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_171);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_172 = L_168;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_173 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_174 = L_173;
NullCheck(L_174);
ArrayElementTypeCheck (L_174, _stringLiteralBF53E31F872A964047C43886D54F04889191A28A);
(L_174)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralBF53E31F872A964047C43886D54F04889191A28A);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_175 = L_174;
NullCheck(L_175);
ArrayElementTypeCheck (L_175, _stringLiteralC86FCE1203EE3CAA6611690288314B0C99D501B9);
(L_175)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralC86FCE1203EE3CAA6611690288314B0C99D501B9);
NullCheck(L_172);
ArrayElementTypeCheck (L_172, L_175);
(L_172)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_175);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_176 = L_172;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_177 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_178 = L_177;
NullCheck(L_178);
ArrayElementTypeCheck (L_178, _stringLiteral2F627E050FC96CB06809DD00B72C043AF06DD74F);
(L_178)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2F627E050FC96CB06809DD00B72C043AF06DD74F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_179 = L_178;
NullCheck(L_179);
ArrayElementTypeCheck (L_179, _stringLiteral7EADE718A2652FC00E2DC3C5311A1FC3B7EB0994);
(L_179)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7EADE718A2652FC00E2DC3C5311A1FC3B7EB0994);
NullCheck(L_176);
ArrayElementTypeCheck (L_176, L_179);
(L_176)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)34)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_179);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_180 = L_176;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_181 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_182 = L_181;
NullCheck(L_182);
ArrayElementTypeCheck (L_182, _stringLiteral4251DBF5ADF22DF838851BDEA678ED6D151EF9C1);
(L_182)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4251DBF5ADF22DF838851BDEA678ED6D151EF9C1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_183 = L_182;
NullCheck(L_183);
ArrayElementTypeCheck (L_183, _stringLiteral699E5CF5FC92D12C09117936E6A4F78CFD297C40);
(L_183)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral699E5CF5FC92D12C09117936E6A4F78CFD297C40);
NullCheck(L_180);
ArrayElementTypeCheck (L_180, L_183);
(L_180)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)35)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_183);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_184 = L_180;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_185 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_186 = L_185;
NullCheck(L_186);
ArrayElementTypeCheck (L_186, _stringLiteral4A94750FA069FF6E0CA4240635D562EC6A9A3CD9);
(L_186)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4A94750FA069FF6E0CA4240635D562EC6A9A3CD9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_187 = L_186;
NullCheck(L_187);
ArrayElementTypeCheck (L_187, _stringLiteralDA1679121AAD822018502ECC16BA2D35114EF119);
(L_187)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDA1679121AAD822018502ECC16BA2D35114EF119);
NullCheck(L_184);
ArrayElementTypeCheck (L_184, L_187);
(L_184)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)36)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_187);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_188 = L_184;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_189 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_190 = L_189;
NullCheck(L_190);
ArrayElementTypeCheck (L_190, _stringLiteral4366DE5220453B7E4119C139B5899C931A1996B1);
(L_190)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4366DE5220453B7E4119C139B5899C931A1996B1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_191 = L_190;
NullCheck(L_191);
ArrayElementTypeCheck (L_191, _stringLiteral3311705E737BEADF911B313590BF8CF65EB59CC1);
(L_191)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral3311705E737BEADF911B313590BF8CF65EB59CC1);
NullCheck(L_188);
ArrayElementTypeCheck (L_188, L_191);
(L_188)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_191);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_192 = L_188;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_193 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_194 = L_193;
NullCheck(L_194);
ArrayElementTypeCheck (L_194, _stringLiteral1617F2BEE10D5175D04111AF86F02617CABA97F8);
(L_194)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1617F2BEE10D5175D04111AF86F02617CABA97F8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_195 = L_194;
NullCheck(L_195);
ArrayElementTypeCheck (L_195, _stringLiteral34ACA0350B0D7DEE2485343251B1984C498672B7);
(L_195)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral34ACA0350B0D7DEE2485343251B1984C498672B7);
NullCheck(L_192);
ArrayElementTypeCheck (L_192, L_195);
(L_192)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_195);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_196 = L_192;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_197 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_198 = L_197;
NullCheck(L_198);
ArrayElementTypeCheck (L_198, _stringLiteral36CB796E61D012C499558795200D7D4714DA234C);
(L_198)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral36CB796E61D012C499558795200D7D4714DA234C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_199 = L_198;
NullCheck(L_199);
ArrayElementTypeCheck (L_199, _stringLiteralB3BEEC8B86540DA8BBF1877930CF5FDDA2E8F963);
(L_199)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralB3BEEC8B86540DA8BBF1877930CF5FDDA2E8F963);
NullCheck(L_196);
ArrayElementTypeCheck (L_196, L_199);
(L_196)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_199);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_200 = L_196;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_201 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_202 = L_201;
NullCheck(L_202);
ArrayElementTypeCheck (L_202, _stringLiteralFFD23053085F6DD265328D7B65A7C42E13AC3DA7);
(L_202)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralFFD23053085F6DD265328D7B65A7C42E13AC3DA7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_203 = L_202;
NullCheck(L_203);
ArrayElementTypeCheck (L_203, _stringLiteral34ACA0350B0D7DEE2485343251B1984C498672B7);
(L_203)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral34ACA0350B0D7DEE2485343251B1984C498672B7);
NullCheck(L_200);
ArrayElementTypeCheck (L_200, L_203);
(L_200)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_203);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_204 = L_200;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_205 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_206 = L_205;
NullCheck(L_206);
ArrayElementTypeCheck (L_206, _stringLiteral507838B99A8D85F0312998B7DAFF905BD48ED124);
(L_206)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral507838B99A8D85F0312998B7DAFF905BD48ED124);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_207 = L_206;
NullCheck(L_207);
ArrayElementTypeCheck (L_207, _stringLiteralCEB6FFBDFB48FCAF07F10A052F01C570D7215633);
(L_207)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralCEB6FFBDFB48FCAF07F10A052F01C570D7215633);
NullCheck(L_204);
ArrayElementTypeCheck (L_204, L_207);
(L_204)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_207);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_208 = L_204;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_209 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_210 = L_209;
NullCheck(L_210);
ArrayElementTypeCheck (L_210, _stringLiteral15511681E57C6B2F87C98682ED71B8CA850A8F9D);
(L_210)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral15511681E57C6B2F87C98682ED71B8CA850A8F9D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_211 = L_210;
NullCheck(L_211);
ArrayElementTypeCheck (L_211, _stringLiteral9F11BF96AA5B3A5F06F42DC23DCB6903ADA909CB);
(L_211)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral9F11BF96AA5B3A5F06F42DC23DCB6903ADA909CB);
NullCheck(L_208);
ArrayElementTypeCheck (L_208, L_211);
(L_208)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)42)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_211);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_212 = L_208;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_213 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_214 = L_213;
NullCheck(L_214);
ArrayElementTypeCheck (L_214, _stringLiteral656D9E0C66BEC4E7D31947D0F46CDD1F3D0780C4);
(L_214)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral656D9E0C66BEC4E7D31947D0F46CDD1F3D0780C4);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_215 = L_214;
NullCheck(L_215);
ArrayElementTypeCheck (L_215, _stringLiteral0DF7C1A0741BEED9A8C63FAA83056EC4B6BEE7A6);
(L_215)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0DF7C1A0741BEED9A8C63FAA83056EC4B6BEE7A6);
NullCheck(L_212);
ArrayElementTypeCheck (L_212, L_215);
(L_212)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)43)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_215);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_216 = L_212;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_217 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_218 = L_217;
NullCheck(L_218);
ArrayElementTypeCheck (L_218, _stringLiteral2FE2C0AAB1B3726B4599067198204955DC8B58BC);
(L_218)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2FE2C0AAB1B3726B4599067198204955DC8B58BC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_219 = L_218;
NullCheck(L_219);
ArrayElementTypeCheck (L_219, _stringLiteral8CB0CD7CE18209A25B0A83FA41BF1814407366B2);
(L_219)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral8CB0CD7CE18209A25B0A83FA41BF1814407366B2);
NullCheck(L_216);
ArrayElementTypeCheck (L_216, L_219);
(L_216)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_219);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_220 = L_216;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_221 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_222 = L_221;
NullCheck(L_222);
ArrayElementTypeCheck (L_222, _stringLiteralBF2221AB16FB9687DDA842ED1CFE5633B877E6F0);
(L_222)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralBF2221AB16FB9687DDA842ED1CFE5633B877E6F0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_223 = L_222;
NullCheck(L_223);
ArrayElementTypeCheck (L_223, _stringLiteralFDE0C40B48F344565494A602561F2C8DD806E00F);
(L_223)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralFDE0C40B48F344565494A602561F2C8DD806E00F);
NullCheck(L_220);
ArrayElementTypeCheck (L_220, L_223);
(L_220)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_223);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_224 = L_220;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_225 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_226 = L_225;
NullCheck(L_226);
ArrayElementTypeCheck (L_226, _stringLiteral905A5E6884BC6877A3AB37B1447674394A694C9D);
(L_226)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral905A5E6884BC6877A3AB37B1447674394A694C9D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_227 = L_226;
NullCheck(L_227);
ArrayElementTypeCheck (L_227, _stringLiteral25AE09788E4F4652C4499CDB887696F30D3C0A14);
(L_227)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral25AE09788E4F4652C4499CDB887696F30D3C0A14);
NullCheck(L_224);
ArrayElementTypeCheck (L_224, L_227);
(L_224)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_227);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_228 = L_224;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_229 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_230 = L_229;
NullCheck(L_230);
ArrayElementTypeCheck (L_230, _stringLiteralEDD0B5EECD58DD1FC50E50A6FDCB780B42076BDB);
(L_230)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralEDD0B5EECD58DD1FC50E50A6FDCB780B42076BDB);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_231 = L_230;
NullCheck(L_231);
ArrayElementTypeCheck (L_231, _stringLiteral923C91A55674664C20A3103F09FC6FC4F3831DEF);
(L_231)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral923C91A55674664C20A3103F09FC6FC4F3831DEF);
NullCheck(L_228);
ArrayElementTypeCheck (L_228, L_231);
(L_228)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_231);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_232 = L_228;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_233 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_234 = L_233;
NullCheck(L_234);
ArrayElementTypeCheck (L_234, _stringLiteralA0E4803448ED328FB6169A86026FEEFF36A78441);
(L_234)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA0E4803448ED328FB6169A86026FEEFF36A78441);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_235 = L_234;
NullCheck(L_235);
ArrayElementTypeCheck (L_235, _stringLiteral26B8A55537BB75F22B06B27AB210733192EB9255);
(L_235)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral26B8A55537BB75F22B06B27AB210733192EB9255);
NullCheck(L_232);
ArrayElementTypeCheck (L_232, L_235);
(L_232)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_235);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_236 = L_232;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_237 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_238 = L_237;
NullCheck(L_238);
ArrayElementTypeCheck (L_238, _stringLiteral85A82DCF7E610B3F027071C9E03590C558821E8B);
(L_238)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral85A82DCF7E610B3F027071C9E03590C558821E8B);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_239 = L_238;
NullCheck(L_239);
ArrayElementTypeCheck (L_239, _stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2);
(L_239)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2);
NullCheck(L_236);
ArrayElementTypeCheck (L_236, L_239);
(L_236)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_239);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_240 = L_236;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_241 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_242 = L_241;
NullCheck(L_242);
ArrayElementTypeCheck (L_242, _stringLiteral64CEBA4D1E05040C825F3B67FF36104CDF8C140B);
(L_242)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral64CEBA4D1E05040C825F3B67FF36104CDF8C140B);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_243 = L_242;
NullCheck(L_243);
ArrayElementTypeCheck (L_243, _stringLiteralE3234876E15804436882B2C3806341594D339F4F);
(L_243)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralE3234876E15804436882B2C3806341594D339F4F);
NullCheck(L_240);
ArrayElementTypeCheck (L_240, L_243);
(L_240)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)50)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_243);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_244 = L_240;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_245 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_246 = L_245;
NullCheck(L_246);
ArrayElementTypeCheck (L_246, _stringLiteral01AA0D36274A76E5B82E172EB39CD0A2B7C42F6F);
(L_246)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral01AA0D36274A76E5B82E172EB39CD0A2B7C42F6F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_247 = L_246;
NullCheck(L_247);
ArrayElementTypeCheck (L_247, _stringLiteral8AA46685E79CC9C6CF70A788C04B335A1EDB671A);
(L_247)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral8AA46685E79CC9C6CF70A788C04B335A1EDB671A);
NullCheck(L_244);
ArrayElementTypeCheck (L_244, L_247);
(L_244)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)51)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_247);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_248 = L_244;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_249 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_250 = L_249;
NullCheck(L_250);
ArrayElementTypeCheck (L_250, _stringLiteral3F312D3A9558BFCCCA55C437288461A61D8E1D93);
(L_250)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3F312D3A9558BFCCCA55C437288461A61D8E1D93);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_251 = L_250;
NullCheck(L_251);
ArrayElementTypeCheck (L_251, _stringLiteral417B904D495BF7B5B00D670B422777028B0F07DA);
(L_251)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral417B904D495BF7B5B00D670B422777028B0F07DA);
NullCheck(L_248);
ArrayElementTypeCheck (L_248, L_251);
(L_248)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)52)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_251);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_252 = L_248;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_253 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_254 = L_253;
NullCheck(L_254);
ArrayElementTypeCheck (L_254, _stringLiteral958F6341A9F87CE00B85F8434E98205AFF29E113);
(L_254)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral958F6341A9F87CE00B85F8434E98205AFF29E113);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_255 = L_254;
NullCheck(L_255);
ArrayElementTypeCheck (L_255, _stringLiteralE737077F82A6A1C9D7B4A05167CF04250F549BC4);
(L_255)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralE737077F82A6A1C9D7B4A05167CF04250F549BC4);
NullCheck(L_252);
ArrayElementTypeCheck (L_252, L_255);
(L_252)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)53)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_255);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_256 = L_252;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_257 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_258 = L_257;
NullCheck(L_258);
ArrayElementTypeCheck (L_258, _stringLiteralF263CCD44CB2B9304F9F18DC1F6912F785B7E34C);
(L_258)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF263CCD44CB2B9304F9F18DC1F6912F785B7E34C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_259 = L_258;
NullCheck(L_259);
ArrayElementTypeCheck (L_259, _stringLiteral1EC89EE4781577447EF59AEA1BDCB577E3152BED);
(L_259)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1EC89EE4781577447EF59AEA1BDCB577E3152BED);
NullCheck(L_256);
ArrayElementTypeCheck (L_256, L_259);
(L_256)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)54)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_259);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_260 = L_256;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_261 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_262 = L_261;
NullCheck(L_262);
ArrayElementTypeCheck (L_262, _stringLiteralE35D6A21B557408AC6AD57457A73222633C0C7B7);
(L_262)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE35D6A21B557408AC6AD57457A73222633C0C7B7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_263 = L_262;
NullCheck(L_263);
ArrayElementTypeCheck (L_263, _stringLiteralEA8E729CC5987110F10D39A9A665EE53E922C344);
(L_263)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralEA8E729CC5987110F10D39A9A665EE53E922C344);
NullCheck(L_260);
ArrayElementTypeCheck (L_260, L_263);
(L_260)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)55)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_263);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_264 = L_260;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_265 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_266 = L_265;
NullCheck(L_266);
ArrayElementTypeCheck (L_266, _stringLiteral6384916204C3C792C7ADFE16CD44673450DC60BF);
(L_266)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6384916204C3C792C7ADFE16CD44673450DC60BF);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_267 = L_266;
NullCheck(L_267);
ArrayElementTypeCheck (L_267, _stringLiteralAAB6296466565113D9AAC1E6D930A78C4D894D6A);
(L_267)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralAAB6296466565113D9AAC1E6D930A78C4D894D6A);
NullCheck(L_264);
ArrayElementTypeCheck (L_264, L_267);
(L_264)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)56)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_267);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_268 = L_264;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_269 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_270 = L_269;
NullCheck(L_270);
ArrayElementTypeCheck (L_270, _stringLiteralDBAE7A16641727E84CF74581E4727DAC4B78897A);
(L_270)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDBAE7A16641727E84CF74581E4727DAC4B78897A);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_271 = L_270;
NullCheck(L_271);
ArrayElementTypeCheck (L_271, _stringLiteral1DE5A73ADD8E12B2946578D4ECFC5F00255F2C55);
(L_271)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1DE5A73ADD8E12B2946578D4ECFC5F00255F2C55);
NullCheck(L_268);
ArrayElementTypeCheck (L_268, L_271);
(L_268)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)57)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_271);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_272 = L_268;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_273 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_274 = L_273;
NullCheck(L_274);
ArrayElementTypeCheck (L_274, _stringLiteral1E9F798EB462039BB2177A8C3030D8E9736FDC2F);
(L_274)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1E9F798EB462039BB2177A8C3030D8E9736FDC2F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_275 = L_274;
NullCheck(L_275);
ArrayElementTypeCheck (L_275, _stringLiteral48B15371F248E055C6B88CA5F7E8908A2F9528A1);
(L_275)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral48B15371F248E055C6B88CA5F7E8908A2F9528A1);
NullCheck(L_272);
ArrayElementTypeCheck (L_272, L_275);
(L_272)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)58)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_275);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_276 = L_272;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_277 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_278 = L_277;
NullCheck(L_278);
ArrayElementTypeCheck (L_278, _stringLiteral5F802F2CCDDC761DBC132CF3C338C39FE047A6C5);
(L_278)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5F802F2CCDDC761DBC132CF3C338C39FE047A6C5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_279 = L_278;
NullCheck(L_279);
ArrayElementTypeCheck (L_279, _stringLiteral128334FD6CDD6094EC6C44C09CAD6FF7669AF5E2);
(L_279)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral128334FD6CDD6094EC6C44C09CAD6FF7669AF5E2);
NullCheck(L_276);
ArrayElementTypeCheck (L_276, L_279);
(L_276)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)59)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_279);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_280 = L_276;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_281 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_282 = L_281;
NullCheck(L_282);
ArrayElementTypeCheck (L_282, _stringLiteral9FEB4C9AB9914D2D0C51EA57D72B50A208A74A7C);
(L_282)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral9FEB4C9AB9914D2D0C51EA57D72B50A208A74A7C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_283 = L_282;
NullCheck(L_283);
ArrayElementTypeCheck (L_283, _stringLiteral9646358C9E75E51D9842A7C6E688647074D38F76);
(L_283)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral9646358C9E75E51D9842A7C6E688647074D38F76);
NullCheck(L_280);
ArrayElementTypeCheck (L_280, L_283);
(L_280)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)60)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_283);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_284 = L_280;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_285 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_286 = L_285;
NullCheck(L_286);
ArrayElementTypeCheck (L_286, _stringLiteral5059FE07AF01D26644CD156256DE05A498559F40);
(L_286)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5059FE07AF01D26644CD156256DE05A498559F40);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_287 = L_286;
NullCheck(L_287);
ArrayElementTypeCheck (L_287, _stringLiteral732A3DD582071D41FA00671D01893D635D8037D1);
(L_287)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral732A3DD582071D41FA00671D01893D635D8037D1);
NullCheck(L_284);
ArrayElementTypeCheck (L_284, L_287);
(L_284)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)61)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_287);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_288 = L_284;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_289 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_290 = L_289;
NullCheck(L_290);
ArrayElementTypeCheck (L_290, _stringLiteral2FA567A6E7C4AF82CD3E48D19E671A027AA8C39F);
(L_290)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2FA567A6E7C4AF82CD3E48D19E671A027AA8C39F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_291 = L_290;
NullCheck(L_291);
ArrayElementTypeCheck (L_291, _stringLiteral1957A3E746ABE2F553BFCCE9CB0D765AF0E28F1F);
(L_291)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1957A3E746ABE2F553BFCCE9CB0D765AF0E28F1F);
NullCheck(L_288);
ArrayElementTypeCheck (L_288, L_291);
(L_288)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)62)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_291);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_292 = L_288;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_293 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_294 = L_293;
NullCheck(L_294);
ArrayElementTypeCheck (L_294, _stringLiteral6B1E5651A6A221CCC8E859CCB7CCB4C9377DAD2D);
(L_294)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6B1E5651A6A221CCC8E859CCB7CCB4C9377DAD2D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_295 = L_294;
NullCheck(L_295);
ArrayElementTypeCheck (L_295, _stringLiteral0DB5D60B71A46B7795916FE26C1C4DBC53DE160A);
(L_295)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0DB5D60B71A46B7795916FE26C1C4DBC53DE160A);
NullCheck(L_292);
ArrayElementTypeCheck (L_292, L_295);
(L_292)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)63)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_295);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_296 = L_292;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_297 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_298 = L_297;
NullCheck(L_298);
ArrayElementTypeCheck (L_298, _stringLiteral26F6EDFC76E72DC536C20E57742C3028CF19D0E4);
(L_298)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral26F6EDFC76E72DC536C20E57742C3028CF19D0E4);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_299 = L_298;
NullCheck(L_299);
ArrayElementTypeCheck (L_299, _stringLiteralF9B788DCC0D65BA8F1E9F11D9E451C2E37BACE77);
(L_299)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralF9B788DCC0D65BA8F1E9F11D9E451C2E37BACE77);
NullCheck(L_296);
ArrayElementTypeCheck (L_296, L_299);
(L_296)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)64)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_299);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_300 = L_296;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_301 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_302 = L_301;
NullCheck(L_302);
ArrayElementTypeCheck (L_302, _stringLiteralFEE32A45D8A04516F9D627B9E45532DCB07259F7);
(L_302)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralFEE32A45D8A04516F9D627B9E45532DCB07259F7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_303 = L_302;
NullCheck(L_303);
ArrayElementTypeCheck (L_303, _stringLiteral8FC9007895DB64A6B839275F76D1C08A3877082E);
(L_303)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral8FC9007895DB64A6B839275F76D1C08A3877082E);
NullCheck(L_300);
ArrayElementTypeCheck (L_300, L_303);
(L_300)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)65)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_303);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_304 = L_300;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_305 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_306 = L_305;
NullCheck(L_306);
ArrayElementTypeCheck (L_306, _stringLiteralB5D9D630D3F3D38953C83CBDD8DFE9F787ED2539);
(L_306)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralB5D9D630D3F3D38953C83CBDD8DFE9F787ED2539);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_307 = L_306;
NullCheck(L_307);
ArrayElementTypeCheck (L_307, _stringLiteral69E73A35FA56B5A7C368371EE1AA96E00AA5E7F6);
(L_307)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral69E73A35FA56B5A7C368371EE1AA96E00AA5E7F6);
NullCheck(L_304);
ArrayElementTypeCheck (L_304, L_307);
(L_304)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)66)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_307);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_308 = L_304;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_309 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_310 = L_309;
NullCheck(L_310);
ArrayElementTypeCheck (L_310, _stringLiteralB3540DC5F4E7161FB5ACC0E521B524D09EFBB39D);
(L_310)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralB3540DC5F4E7161FB5ACC0E521B524D09EFBB39D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_311 = L_310;
NullCheck(L_311);
ArrayElementTypeCheck (L_311, _stringLiteralA17E97D5B68A896AB2F537CA1EE9FD4C545D7923);
(L_311)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA17E97D5B68A896AB2F537CA1EE9FD4C545D7923);
NullCheck(L_308);
ArrayElementTypeCheck (L_308, L_311);
(L_308)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)67)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_311);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_312 = L_308;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_313 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_314 = L_313;
NullCheck(L_314);
ArrayElementTypeCheck (L_314, _stringLiteral88CC141217D41B201641CF8FBC99ABE39D231BED);
(L_314)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral88CC141217D41B201641CF8FBC99ABE39D231BED);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_315 = L_314;
NullCheck(L_315);
ArrayElementTypeCheck (L_315, _stringLiteral3E8C94A3E14E14AA02CE50BE5898BFE459EFF966);
(L_315)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral3E8C94A3E14E14AA02CE50BE5898BFE459EFF966);
NullCheck(L_312);
ArrayElementTypeCheck (L_312, L_315);
(L_312)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)68)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_315);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_316 = L_312;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_317 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_318 = L_317;
NullCheck(L_318);
ArrayElementTypeCheck (L_318, _stringLiteral2A7EF3D582665CA41115B9D210D25F834B8A136E);
(L_318)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2A7EF3D582665CA41115B9D210D25F834B8A136E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_319 = L_318;
NullCheck(L_319);
ArrayElementTypeCheck (L_319, _stringLiteral58ECA1815AE37FF755F51324305C6B20EEB5CA43);
(L_319)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral58ECA1815AE37FF755F51324305C6B20EEB5CA43);
NullCheck(L_316);
ArrayElementTypeCheck (L_316, L_319);
(L_316)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)69)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_319);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_320 = L_316;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_321 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_322 = L_321;
NullCheck(L_322);
ArrayElementTypeCheck (L_322, _stringLiteralD513926BC65531B10DF4D71DB0A350013DA25BDB);
(L_322)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD513926BC65531B10DF4D71DB0A350013DA25BDB);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_323 = L_322;
NullCheck(L_323);
ArrayElementTypeCheck (L_323, _stringLiteral89E1EA169C60546C4BD1EF37579FE39231438D24);
(L_323)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral89E1EA169C60546C4BD1EF37579FE39231438D24);
NullCheck(L_320);
ArrayElementTypeCheck (L_320, L_323);
(L_320)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)70)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_323);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_324 = L_320;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_325 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_326 = L_325;
NullCheck(L_326);
ArrayElementTypeCheck (L_326, _stringLiteral86AAD9106A4B33A52D356C887F9FCCD9575A84FD);
(L_326)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral86AAD9106A4B33A52D356C887F9FCCD9575A84FD);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_327 = L_326;
NullCheck(L_327);
ArrayElementTypeCheck (L_327, _stringLiteral536FBABA39FCBBBEAC12562490EE276814293C4E);
(L_327)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral536FBABA39FCBBBEAC12562490EE276814293C4E);
NullCheck(L_324);
ArrayElementTypeCheck (L_324, L_327);
(L_324)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)71)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_327);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_328 = L_324;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_329 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_330 = L_329;
NullCheck(L_330);
ArrayElementTypeCheck (L_330, _stringLiteral11E7A22EB71C40109AE6CB22789A72565B8017FC);
(L_330)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral11E7A22EB71C40109AE6CB22789A72565B8017FC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_331 = L_330;
NullCheck(L_331);
ArrayElementTypeCheck (L_331, _stringLiteralAA47367E18DA97EF3E14E15715D8040CD17C608E);
(L_331)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralAA47367E18DA97EF3E14E15715D8040CD17C608E);
NullCheck(L_328);
ArrayElementTypeCheck (L_328, L_331);
(L_328)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)72)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_331);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_332 = L_328;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_333 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_334 = L_333;
NullCheck(L_334);
ArrayElementTypeCheck (L_334, _stringLiteral37B18B4FDEC37ECA95A5E9D9C8B31C5C413A09A6);
(L_334)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral37B18B4FDEC37ECA95A5E9D9C8B31C5C413A09A6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_335 = L_334;
NullCheck(L_335);
ArrayElementTypeCheck (L_335, _stringLiteral9ACABBE7C959ED3E3557E5F849A9541171B808CB);
(L_335)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral9ACABBE7C959ED3E3557E5F849A9541171B808CB);
NullCheck(L_332);
ArrayElementTypeCheck (L_332, L_335);
(L_332)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)73)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_335);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_336 = L_332;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_337 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_338 = L_337;
NullCheck(L_338);
ArrayElementTypeCheck (L_338, _stringLiteral49FDD37399D8F47722B2A2D5F3272B1F0A84C50A);
(L_338)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral49FDD37399D8F47722B2A2D5F3272B1F0A84C50A);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_339 = L_338;
NullCheck(L_339);
ArrayElementTypeCheck (L_339, _stringLiteral8B196021BB84888FED22FF4F69DE2891530E658E);
(L_339)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral8B196021BB84888FED22FF4F69DE2891530E658E);
NullCheck(L_336);
ArrayElementTypeCheck (L_336, L_339);
(L_336)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)74)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_339);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_340 = L_336;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_341 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_342 = L_341;
NullCheck(L_342);
ArrayElementTypeCheck (L_342, _stringLiteral3C2555089D217F13B7AA63E80C445CC9BB96E4F8);
(L_342)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3C2555089D217F13B7AA63E80C445CC9BB96E4F8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_343 = L_342;
NullCheck(L_343);
ArrayElementTypeCheck (L_343, _stringLiteralCB67ED3E50C5654AA77B99B4554E3AFAEEE311B7);
(L_343)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralCB67ED3E50C5654AA77B99B4554E3AFAEEE311B7);
NullCheck(L_340);
ArrayElementTypeCheck (L_340, L_343);
(L_340)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)75)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_343);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_344 = L_340;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_345 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_346 = L_345;
NullCheck(L_346);
ArrayElementTypeCheck (L_346, _stringLiteralD884F35E59A1E1A56C51BCEE6A01D6B3DDBA9CAD);
(L_346)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD884F35E59A1E1A56C51BCEE6A01D6B3DDBA9CAD);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_347 = L_346;
NullCheck(L_347);
ArrayElementTypeCheck (L_347, _stringLiteralF8D8397ADB5D5049DE1EA528891B9EFEA8264944);
(L_347)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralF8D8397ADB5D5049DE1EA528891B9EFEA8264944);
NullCheck(L_344);
ArrayElementTypeCheck (L_344, L_347);
(L_344)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)76)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_347);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_348 = L_344;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_349 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_350 = L_349;
NullCheck(L_350);
ArrayElementTypeCheck (L_350, _stringLiteral79872D0EDAA11B89BD19D3E51D0881503A87EDA1);
(L_350)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral79872D0EDAA11B89BD19D3E51D0881503A87EDA1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_351 = L_350;
NullCheck(L_351);
ArrayElementTypeCheck (L_351, _stringLiteral697C469609DEBC892F8465E2D7EFBE41919EE6C4);
(L_351)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral697C469609DEBC892F8465E2D7EFBE41919EE6C4);
NullCheck(L_348);
ArrayElementTypeCheck (L_348, L_351);
(L_348)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)77)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_351);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_352 = L_348;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_353 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_354 = L_353;
NullCheck(L_354);
ArrayElementTypeCheck (L_354, _stringLiteralA329D18BF9C9A4F354B5EC57F9B7D834C6032C03);
(L_354)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA329D18BF9C9A4F354B5EC57F9B7D834C6032C03);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_355 = L_354;
NullCheck(L_355);
ArrayElementTypeCheck (L_355, _stringLiteralB5A115BB1CE4803865CD66B55FC8156AC0679670);
(L_355)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralB5A115BB1CE4803865CD66B55FC8156AC0679670);
NullCheck(L_352);
ArrayElementTypeCheck (L_352, L_355);
(L_352)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)78)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_355);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_356 = L_352;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_357 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_358 = L_357;
NullCheck(L_358);
ArrayElementTypeCheck (L_358, _stringLiteralD0B508D8B38DC8221EF81CCB26367A9A83211BC9);
(L_358)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD0B508D8B38DC8221EF81CCB26367A9A83211BC9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_359 = L_358;
NullCheck(L_359);
ArrayElementTypeCheck (L_359, _stringLiteral0F622D75F0434A833C1A20335861864CB07278C7);
(L_359)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0F622D75F0434A833C1A20335861864CB07278C7);
NullCheck(L_356);
ArrayElementTypeCheck (L_356, L_359);
(L_356)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)79)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_359);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_360 = L_356;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_361 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_362 = L_361;
NullCheck(L_362);
ArrayElementTypeCheck (L_362, _stringLiteral6BBBCAD0FED20F4E716FA5226DA069AD1A531464);
(L_362)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BBBCAD0FED20F4E716FA5226DA069AD1A531464);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_363 = L_362;
NullCheck(L_363);
ArrayElementTypeCheck (L_363, _stringLiteral20CB4BC9AD027C4DBCABC34553F9EDA5EF3DA0A5);
(L_363)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral20CB4BC9AD027C4DBCABC34553F9EDA5EF3DA0A5);
NullCheck(L_360);
ArrayElementTypeCheck (L_360, L_363);
(L_360)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)80)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_363);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_364 = L_360;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_365 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_366 = L_365;
NullCheck(L_366);
ArrayElementTypeCheck (L_366, _stringLiteral5573AC6AB93A9166E7A15D98F63033348624AB14);
(L_366)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5573AC6AB93A9166E7A15D98F63033348624AB14);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_367 = L_366;
NullCheck(L_367);
ArrayElementTypeCheck (L_367, _stringLiteral2B9C80C1D9D6D29DCFBF1AF4BBC3F8B76CA52758);
(L_367)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2B9C80C1D9D6D29DCFBF1AF4BBC3F8B76CA52758);
NullCheck(L_364);
ArrayElementTypeCheck (L_364, L_367);
(L_364)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)81)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_367);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_368 = L_364;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_369 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_370 = L_369;
NullCheck(L_370);
ArrayElementTypeCheck (L_370, _stringLiteralA922C7ADD6A014291A7FFA692FA08A7256871463);
(L_370)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA922C7ADD6A014291A7FFA692FA08A7256871463);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_371 = L_370;
NullCheck(L_371);
ArrayElementTypeCheck (L_371, _stringLiteralFE0B3298C2A71B0C504421DE1D5782EBAD7F5CD8);
(L_371)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralFE0B3298C2A71B0C504421DE1D5782EBAD7F5CD8);
NullCheck(L_368);
ArrayElementTypeCheck (L_368, L_371);
(L_368)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)82)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_371);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_372 = L_368;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_373 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_374 = L_373;
NullCheck(L_374);
ArrayElementTypeCheck (L_374, _stringLiteralC4FCD561B8C5DA432455F7E3ADBAC02546B61A38);
(L_374)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralC4FCD561B8C5DA432455F7E3ADBAC02546B61A38);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_375 = L_374;
NullCheck(L_375);
ArrayElementTypeCheck (L_375, _stringLiteral07C1C7BA92E50F21FFD892D17457CF1A69BB791D);
(L_375)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral07C1C7BA92E50F21FFD892D17457CF1A69BB791D);
NullCheck(L_372);
ArrayElementTypeCheck (L_372, L_375);
(L_372)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)83)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_375);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_376 = L_372;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_377 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_378 = L_377;
NullCheck(L_378);
ArrayElementTypeCheck (L_378, _stringLiteralF2564EEB56D40593CB508FC692C0A8909F572CA6);
(L_378)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF2564EEB56D40593CB508FC692C0A8909F572CA6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_379 = L_378;
NullCheck(L_379);
ArrayElementTypeCheck (L_379, _stringLiteral07C1C7BA92E50F21FFD892D17457CF1A69BB791D);
(L_379)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral07C1C7BA92E50F21FFD892D17457CF1A69BB791D);
NullCheck(L_376);
ArrayElementTypeCheck (L_376, L_379);
(L_376)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)84)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_379);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_380 = L_376;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_381 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_382 = L_381;
NullCheck(L_382);
ArrayElementTypeCheck (L_382, _stringLiteral9FC89E4E581ACD10FED351BAADA0107858CD0772);
(L_382)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral9FC89E4E581ACD10FED351BAADA0107858CD0772);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_383 = L_382;
NullCheck(L_383);
ArrayElementTypeCheck (L_383, _stringLiteral3E0F8D65BB2C91CC1B08E6BF17D4F04D124FB22D);
(L_383)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral3E0F8D65BB2C91CC1B08E6BF17D4F04D124FB22D);
NullCheck(L_380);
ArrayElementTypeCheck (L_380, L_383);
(L_380)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)85)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_383);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_384 = L_380;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_385 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_386 = L_385;
NullCheck(L_386);
ArrayElementTypeCheck (L_386, _stringLiteral8175D6867E215079046783AF13663AA07AF75633);
(L_386)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8175D6867E215079046783AF13663AA07AF75633);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_387 = L_386;
NullCheck(L_387);
ArrayElementTypeCheck (L_387, _stringLiteral3FF3E7DECFB9C95D2D63B46FEE99497F03EA7B17);
(L_387)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral3FF3E7DECFB9C95D2D63B46FEE99497F03EA7B17);
NullCheck(L_384);
ArrayElementTypeCheck (L_384, L_387);
(L_384)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)86)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_387);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_388 = L_384;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_389 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_390 = L_389;
NullCheck(L_390);
ArrayElementTypeCheck (L_390, _stringLiteralD99B048E5E2132B0C4C39A7C2BF2D6C91DE6C0F3);
(L_390)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD99B048E5E2132B0C4C39A7C2BF2D6C91DE6C0F3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_391 = L_390;
NullCheck(L_391);
ArrayElementTypeCheck (L_391, _stringLiteral2E36B6524DCDA0E1F8E3C5E4DE0EDEE1CE1D593E);
(L_391)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2E36B6524DCDA0E1F8E3C5E4DE0EDEE1CE1D593E);
NullCheck(L_388);
ArrayElementTypeCheck (L_388, L_391);
(L_388)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)87)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_391);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_392 = L_388;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_393 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_394 = L_393;
NullCheck(L_394);
ArrayElementTypeCheck (L_394, _stringLiteral35896C163A11D689243E387537FCD8A2318B554F);
(L_394)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral35896C163A11D689243E387537FCD8A2318B554F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_395 = L_394;
NullCheck(L_395);
ArrayElementTypeCheck (L_395, _stringLiteral2F15DCEA75308906FE22DC8E2CB71A007135A75B);
(L_395)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2F15DCEA75308906FE22DC8E2CB71A007135A75B);
NullCheck(L_392);
ArrayElementTypeCheck (L_392, L_395);
(L_392)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)88)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_395);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_396 = L_392;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_397 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_398 = L_397;
NullCheck(L_398);
ArrayElementTypeCheck (L_398, _stringLiteral011DF8383E0C2BB51ACA74815C24731CD9E6CE0F);
(L_398)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral011DF8383E0C2BB51ACA74815C24731CD9E6CE0F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_399 = L_398;
NullCheck(L_399);
ArrayElementTypeCheck (L_399, _stringLiteral8524162C1D54A81B8F41E8ABC73B7F338BCBF999);
(L_399)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral8524162C1D54A81B8F41E8ABC73B7F338BCBF999);
NullCheck(L_396);
ArrayElementTypeCheck (L_396, L_399);
(L_396)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)89)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_399);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_400 = L_396;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_401 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_402 = L_401;
NullCheck(L_402);
ArrayElementTypeCheck (L_402, _stringLiteral74AE75B992F1B9D977C2A9EB14D1887671443FD9);
(L_402)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral74AE75B992F1B9D977C2A9EB14D1887671443FD9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_403 = L_402;
NullCheck(L_403);
ArrayElementTypeCheck (L_403, _stringLiteralD1544DEAD240C6096C5860AB974ECDD19CA2E201);
(L_403)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralD1544DEAD240C6096C5860AB974ECDD19CA2E201);
NullCheck(L_400);
ArrayElementTypeCheck (L_400, L_403);
(L_400)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)90)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_403);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_404 = L_400;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_405 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_406 = L_405;
NullCheck(L_406);
ArrayElementTypeCheck (L_406, _stringLiteralBBEC53F210EEFBB98EF2CAE4411F7B8752E7FACC);
(L_406)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralBBEC53F210EEFBB98EF2CAE4411F7B8752E7FACC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_407 = L_406;
NullCheck(L_407);
ArrayElementTypeCheck (L_407, _stringLiteral90CE8CBDC840E407D5B2A4C6CF6E6A4F4794897F);
(L_407)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral90CE8CBDC840E407D5B2A4C6CF6E6A4F4794897F);
NullCheck(L_404);
ArrayElementTypeCheck (L_404, L_407);
(L_404)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)91)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_407);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_408 = L_404;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_409 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_410 = L_409;
NullCheck(L_410);
ArrayElementTypeCheck (L_410, _stringLiteral84D767750F508A5D8214DC4EF507F64102853819);
(L_410)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral84D767750F508A5D8214DC4EF507F64102853819);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_411 = L_410;
NullCheck(L_411);
ArrayElementTypeCheck (L_411, _stringLiteralEF3BAED9292CF98983DB6849376890F2994BFFD8);
(L_411)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralEF3BAED9292CF98983DB6849376890F2994BFFD8);
NullCheck(L_408);
ArrayElementTypeCheck (L_408, L_411);
(L_408)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)92)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_411);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_412 = L_408;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_413 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_414 = L_413;
NullCheck(L_414);
ArrayElementTypeCheck (L_414, _stringLiteral070D6014844E6DF132D41B316BE8094A83EA1438);
(L_414)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral070D6014844E6DF132D41B316BE8094A83EA1438);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_415 = L_414;
NullCheck(L_415);
ArrayElementTypeCheck (L_415, _stringLiteral585541DFE94914F2247B4370A9C9041BA8A8817A);
(L_415)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral585541DFE94914F2247B4370A9C9041BA8A8817A);
NullCheck(L_412);
ArrayElementTypeCheck (L_412, L_415);
(L_412)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)93)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_415);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_416 = L_412;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_417 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_418 = L_417;
NullCheck(L_418);
ArrayElementTypeCheck (L_418, _stringLiteral291D5871DD89F1D30A07082FF0F885DB96ED978E);
(L_418)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral291D5871DD89F1D30A07082FF0F885DB96ED978E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_419 = L_418;
NullCheck(L_419);
ArrayElementTypeCheck (L_419, _stringLiteral340B59088D1E7ED96B802B2F82F9F37B545A0D7D);
(L_419)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral340B59088D1E7ED96B802B2F82F9F37B545A0D7D);
NullCheck(L_416);
ArrayElementTypeCheck (L_416, L_419);
(L_416)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)94)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_419);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_420 = L_416;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_421 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_422 = L_421;
NullCheck(L_422);
ArrayElementTypeCheck (L_422, _stringLiteral7B5E86CF8187B91807877AF0725E3F9554E40645);
(L_422)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral7B5E86CF8187B91807877AF0725E3F9554E40645);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_423 = L_422;
NullCheck(L_423);
ArrayElementTypeCheck (L_423, _stringLiteralF53390C74D60B2DC19B777A65C813262B3859D6C);
(L_423)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralF53390C74D60B2DC19B777A65C813262B3859D6C);
NullCheck(L_420);
ArrayElementTypeCheck (L_420, L_423);
(L_420)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)95)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_423);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_424 = L_420;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_425 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_426 = L_425;
NullCheck(L_426);
ArrayElementTypeCheck (L_426, _stringLiteral70A458D9D35DAA83073018B72782A5859364AEC2);
(L_426)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral70A458D9D35DAA83073018B72782A5859364AEC2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_427 = L_426;
NullCheck(L_427);
ArrayElementTypeCheck (L_427, _stringLiteral6437668AAFF3C7A470F151AD7B4EE6B5D8AF0CDD);
(L_427)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral6437668AAFF3C7A470F151AD7B4EE6B5D8AF0CDD);
NullCheck(L_424);
ArrayElementTypeCheck (L_424, L_427);
(L_424)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)96)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_427);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_428 = L_424;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_429 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_430 = L_429;
NullCheck(L_430);
ArrayElementTypeCheck (L_430, _stringLiteral2086C9392E067629621EF48286148B3F05A73E71);
(L_430)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2086C9392E067629621EF48286148B3F05A73E71);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_431 = L_430;
NullCheck(L_431);
ArrayElementTypeCheck (L_431, _stringLiteral1AB68A0E52A32EE36A9AE0A3D6EFEB01F0F7FADA);
(L_431)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1AB68A0E52A32EE36A9AE0A3D6EFEB01F0F7FADA);
NullCheck(L_428);
ArrayElementTypeCheck (L_428, L_431);
(L_428)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)97)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_431);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_432 = L_428;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_433 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_434 = L_433;
NullCheck(L_434);
ArrayElementTypeCheck (L_434, _stringLiteral101267D78B17257986305184E104E56DAAB7F530);
(L_434)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral101267D78B17257986305184E104E56DAAB7F530);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_435 = L_434;
NullCheck(L_435);
ArrayElementTypeCheck (L_435, _stringLiteral08DD4EB050E73CCA4453097A7DBA79D40E0E3979);
(L_435)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral08DD4EB050E73CCA4453097A7DBA79D40E0E3979);
NullCheck(L_432);
ArrayElementTypeCheck (L_432, L_435);
(L_432)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)98)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_435);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_436 = L_432;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_437 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_438 = L_437;
NullCheck(L_438);
ArrayElementTypeCheck (L_438, _stringLiteralC44C2F590228488B806D8213DBB719C19809D150);
(L_438)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralC44C2F590228488B806D8213DBB719C19809D150);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_439 = L_438;
NullCheck(L_439);
ArrayElementTypeCheck (L_439, _stringLiteral44164D1EBC6AEE4BF7519590E8E1EC986D7AE6AB);
(L_439)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral44164D1EBC6AEE4BF7519590E8E1EC986D7AE6AB);
NullCheck(L_436);
ArrayElementTypeCheck (L_436, L_439);
(L_436)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)99)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_439);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_440 = L_436;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_441 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_442 = L_441;
NullCheck(L_442);
ArrayElementTypeCheck (L_442, _stringLiteral8280C6CBF3DFC21B10377BE693A06682AF6F0152);
(L_442)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8280C6CBF3DFC21B10377BE693A06682AF6F0152);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_443 = L_442;
NullCheck(L_443);
ArrayElementTypeCheck (L_443, _stringLiteralAE073D669EEEC0D4EBD6B8BA56FC2EB068FC8CC5);
(L_443)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralAE073D669EEEC0D4EBD6B8BA56FC2EB068FC8CC5);
NullCheck(L_440);
ArrayElementTypeCheck (L_440, L_443);
(L_440)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)100)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_443);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_444 = L_440;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_445 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_446 = L_445;
NullCheck(L_446);
ArrayElementTypeCheck (L_446, _stringLiteral078B26963F0AABA0E769F9FE2FD2A435F23963D3);
(L_446)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral078B26963F0AABA0E769F9FE2FD2A435F23963D3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_447 = L_446;
NullCheck(L_447);
ArrayElementTypeCheck (L_447, _stringLiteral2532DF950B4388A092C5014E3ED2E06043E01B06);
(L_447)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2532DF950B4388A092C5014E3ED2E06043E01B06);
NullCheck(L_444);
ArrayElementTypeCheck (L_444, L_447);
(L_444)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)101)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_447);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_448 = L_444;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_449 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_450 = L_449;
NullCheck(L_450);
ArrayElementTypeCheck (L_450, _stringLiteralA25635816BE6BF5F9885D4A2338FD40C8B7DC8F9);
(L_450)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA25635816BE6BF5F9885D4A2338FD40C8B7DC8F9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_451 = L_450;
NullCheck(L_451);
ArrayElementTypeCheck (L_451, _stringLiteralA13DE744B01F63C5DE74C2AEADCEEB872A243DC4);
(L_451)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA13DE744B01F63C5DE74C2AEADCEEB872A243DC4);
NullCheck(L_448);
ArrayElementTypeCheck (L_448, L_451);
(L_448)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)102)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_451);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_452 = L_448;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_453 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_454 = L_453;
NullCheck(L_454);
ArrayElementTypeCheck (L_454, _stringLiteralA81B3CACE590267ABAC8F88DC90A961A186D07CF);
(L_454)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA81B3CACE590267ABAC8F88DC90A961A186D07CF);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_455 = L_454;
NullCheck(L_455);
ArrayElementTypeCheck (L_455, _stringLiteral9782BAAC1929C850665C4846404B90AE23B25CD5);
(L_455)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral9782BAAC1929C850665C4846404B90AE23B25CD5);
NullCheck(L_452);
ArrayElementTypeCheck (L_452, L_455);
(L_452)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)103)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_455);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_456 = L_452;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_457 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_458 = L_457;
NullCheck(L_458);
ArrayElementTypeCheck (L_458, _stringLiteral43248ADAE46B03C6973C36912CF5A1F9388DA3CA);
(L_458)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral43248ADAE46B03C6973C36912CF5A1F9388DA3CA);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_459 = L_458;
NullCheck(L_459);
ArrayElementTypeCheck (L_459, _stringLiteral04F6959FE66299139C73EEDA75304959291465E4);
(L_459)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral04F6959FE66299139C73EEDA75304959291465E4);
NullCheck(L_456);
ArrayElementTypeCheck (L_456, L_459);
(L_456)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)104)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_459);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_460 = L_456;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_461 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_462 = L_461;
NullCheck(L_462);
ArrayElementTypeCheck (L_462, _stringLiteral8D8FB160B4C212DAD2E50C479B19DFEAE167F4A3);
(L_462)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8D8FB160B4C212DAD2E50C479B19DFEAE167F4A3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_463 = L_462;
NullCheck(L_463);
ArrayElementTypeCheck (L_463, _stringLiteral1210E68C52ADBB898A6E113C26B325E97793204E);
(L_463)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1210E68C52ADBB898A6E113C26B325E97793204E);
NullCheck(L_460);
ArrayElementTypeCheck (L_460, L_463);
(L_460)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)105)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_463);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_464 = L_460;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_465 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_466 = L_465;
NullCheck(L_466);
ArrayElementTypeCheck (L_466, _stringLiteral35B8114AC69BEBAACEEF31EAE37667FA389CB075);
(L_466)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral35B8114AC69BEBAACEEF31EAE37667FA389CB075);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_467 = L_466;
NullCheck(L_467);
ArrayElementTypeCheck (L_467, _stringLiteralC7B7AF7E20FE503A74EE797E05BBC5470FF66124);
(L_467)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralC7B7AF7E20FE503A74EE797E05BBC5470FF66124);
NullCheck(L_464);
ArrayElementTypeCheck (L_464, L_467);
(L_464)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)106)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_467);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_468 = L_464;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_469 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_470 = L_469;
NullCheck(L_470);
ArrayElementTypeCheck (L_470, _stringLiteral46FE6AEAF3CC2C63CB04108AD734B8F3343F9CEC);
(L_470)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral46FE6AEAF3CC2C63CB04108AD734B8F3343F9CEC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_471 = L_470;
NullCheck(L_471);
ArrayElementTypeCheck (L_471, _stringLiteralF4509A041EA8302549B9E119D97A7AB78C63BC8C);
(L_471)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralF4509A041EA8302549B9E119D97A7AB78C63BC8C);
NullCheck(L_468);
ArrayElementTypeCheck (L_468, L_471);
(L_468)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)107)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_471);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_472 = L_468;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_473 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_474 = L_473;
NullCheck(L_474);
ArrayElementTypeCheck (L_474, _stringLiteralF25C8369F2CB39B76E314E1965B832A8A976C9B9);
(L_474)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF25C8369F2CB39B76E314E1965B832A8A976C9B9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_475 = L_474;
NullCheck(L_475);
ArrayElementTypeCheck (L_475, _stringLiteral847F72FEB0580436035F6D3588EE4923C9664F52);
(L_475)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral847F72FEB0580436035F6D3588EE4923C9664F52);
NullCheck(L_472);
ArrayElementTypeCheck (L_472, L_475);
(L_472)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)108)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_475);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_476 = L_472;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_477 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_478 = L_477;
NullCheck(L_478);
ArrayElementTypeCheck (L_478, _stringLiteralE14F1B14BE116CFA355535FCD1863D382601BDE0);
(L_478)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE14F1B14BE116CFA355535FCD1863D382601BDE0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_479 = L_478;
NullCheck(L_479);
ArrayElementTypeCheck (L_479, _stringLiteral6D6909BC795B5728D6DDEA208DA7986143605B77);
(L_479)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral6D6909BC795B5728D6DDEA208DA7986143605B77);
NullCheck(L_476);
ArrayElementTypeCheck (L_476, L_479);
(L_476)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)109)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_479);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_480 = L_476;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_481 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_482 = L_481;
NullCheck(L_482);
ArrayElementTypeCheck (L_482, _stringLiteralB10277638EC53EB7D22B3B79D907BFD78922FC76);
(L_482)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralB10277638EC53EB7D22B3B79D907BFD78922FC76);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_483 = L_482;
NullCheck(L_483);
ArrayElementTypeCheck (L_483, _stringLiteralA453C374F6792B40611F98BF51F5D93A3E737CF6);
(L_483)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA453C374F6792B40611F98BF51F5D93A3E737CF6);
NullCheck(L_480);
ArrayElementTypeCheck (L_480, L_483);
(L_480)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)110)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_483);
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* L_484 = L_480;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_485 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_486 = L_485;
NullCheck(L_486);
ArrayElementTypeCheck (L_486, _stringLiteral516E5BE6DD9745A9A8953C8F5212FB4B0BAC5414);
(L_486)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral516E5BE6DD9745A9A8953C8F5212FB4B0BAC5414);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_487 = L_486;
NullCheck(L_487);
ArrayElementTypeCheck (L_487, _stringLiteral7BB02F22CCAAAF38745BF587A5C3005D1AD136BE);
(L_487)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7BB02F22CCAAAF38745BF587A5C3005D1AD136BE);
NullCheck(L_484);
ArrayElementTypeCheck (L_484, L_487);
(L_484)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)111)), (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)L_487);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_propTable_12 = L_484;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_propTable_12), (void*)L_484);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_488 = (LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1*)(LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1*)SZArrayNew(LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1_il2cpp_TypeInfo_var, (uint32_t)((int32_t)94));
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_489 = L_488;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_490;
memset((&L_490), 0, sizeof(L_490));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_490), ((int32_t)65), ((int32_t)90), 1, ((int32_t)32), /*hidden argument*/NULL);
NullCheck(L_489);
(L_489)->SetAt(static_cast<il2cpp_array_size_t>(0), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_490);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_491 = L_489;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_492;
memset((&L_492), 0, sizeof(L_492));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_492), ((int32_t)192), ((int32_t)222), 1, ((int32_t)32), /*hidden argument*/NULL);
NullCheck(L_491);
(L_491)->SetAt(static_cast<il2cpp_array_size_t>(1), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_492);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_493 = L_491;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_494;
memset((&L_494), 0, sizeof(L_494));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_494), ((int32_t)256), ((int32_t)302), 2, 0, /*hidden argument*/NULL);
NullCheck(L_493);
(L_493)->SetAt(static_cast<il2cpp_array_size_t>(2), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_494);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_495 = L_493;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_496;
memset((&L_496), 0, sizeof(L_496));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_496), ((int32_t)304), ((int32_t)304), 0, ((int32_t)105), /*hidden argument*/NULL);
NullCheck(L_495);
(L_495)->SetAt(static_cast<il2cpp_array_size_t>(3), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_496);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_497 = L_495;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_498;
memset((&L_498), 0, sizeof(L_498));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_498), ((int32_t)306), ((int32_t)310), 2, 0, /*hidden argument*/NULL);
NullCheck(L_497);
(L_497)->SetAt(static_cast<il2cpp_array_size_t>(4), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_498);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_499 = L_497;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_500;
memset((&L_500), 0, sizeof(L_500));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_500), ((int32_t)313), ((int32_t)327), 3, 0, /*hidden argument*/NULL);
NullCheck(L_499);
(L_499)->SetAt(static_cast<il2cpp_array_size_t>(5), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_500);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_501 = L_499;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_502;
memset((&L_502), 0, sizeof(L_502));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_502), ((int32_t)330), ((int32_t)374), 2, 0, /*hidden argument*/NULL);
NullCheck(L_501);
(L_501)->SetAt(static_cast<il2cpp_array_size_t>(6), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_502);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_503 = L_501;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_504;
memset((&L_504), 0, sizeof(L_504));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_504), ((int32_t)376), ((int32_t)376), 0, ((int32_t)255), /*hidden argument*/NULL);
NullCheck(L_503);
(L_503)->SetAt(static_cast<il2cpp_array_size_t>(7), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_504);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_505 = L_503;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_506;
memset((&L_506), 0, sizeof(L_506));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_506), ((int32_t)377), ((int32_t)381), 3, 0, /*hidden argument*/NULL);
NullCheck(L_505);
(L_505)->SetAt(static_cast<il2cpp_array_size_t>(8), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_506);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_507 = L_505;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_508;
memset((&L_508), 0, sizeof(L_508));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_508), ((int32_t)385), ((int32_t)385), 0, ((int32_t)595), /*hidden argument*/NULL);
NullCheck(L_507);
(L_507)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_508);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_509 = L_507;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_510;
memset((&L_510), 0, sizeof(L_510));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_510), ((int32_t)386), ((int32_t)388), 2, 0, /*hidden argument*/NULL);
NullCheck(L_509);
(L_509)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_510);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_511 = L_509;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_512;
memset((&L_512), 0, sizeof(L_512));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_512), ((int32_t)390), ((int32_t)390), 0, ((int32_t)596), /*hidden argument*/NULL);
NullCheck(L_511);
(L_511)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_512);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_513 = L_511;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_514;
memset((&L_514), 0, sizeof(L_514));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_514), ((int32_t)391), ((int32_t)391), 0, ((int32_t)392), /*hidden argument*/NULL);
NullCheck(L_513);
(L_513)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_514);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_515 = L_513;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_516;
memset((&L_516), 0, sizeof(L_516));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_516), ((int32_t)393), ((int32_t)394), 1, ((int32_t)205), /*hidden argument*/NULL);
NullCheck(L_515);
(L_515)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_516);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_517 = L_515;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_518;
memset((&L_518), 0, sizeof(L_518));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_518), ((int32_t)395), ((int32_t)395), 0, ((int32_t)396), /*hidden argument*/NULL);
NullCheck(L_517);
(L_517)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_518);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_519 = L_517;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_520;
memset((&L_520), 0, sizeof(L_520));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_520), ((int32_t)398), ((int32_t)398), 0, ((int32_t)477), /*hidden argument*/NULL);
NullCheck(L_519);
(L_519)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_520);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_521 = L_519;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_522;
memset((&L_522), 0, sizeof(L_522));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_522), ((int32_t)399), ((int32_t)399), 0, ((int32_t)601), /*hidden argument*/NULL);
NullCheck(L_521);
(L_521)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_522);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_523 = L_521;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_524;
memset((&L_524), 0, sizeof(L_524));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_524), ((int32_t)400), ((int32_t)400), 0, ((int32_t)603), /*hidden argument*/NULL);
NullCheck(L_523);
(L_523)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_524);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_525 = L_523;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_526;
memset((&L_526), 0, sizeof(L_526));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_526), ((int32_t)401), ((int32_t)401), 0, ((int32_t)402), /*hidden argument*/NULL);
NullCheck(L_525);
(L_525)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_526);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_527 = L_525;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_528;
memset((&L_528), 0, sizeof(L_528));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_528), ((int32_t)403), ((int32_t)403), 0, ((int32_t)608), /*hidden argument*/NULL);
NullCheck(L_527);
(L_527)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_528);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_529 = L_527;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_530;
memset((&L_530), 0, sizeof(L_530));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_530), ((int32_t)404), ((int32_t)404), 0, ((int32_t)611), /*hidden argument*/NULL);
NullCheck(L_529);
(L_529)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_530);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_531 = L_529;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_532;
memset((&L_532), 0, sizeof(L_532));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_532), ((int32_t)406), ((int32_t)406), 0, ((int32_t)617), /*hidden argument*/NULL);
NullCheck(L_531);
(L_531)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_532);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_533 = L_531;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_534;
memset((&L_534), 0, sizeof(L_534));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_534), ((int32_t)407), ((int32_t)407), 0, ((int32_t)616), /*hidden argument*/NULL);
NullCheck(L_533);
(L_533)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_534);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_535 = L_533;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_536;
memset((&L_536), 0, sizeof(L_536));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_536), ((int32_t)408), ((int32_t)408), 0, ((int32_t)409), /*hidden argument*/NULL);
NullCheck(L_535);
(L_535)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_536);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_537 = L_535;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_538;
memset((&L_538), 0, sizeof(L_538));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_538), ((int32_t)412), ((int32_t)412), 0, ((int32_t)623), /*hidden argument*/NULL);
NullCheck(L_537);
(L_537)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_538);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_539 = L_537;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_540;
memset((&L_540), 0, sizeof(L_540));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_540), ((int32_t)413), ((int32_t)413), 0, ((int32_t)626), /*hidden argument*/NULL);
NullCheck(L_539);
(L_539)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_540);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_541 = L_539;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_542;
memset((&L_542), 0, sizeof(L_542));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_542), ((int32_t)415), ((int32_t)415), 0, ((int32_t)629), /*hidden argument*/NULL);
NullCheck(L_541);
(L_541)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_542);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_543 = L_541;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_544;
memset((&L_544), 0, sizeof(L_544));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_544), ((int32_t)416), ((int32_t)420), 2, 0, /*hidden argument*/NULL);
NullCheck(L_543);
(L_543)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_544);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_545 = L_543;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_546;
memset((&L_546), 0, sizeof(L_546));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_546), ((int32_t)423), ((int32_t)423), 0, ((int32_t)424), /*hidden argument*/NULL);
NullCheck(L_545);
(L_545)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_546);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_547 = L_545;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_548;
memset((&L_548), 0, sizeof(L_548));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_548), ((int32_t)425), ((int32_t)425), 0, ((int32_t)643), /*hidden argument*/NULL);
NullCheck(L_547);
(L_547)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_548);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_549 = L_547;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_550;
memset((&L_550), 0, sizeof(L_550));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_550), ((int32_t)428), ((int32_t)428), 0, ((int32_t)429), /*hidden argument*/NULL);
NullCheck(L_549);
(L_549)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_550);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_551 = L_549;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_552;
memset((&L_552), 0, sizeof(L_552));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_552), ((int32_t)430), ((int32_t)430), 0, ((int32_t)648), /*hidden argument*/NULL);
NullCheck(L_551);
(L_551)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_552);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_553 = L_551;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_554;
memset((&L_554), 0, sizeof(L_554));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_554), ((int32_t)431), ((int32_t)431), 0, ((int32_t)432), /*hidden argument*/NULL);
NullCheck(L_553);
(L_553)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_554);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_555 = L_553;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_556;
memset((&L_556), 0, sizeof(L_556));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_556), ((int32_t)433), ((int32_t)434), 1, ((int32_t)217), /*hidden argument*/NULL);
NullCheck(L_555);
(L_555)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_556);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_557 = L_555;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_558;
memset((&L_558), 0, sizeof(L_558));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_558), ((int32_t)435), ((int32_t)437), 3, 0, /*hidden argument*/NULL);
NullCheck(L_557);
(L_557)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)34)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_558);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_559 = L_557;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_560;
memset((&L_560), 0, sizeof(L_560));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_560), ((int32_t)439), ((int32_t)439), 0, ((int32_t)658), /*hidden argument*/NULL);
NullCheck(L_559);
(L_559)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)35)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_560);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_561 = L_559;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_562;
memset((&L_562), 0, sizeof(L_562));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_562), ((int32_t)440), ((int32_t)440), 0, ((int32_t)441), /*hidden argument*/NULL);
NullCheck(L_561);
(L_561)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)36)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_562);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_563 = L_561;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_564;
memset((&L_564), 0, sizeof(L_564));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_564), ((int32_t)444), ((int32_t)444), 0, ((int32_t)445), /*hidden argument*/NULL);
NullCheck(L_563);
(L_563)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_564);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_565 = L_563;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_566;
memset((&L_566), 0, sizeof(L_566));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_566), ((int32_t)452), ((int32_t)453), 0, ((int32_t)454), /*hidden argument*/NULL);
NullCheck(L_565);
(L_565)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_566);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_567 = L_565;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_568;
memset((&L_568), 0, sizeof(L_568));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_568), ((int32_t)455), ((int32_t)456), 0, ((int32_t)457), /*hidden argument*/NULL);
NullCheck(L_567);
(L_567)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_568);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_569 = L_567;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_570;
memset((&L_570), 0, sizeof(L_570));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_570), ((int32_t)458), ((int32_t)459), 0, ((int32_t)460), /*hidden argument*/NULL);
NullCheck(L_569);
(L_569)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_570);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_571 = L_569;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_572;
memset((&L_572), 0, sizeof(L_572));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_572), ((int32_t)461), ((int32_t)475), 3, 0, /*hidden argument*/NULL);
NullCheck(L_571);
(L_571)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_572);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_573 = L_571;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_574;
memset((&L_574), 0, sizeof(L_574));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_574), ((int32_t)478), ((int32_t)494), 2, 0, /*hidden argument*/NULL);
NullCheck(L_573);
(L_573)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)42)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_574);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_575 = L_573;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_576;
memset((&L_576), 0, sizeof(L_576));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_576), ((int32_t)497), ((int32_t)498), 0, ((int32_t)499), /*hidden argument*/NULL);
NullCheck(L_575);
(L_575)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)43)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_576);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_577 = L_575;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_578;
memset((&L_578), 0, sizeof(L_578));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_578), ((int32_t)500), ((int32_t)500), 0, ((int32_t)501), /*hidden argument*/NULL);
NullCheck(L_577);
(L_577)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_578);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_579 = L_577;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_580;
memset((&L_580), 0, sizeof(L_580));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_580), ((int32_t)506), ((int32_t)534), 2, 0, /*hidden argument*/NULL);
NullCheck(L_579);
(L_579)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_580);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_581 = L_579;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_582;
memset((&L_582), 0, sizeof(L_582));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_582), ((int32_t)902), ((int32_t)902), 0, ((int32_t)940), /*hidden argument*/NULL);
NullCheck(L_581);
(L_581)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_582);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_583 = L_581;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_584;
memset((&L_584), 0, sizeof(L_584));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_584), ((int32_t)904), ((int32_t)906), 1, ((int32_t)37), /*hidden argument*/NULL);
NullCheck(L_583);
(L_583)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_584);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_585 = L_583;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_586;
memset((&L_586), 0, sizeof(L_586));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_586), ((int32_t)908), ((int32_t)908), 0, ((int32_t)972), /*hidden argument*/NULL);
NullCheck(L_585);
(L_585)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_586);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_587 = L_585;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_588;
memset((&L_588), 0, sizeof(L_588));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_588), ((int32_t)910), ((int32_t)911), 1, ((int32_t)63), /*hidden argument*/NULL);
NullCheck(L_587);
(L_587)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_588);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_589 = L_587;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_590;
memset((&L_590), 0, sizeof(L_590));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_590), ((int32_t)913), ((int32_t)939), 1, ((int32_t)32), /*hidden argument*/NULL);
NullCheck(L_589);
(L_589)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)50)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_590);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_591 = L_589;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_592;
memset((&L_592), 0, sizeof(L_592));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_592), ((int32_t)994), ((int32_t)1006), 2, 0, /*hidden argument*/NULL);
NullCheck(L_591);
(L_591)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)51)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_592);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_593 = L_591;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_594;
memset((&L_594), 0, sizeof(L_594));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_594), ((int32_t)1025), ((int32_t)1039), 1, ((int32_t)80), /*hidden argument*/NULL);
NullCheck(L_593);
(L_593)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)52)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_594);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_595 = L_593;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_596;
memset((&L_596), 0, sizeof(L_596));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_596), ((int32_t)1040), ((int32_t)1071), 1, ((int32_t)32), /*hidden argument*/NULL);
NullCheck(L_595);
(L_595)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)53)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_596);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_597 = L_595;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_598;
memset((&L_598), 0, sizeof(L_598));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_598), ((int32_t)1120), ((int32_t)1152), 2, 0, /*hidden argument*/NULL);
NullCheck(L_597);
(L_597)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)54)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_598);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_599 = L_597;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_600;
memset((&L_600), 0, sizeof(L_600));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_600), ((int32_t)1168), ((int32_t)1214), 2, 0, /*hidden argument*/NULL);
NullCheck(L_599);
(L_599)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)55)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_600);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_601 = L_599;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_602;
memset((&L_602), 0, sizeof(L_602));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_602), ((int32_t)1217), ((int32_t)1219), 3, 0, /*hidden argument*/NULL);
NullCheck(L_601);
(L_601)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)56)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_602);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_603 = L_601;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_604;
memset((&L_604), 0, sizeof(L_604));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_604), ((int32_t)1223), ((int32_t)1223), 0, ((int32_t)1224), /*hidden argument*/NULL);
NullCheck(L_603);
(L_603)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)57)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_604);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_605 = L_603;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_606;
memset((&L_606), 0, sizeof(L_606));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_606), ((int32_t)1227), ((int32_t)1227), 0, ((int32_t)1228), /*hidden argument*/NULL);
NullCheck(L_605);
(L_605)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)58)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_606);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_607 = L_605;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_608;
memset((&L_608), 0, sizeof(L_608));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_608), ((int32_t)1232), ((int32_t)1258), 2, 0, /*hidden argument*/NULL);
NullCheck(L_607);
(L_607)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)59)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_608);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_609 = L_607;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_610;
memset((&L_610), 0, sizeof(L_610));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_610), ((int32_t)1262), ((int32_t)1268), 2, 0, /*hidden argument*/NULL);
NullCheck(L_609);
(L_609)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)60)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_610);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_611 = L_609;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_612;
memset((&L_612), 0, sizeof(L_612));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_612), ((int32_t)1272), ((int32_t)1272), 0, ((int32_t)1273), /*hidden argument*/NULL);
NullCheck(L_611);
(L_611)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)61)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_612);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_613 = L_611;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_614;
memset((&L_614), 0, sizeof(L_614));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_614), ((int32_t)1329), ((int32_t)1366), 1, ((int32_t)48), /*hidden argument*/NULL);
NullCheck(L_613);
(L_613)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)62)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_614);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_615 = L_613;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_616;
memset((&L_616), 0, sizeof(L_616));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_616), ((int32_t)4256), ((int32_t)4293), 1, ((int32_t)48), /*hidden argument*/NULL);
NullCheck(L_615);
(L_615)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)63)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_616);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_617 = L_615;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_618;
memset((&L_618), 0, sizeof(L_618));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_618), ((int32_t)7680), ((int32_t)7928), 2, 0, /*hidden argument*/NULL);
NullCheck(L_617);
(L_617)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)64)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_618);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_619 = L_617;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_620;
memset((&L_620), 0, sizeof(L_620));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_620), ((int32_t)7944), ((int32_t)7951), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_619);
(L_619)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)65)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_620);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_621 = L_619;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_622;
memset((&L_622), 0, sizeof(L_622));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_622), ((int32_t)7960), ((int32_t)7967), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_621);
(L_621)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)66)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_622);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_623 = L_621;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_624;
memset((&L_624), 0, sizeof(L_624));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_624), ((int32_t)7976), ((int32_t)7983), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_623);
(L_623)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)67)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_624);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_625 = L_623;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_626;
memset((&L_626), 0, sizeof(L_626));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_626), ((int32_t)7992), ((int32_t)7999), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_625);
(L_625)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)68)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_626);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_627 = L_625;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_628;
memset((&L_628), 0, sizeof(L_628));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_628), ((int32_t)8008), ((int32_t)8013), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_627);
(L_627)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)69)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_628);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_629 = L_627;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_630;
memset((&L_630), 0, sizeof(L_630));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_630), ((int32_t)8025), ((int32_t)8025), 0, ((int32_t)8017), /*hidden argument*/NULL);
NullCheck(L_629);
(L_629)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)70)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_630);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_631 = L_629;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_632;
memset((&L_632), 0, sizeof(L_632));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_632), ((int32_t)8027), ((int32_t)8027), 0, ((int32_t)8019), /*hidden argument*/NULL);
NullCheck(L_631);
(L_631)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)71)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_632);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_633 = L_631;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_634;
memset((&L_634), 0, sizeof(L_634));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_634), ((int32_t)8029), ((int32_t)8029), 0, ((int32_t)8021), /*hidden argument*/NULL);
NullCheck(L_633);
(L_633)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)72)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_634);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_635 = L_633;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_636;
memset((&L_636), 0, sizeof(L_636));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_636), ((int32_t)8031), ((int32_t)8031), 0, ((int32_t)8023), /*hidden argument*/NULL);
NullCheck(L_635);
(L_635)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)73)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_636);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_637 = L_635;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_638;
memset((&L_638), 0, sizeof(L_638));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_638), ((int32_t)8040), ((int32_t)8047), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_637);
(L_637)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)74)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_638);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_639 = L_637;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_640;
memset((&L_640), 0, sizeof(L_640));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_640), ((int32_t)8072), ((int32_t)8079), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_639);
(L_639)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)75)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_640);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_641 = L_639;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_642;
memset((&L_642), 0, sizeof(L_642));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_642), ((int32_t)8088), ((int32_t)8095), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_641);
(L_641)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)76)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_642);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_643 = L_641;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_644;
memset((&L_644), 0, sizeof(L_644));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_644), ((int32_t)8104), ((int32_t)8111), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_643);
(L_643)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)77)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_644);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_645 = L_643;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_646;
memset((&L_646), 0, sizeof(L_646));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_646), ((int32_t)8120), ((int32_t)8121), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_645);
(L_645)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)78)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_646);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_647 = L_645;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_648;
memset((&L_648), 0, sizeof(L_648));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_648), ((int32_t)8122), ((int32_t)8123), 1, ((int32_t)-74), /*hidden argument*/NULL);
NullCheck(L_647);
(L_647)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)79)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_648);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_649 = L_647;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_650;
memset((&L_650), 0, sizeof(L_650));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_650), ((int32_t)8124), ((int32_t)8124), 0, ((int32_t)8115), /*hidden argument*/NULL);
NullCheck(L_649);
(L_649)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)80)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_650);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_651 = L_649;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_652;
memset((&L_652), 0, sizeof(L_652));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_652), ((int32_t)8136), ((int32_t)8139), 1, ((int32_t)-86), /*hidden argument*/NULL);
NullCheck(L_651);
(L_651)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)81)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_652);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_653 = L_651;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_654;
memset((&L_654), 0, sizeof(L_654));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_654), ((int32_t)8140), ((int32_t)8140), 0, ((int32_t)8131), /*hidden argument*/NULL);
NullCheck(L_653);
(L_653)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)82)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_654);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_655 = L_653;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_656;
memset((&L_656), 0, sizeof(L_656));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_656), ((int32_t)8152), ((int32_t)8153), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_655);
(L_655)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)83)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_656);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_657 = L_655;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_658;
memset((&L_658), 0, sizeof(L_658));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_658), ((int32_t)8154), ((int32_t)8155), 1, ((int32_t)-100), /*hidden argument*/NULL);
NullCheck(L_657);
(L_657)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)84)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_658);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_659 = L_657;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_660;
memset((&L_660), 0, sizeof(L_660));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_660), ((int32_t)8168), ((int32_t)8169), 1, ((int32_t)-8), /*hidden argument*/NULL);
NullCheck(L_659);
(L_659)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)85)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_660);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_661 = L_659;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_662;
memset((&L_662), 0, sizeof(L_662));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_662), ((int32_t)8170), ((int32_t)8171), 1, ((int32_t)-112), /*hidden argument*/NULL);
NullCheck(L_661);
(L_661)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)86)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_662);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_663 = L_661;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_664;
memset((&L_664), 0, sizeof(L_664));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_664), ((int32_t)8172), ((int32_t)8172), 0, ((int32_t)8165), /*hidden argument*/NULL);
NullCheck(L_663);
(L_663)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)87)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_664);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_665 = L_663;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_666;
memset((&L_666), 0, sizeof(L_666));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_666), ((int32_t)8184), ((int32_t)8185), 1, ((int32_t)-128), /*hidden argument*/NULL);
NullCheck(L_665);
(L_665)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)88)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_666);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_667 = L_665;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_668;
memset((&L_668), 0, sizeof(L_668));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_668), ((int32_t)8186), ((int32_t)8187), 1, ((int32_t)-126), /*hidden argument*/NULL);
NullCheck(L_667);
(L_667)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)89)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_668);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_669 = L_667;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_670;
memset((&L_670), 0, sizeof(L_670));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_670), ((int32_t)8188), ((int32_t)8188), 0, ((int32_t)8179), /*hidden argument*/NULL);
NullCheck(L_669);
(L_669)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)90)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_670);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_671 = L_669;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_672;
memset((&L_672), 0, sizeof(L_672));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_672), ((int32_t)8544), ((int32_t)8559), 1, ((int32_t)16), /*hidden argument*/NULL);
NullCheck(L_671);
(L_671)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)91)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_672);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_673 = L_671;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_674;
memset((&L_674), 0, sizeof(L_674));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_674), ((int32_t)9398), ((int32_t)9424), 1, ((int32_t)26), /*hidden argument*/NULL);
NullCheck(L_673);
(L_673)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)92)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_674);
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* L_675 = L_673;
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1 L_676;
memset((&L_676), 0, sizeof(L_676));
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A((&L_676), ((int32_t)65313), ((int32_t)65338), 1, ((int32_t)32), /*hidden argument*/NULL);
NullCheck(L_675);
(L_675)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)93)), (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1)L_676);
((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13 = L_675;
Il2CppCodeGenWriteBarrier((void**)(&((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___s_lcTable_13), (void*)L_675);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
IL2CPP_EXTERN_C void LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshal_pinvoke(const LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1& unmarshaled, LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_pinvoke& marshaled)
{
marshaled.___ChMin_0 = static_cast<uint8_t>(unmarshaled.___ChMin_0);
marshaled.___ChMax_1 = static_cast<uint8_t>(unmarshaled.___ChMax_1);
marshaled.___LcOp_2 = unmarshaled.___LcOp_2;
marshaled.___Data_3 = unmarshaled.___Data_3;
}
IL2CPP_EXTERN_C void LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshal_pinvoke_back(const LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_pinvoke& marshaled, LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1& unmarshaled)
{
Il2CppChar unmarshaledChMin_temp_0 = 0x0;
unmarshaledChMin_temp_0 = static_cast<Il2CppChar>(marshaled.___ChMin_0);
unmarshaled.___ChMin_0 = unmarshaledChMin_temp_0;
Il2CppChar unmarshaledChMax_temp_1 = 0x0;
unmarshaledChMax_temp_1 = static_cast<Il2CppChar>(marshaled.___ChMax_1);
unmarshaled.___ChMax_1 = unmarshaledChMax_temp_1;
int32_t unmarshaledLcOp_temp_2 = 0;
unmarshaledLcOp_temp_2 = marshaled.___LcOp_2;
unmarshaled.___LcOp_2 = unmarshaledLcOp_temp_2;
int32_t unmarshaledData_temp_3 = 0;
unmarshaledData_temp_3 = marshaled.___Data_3;
unmarshaled.___Data_3 = unmarshaledData_temp_3;
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
IL2CPP_EXTERN_C void LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshal_pinvoke_cleanup(LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
IL2CPP_EXTERN_C void LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshal_com(const LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1& unmarshaled, LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_com& marshaled)
{
marshaled.___ChMin_0 = static_cast<uint8_t>(unmarshaled.___ChMin_0);
marshaled.___ChMax_1 = static_cast<uint8_t>(unmarshaled.___ChMax_1);
marshaled.___LcOp_2 = unmarshaled.___LcOp_2;
marshaled.___Data_3 = unmarshaled.___Data_3;
}
IL2CPP_EXTERN_C void LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshal_com_back(const LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_com& marshaled, LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1& unmarshaled)
{
Il2CppChar unmarshaledChMin_temp_0 = 0x0;
unmarshaledChMin_temp_0 = static_cast<Il2CppChar>(marshaled.___ChMin_0);
unmarshaled.___ChMin_0 = unmarshaledChMin_temp_0;
Il2CppChar unmarshaledChMax_temp_1 = 0x0;
unmarshaledChMax_temp_1 = static_cast<Il2CppChar>(marshaled.___ChMax_1);
unmarshaled.___ChMax_1 = unmarshaledChMax_temp_1;
int32_t unmarshaledLcOp_temp_2 = 0;
unmarshaledLcOp_temp_2 = marshaled.___LcOp_2;
unmarshaled.___LcOp_2 = unmarshaledLcOp_temp_2;
int32_t unmarshaledData_temp_3 = 0;
unmarshaledData_temp_3 = marshaled.___Data_3;
unmarshaled.___Data_3 = unmarshaledData_temp_3;
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
IL2CPP_EXTERN_C void LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshal_com_cleanup(LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1_marshaled_com& marshaled)
{
}
// System.Void System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::.ctor(System.Char,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A (LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1* __this, Il2CppChar ___chMin0, Il2CppChar ___chMax1, int32_t ___lcOp2, int32_t ___data3, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___chMin0;
__this->___ChMin_0 = L_0;
Il2CppChar L_1 = ___chMax1;
__this->___ChMax_1 = L_1;
int32_t L_2 = ___lcOp2;
__this->___LcOp_2 = L_2;
int32_t L_3 = ___data3;
__this->___Data_3 = L_3;
return;
}
}
IL2CPP_EXTERN_C void LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A_AdjustorThunk (RuntimeObject* __this, Il2CppChar ___chMin0, Il2CppChar ___chMax1, int32_t ___lcOp2, int32_t ___data3, const RuntimeMethod* method)
{
LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<LowerCaseMapping_t3E26F9E4ED2CCDA7404B4E4C123B0175FF5F8FF1*>(__this + _offset);
LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A(_thisAdjusted, ___chMin0, ___chMax1, ___lcOp2, ___data3, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleRangeComparer__ctor_m9B430EFE70974D964D73913D81E7C6C9236BBCCE (SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Int32 System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::Compare(System.Text.RegularExpressions.RegexCharClass/SingleRange,System.Text.RegularExpressions.RegexCharClass/SingleRange)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SingleRangeComparer_Compare_m917FDE86E5F31A755D07077EA095F8B7E27E130B (SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___x0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___y1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = (&(&___x0)->___First_0);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_1 = ___y1;
Il2CppChar L_2 = L_1.___First_0;
int32_t L_3;
L_3 = Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7(L_0, L_2, NULL);
return L_3;
}
}
// System.Void System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleRangeComparer__cctor_m512F77BDA73732EB8D39BB056D00CF9B200D5D1C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0* L_0 = (SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0*)il2cpp_codegen_object_new(SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var);
NullCheck(L_0);
SingleRangeComparer__ctor_m9B430EFE70974D964D73913D81E7C6C9236BBCCE(L_0, NULL);
((SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_StaticFields*)il2cpp_codegen_static_fields_for(SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_il2cpp_TypeInfo_var))->___Instance_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_StaticFields*)il2cpp_codegen_static_fields_for(SingleRangeComparer_t2D299E0E54D7F24BAF67EA65E92B6FCDB806F9D0_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
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexCharClass/SingleRange
IL2CPP_EXTERN_C void SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshal_pinvoke(const SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC& unmarshaled, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke& marshaled)
{
marshaled.___First_0 = static_cast<uint8_t>(unmarshaled.___First_0);
marshaled.___Last_1 = static_cast<uint8_t>(unmarshaled.___Last_1);
}
IL2CPP_EXTERN_C void SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshal_pinvoke_back(const SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke& marshaled, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC& unmarshaled)
{
Il2CppChar unmarshaledFirst_temp_0 = 0x0;
unmarshaledFirst_temp_0 = static_cast<Il2CppChar>(marshaled.___First_0);
unmarshaled.___First_0 = unmarshaledFirst_temp_0;
Il2CppChar unmarshaledLast_temp_1 = 0x0;
unmarshaledLast_temp_1 = static_cast<Il2CppChar>(marshaled.___Last_1);
unmarshaled.___Last_1 = unmarshaledLast_temp_1;
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexCharClass/SingleRange
IL2CPP_EXTERN_C void SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshal_pinvoke_cleanup(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexCharClass/SingleRange
IL2CPP_EXTERN_C void SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshal_com(const SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC& unmarshaled, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com& marshaled)
{
marshaled.___First_0 = static_cast<uint8_t>(unmarshaled.___First_0);
marshaled.___Last_1 = static_cast<uint8_t>(unmarshaled.___Last_1);
}
IL2CPP_EXTERN_C void SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshal_com_back(const SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com& marshaled, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC& unmarshaled)
{
Il2CppChar unmarshaledFirst_temp_0 = 0x0;
unmarshaledFirst_temp_0 = static_cast<Il2CppChar>(marshaled.___First_0);
unmarshaled.___First_0 = unmarshaledFirst_temp_0;
Il2CppChar unmarshaledLast_temp_1 = 0x0;
unmarshaledLast_temp_1 = static_cast<Il2CppChar>(marshaled.___Last_1);
unmarshaled.___Last_1 = unmarshaledLast_temp_1;
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexCharClass/SingleRange
IL2CPP_EXTERN_C void SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshal_com_cleanup(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com& marshaled)
{
}
// System.Void System.Text.RegularExpressions.RegexCharClass/SingleRange::.ctor(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* __this, Il2CppChar ___first0, Il2CppChar ___last1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___first0;
__this->___First_0 = L_0;
Il2CppChar L_1 = ___last1;
__this->___Last_1 = L_1;
return;
}
}
IL2CPP_EXTERN_C void SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E_AdjustorThunk (RuntimeObject* __this, Il2CppChar ___first0, Il2CppChar ___last1, const RuntimeMethod* method)
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*>(__this + _offset);
SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E(_thisAdjusted, ___first0, ___last1, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.RegexCode::.ctor(System.Int32[],System.Collections.Generic.List`1<System.String>,System.Int32,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.RegexBoyerMoore,System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCode__ctor_mA50EE1CFA1A050BFC45E135DAB7E2704049512E0 (RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___codes0, List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___stringlist1, int32_t ___trackcount2, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps3, int32_t ___capsize4, RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* ___bmPrefix5, Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 ___fcPrefix6, int32_t ___anchors7, bool ___rightToLeft8, 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;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___codes0;
__this->___Codes_48 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Codes_48), (void*)L_0);
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = ___stringlist1;
NullCheck(L_1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2;
L_2 = List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A(L_1, List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
__this->___Strings_49 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Strings_49), (void*)L_2);
int32_t L_3 = ___trackcount2;
__this->___TrackCount_50 = L_3;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = ___caps3;
__this->___Caps_51 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Caps_51), (void*)L_4);
int32_t L_5 = ___capsize4;
__this->___CapSize_52 = L_5;
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_6 = ___bmPrefix5;
__this->___BMPrefix_54 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___BMPrefix_54), (void*)L_6);
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 L_7 = ___fcPrefix6;
__this->___FCPrefix_53 = L_7;
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___FCPrefix_53))->___value_1))->___U3CPrefixU3Ek__BackingField_2), (void*)NULL);
int32_t L_8 = ___anchors7;
__this->___Anchors_55 = L_8;
bool L_9 = ___rightToLeft8;
__this->___RightToLeft_56 = L_9;
return;
}
}
// System.Boolean System.Text.RegularExpressions.RegexCode::OpcodeBacktracks(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCode_OpcodeBacktracks_m77D0680FD94F152F85C6CF8724A5EBFFE07A1397 (int32_t ___Op0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___Op0;
___Op0 = ((int32_t)(L_0&((int32_t)63)));
int32_t L_1 = ___Op0;
switch (((int32_t)il2cpp_codegen_subtract(L_1, 3)))
{
case 0:
{
goto IL_00a0;
}
case 1:
{
goto IL_00a0;
}
case 2:
{
goto IL_00a0;
}
case 3:
{
goto IL_00a0;
}
case 4:
{
goto IL_00a0;
}
case 5:
{
goto IL_00a0;
}
case 6:
{
goto IL_00a2;
}
case 7:
{
goto IL_00a2;
}
case 8:
{
goto IL_00a2;
}
case 9:
{
goto IL_00a2;
}
case 10:
{
goto IL_00a2;
}
case 11:
{
goto IL_00a2;
}
case 12:
{
goto IL_00a2;
}
case 13:
{
goto IL_00a2;
}
case 14:
{
goto IL_00a2;
}
case 15:
{
goto IL_00a2;
}
case 16:
{
goto IL_00a2;
}
case 17:
{
goto IL_00a2;
}
case 18:
{
goto IL_00a2;
}
case 19:
{
goto IL_00a2;
}
case 20:
{
goto IL_00a0;
}
case 21:
{
goto IL_00a0;
}
case 22:
{
goto IL_00a0;
}
case 23:
{
goto IL_00a0;
}
case 24:
{
goto IL_00a0;
}
case 25:
{
goto IL_00a0;
}
case 26:
{
goto IL_00a0;
}
case 27:
{
goto IL_00a2;
}
case 28:
{
goto IL_00a0;
}
case 29:
{
goto IL_00a0;
}
case 30:
{
goto IL_00a0;
}
case 31:
{
goto IL_00a0;
}
case 32:
{
goto IL_00a0;
}
case 33:
{
goto IL_00a0;
}
case 34:
{
goto IL_00a2;
}
case 35:
{
goto IL_00a0;
}
}
}
{
goto IL_00a2;
}
IL_00a0:
{
return (bool)1;
}
IL_00a2:
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexFCD
IL2CPP_EXTERN_C void RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshal_pinvoke(const RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD& unmarshaled, RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_pinvoke& marshaled)
{
Exception_t* ____fcStack_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_fcStack' of type 'RegexFCD'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____fcStack_0Exception, NULL);
}
IL2CPP_EXTERN_C void RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshal_pinvoke_back(const RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_pinvoke& marshaled, RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD& unmarshaled)
{
Exception_t* ____fcStack_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_fcStack' of type 'RegexFCD'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____fcStack_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexFCD
IL2CPP_EXTERN_C void RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshal_pinvoke_cleanup(RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexFCD
IL2CPP_EXTERN_C void RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshal_com(const RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD& unmarshaled, RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_com& marshaled)
{
Exception_t* ____fcStack_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_fcStack' of type 'RegexFCD'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____fcStack_0Exception, NULL);
}
IL2CPP_EXTERN_C void RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshal_com_back(const RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_com& marshaled, RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD& unmarshaled)
{
Exception_t* ____fcStack_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_fcStack' of type 'RegexFCD'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____fcStack_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexFCD
IL2CPP_EXTERN_C void RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshal_com_cleanup(RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD_marshaled_com& marshaled)
{
}
// System.Void System.Text.RegularExpressions.RegexFCD::.ctor(System.Span`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD__ctor_mE1C0A21180069D25EEF6F3702938ABB087F35C0C (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___intStack0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m577E237486A82F977367542706CB743B4ED0C7C9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_0 = (List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1*)il2cpp_codegen_object_new(List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m577E237486A82F977367542706CB743B4ED0C7C9(L_0, ((int32_t)32), List_1__ctor_m577E237486A82F977367542706CB743B4ED0C7C9_RuntimeMethod_var);
__this->____fcStack_0 = L_0;
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_1 = ___intStack0;
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 L_2;
memset((&L_2), 0, sizeof(L_2));
ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8((&L_2), L_1, /*hidden argument*/ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var);
__this->____intStack_1 = L_2;
__this->____failed_4 = (bool)0;
__this->____skipchild_3 = (bool)0;
__this->____skipAllChildren_2 = (bool)0;
return;
}
}
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix> System.Text.RegularExpressions.RegexFCD::FirstChars(System.Text.RegularExpressions.RegexTree)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 RegexFCD_FirstChars_mD151F8EF8DD64C9E1960D6C4E79E65A6766322CA (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 V_0;
memset((&V_0), 0, sizeof(V_0));
RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD V_1;
memset((&V_1), 0, sizeof(V_1));
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_2 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_3 = NULL;
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 V_4;
memset((&V_4), 0, sizeof(V_4));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B6_0 = NULL;
{
int8_t* L_0 = (int8_t*) alloca(((uintptr_t)((int32_t)128)));
memset(L_0, 0, ((uintptr_t)((int32_t)128)));
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_1;
memset((&L_1), 0, sizeof(L_1));
Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline((&L_1), (void*)(L_0), ((int32_t)32), /*hidden argument*/Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
V_0 = L_1;
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_2 = V_0;
RegexFCD__ctor_mE1C0A21180069D25EEF6F3702938ABB087F35C0C((&V_1), L_2, NULL);
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_3 = ___t0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_4;
L_4 = RegexFCD_RegexFCFromRegexTree_mD5A53219905969B914CE27404553A4360DA78500((&V_1), L_3, NULL);
V_2 = L_4;
RegexFCD_Dispose_m0B04A2F3B819FA7BFAF0AECCBF6D22E6D9789C07((&V_1), NULL);
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_5 = V_2;
if (!L_5)
{
goto IL_0033;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_6 = V_2;
NullCheck(L_6);
bool L_7 = L_6->____nullable_1;
if (!L_7)
{
goto IL_003e;
}
}
IL_0033:
{
il2cpp_codegen_initobj((&V_4), sizeof(Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8));
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 L_8 = V_4;
return L_8;
}
IL_003e:
{
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_9 = ___t0;
NullCheck(L_9);
int32_t L_10 = L_9->___Options_6;
if (((int32_t)((int32_t)L_10&((int32_t)512))))
{
goto IL_0053;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11;
L_11 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
G_B6_0 = L_11;
goto IL_0058;
}
IL_0053:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
G_B6_0 = L_12;
}
IL_0058:
{
V_3 = G_B6_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_13 = V_2;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14 = V_3;
NullCheck(L_13);
String_t* L_15;
L_15 = RegexFC_GetFirstChars_m6BAC398ABDCA5AF58CBE678143C9792611A2A3E8(L_13, L_14, NULL);
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_16 = V_2;
NullCheck(L_16);
bool L_17;
L_17 = RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102_inline(L_16, NULL);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_18;
memset((&L_18), 0, sizeof(L_18));
RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4((&L_18), L_15, L_17, /*hidden argument*/NULL);
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 L_19;
memset((&L_19), 0, sizeof(L_19));
Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738((&L_19), L_18, /*hidden argument*/Nullable_1__ctor_mC9D9E775E334781C1876F283EF33A158D99C7738_RuntimeMethod_var);
return L_19;
}
}
// System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::Prefix(System.Text.RegularExpressions.RegexTree)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 RegexFCD_Prefix_m6D786604F799DF1EEF509BEA577E2DC50C75FB6E (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___tree0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_0 = NULL;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_0 = ___tree0;
NullCheck(L_0);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = L_0->___Root_0;
V_0 = L_1;
V_1 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
V_2 = 0;
}
IL_000b:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = L_2->___NType_0;
V_3 = L_3;
int32_t L_4 = V_3;
switch (((int32_t)il2cpp_codegen_subtract(L_4, 3)))
{
case 0:
{
goto IL_00c3;
}
case 1:
{
goto IL_0139;
}
case 2:
{
goto IL_0139;
}
case 3:
{
goto IL_00c3;
}
case 4:
{
goto IL_0139;
}
case 5:
{
goto IL_0139;
}
case 6:
{
goto IL_0106;
}
case 7:
{
goto IL_0139;
}
case 8:
{
goto IL_0139;
}
case 9:
{
goto IL_0122;
}
case 10:
{
goto IL_0139;
}
case 11:
{
goto IL_013f;
}
case 12:
{
goto IL_013f;
}
case 13:
{
goto IL_013f;
}
case 14:
{
goto IL_0139;
}
case 15:
{
goto IL_013f;
}
case 16:
{
goto IL_013f;
}
case 17:
{
goto IL_013f;
}
case 18:
{
goto IL_013f;
}
case 19:
{
goto IL_0139;
}
case 20:
{
goto IL_013f;
}
case 21:
{
goto IL_0139;
}
case 22:
{
goto IL_009f;
}
case 23:
{
goto IL_0139;
}
case 24:
{
goto IL_0139;
}
case 25:
{
goto IL_00b4;
}
case 26:
{
goto IL_0139;
}
case 27:
{
goto IL_013f;
}
case 28:
{
goto IL_013f;
}
case 29:
{
goto IL_00b4;
}
}
}
{
int32_t L_5 = V_3;
if ((((int32_t)L_5) == ((int32_t)((int32_t)41))))
{
goto IL_013f;
}
}
{
goto IL_0139;
}
IL_009f:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_6, NULL);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_013f;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_8 = V_0;
V_1 = L_8;
V_2 = 0;
goto IL_013f;
}
IL_00b4:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9 = V_0;
NullCheck(L_9);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_10;
L_10 = RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27(L_9, 0, NULL);
V_0 = L_10;
V_1 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
goto IL_000b;
}
IL_00c3:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = L_11->___M_4;
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_0100;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_13 = V_0;
NullCheck(L_13);
int32_t L_14 = L_13->___M_4;
if ((((int32_t)L_14) >= ((int32_t)((int32_t)1000000))))
{
goto IL_0100;
}
}
{
String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = L_16->___M_4;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_18 = V_0;
NullCheck(L_18);
Il2CppChar L_19 = L_18->___Ch_3;
NullCheck(L_15);
String_t* L_20;
L_20 = String_PadRight_m7C573780177B3246D67D860C2A75AEF5832C7543(L_15, L_17, L_19, NULL);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_21 = V_0;
NullCheck(L_21);
int32_t L_22 = L_21->___Options_6;
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_23;
memset((&L_23), 0, sizeof(L_23));
RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4((&L_23), L_20, (bool)((!(((uint32_t)((int32_t)((int32_t)L_22&1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL);
return L_23;
}
IL_0100:
{
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_24;
L_24 = RegexPrefix_get_Empty_m3D63F7F64529D4CA3C0929F94E035EEED7D9E0F9_inline(NULL);
return L_24;
}
IL_0106:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_25 = V_0;
NullCheck(L_25);
Il2CppChar* L_26 = (&L_25->___Ch_3);
String_t* L_27;
L_27 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_26, NULL);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_28 = V_0;
NullCheck(L_28);
int32_t L_29 = L_28->___Options_6;
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_30;
memset((&L_30), 0, sizeof(L_30));
RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4((&L_30), L_27, (bool)((!(((uint32_t)((int32_t)((int32_t)L_29&1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL);
return L_30;
}
IL_0122:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_31 = V_0;
NullCheck(L_31);
String_t* L_32 = L_31->___Str_2;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_33 = V_0;
NullCheck(L_33);
int32_t L_34 = L_33->___Options_6;
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_35;
memset((&L_35), 0, sizeof(L_35));
RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4((&L_35), L_32, (bool)((!(((uint32_t)((int32_t)((int32_t)L_34&1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL);
return L_35;
}
IL_0139:
{
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_36;
L_36 = RegexPrefix_get_Empty_m3D63F7F64529D4CA3C0929F94E035EEED7D9E0F9_inline(NULL);
return L_36;
}
IL_013f:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_37 = V_1;
if (!L_37)
{
goto IL_014b;
}
}
{
int32_t L_38 = V_2;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_39 = V_1;
NullCheck(L_39);
int32_t L_40;
L_40 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_39, NULL);
if ((((int32_t)L_38) < ((int32_t)L_40)))
{
goto IL_0151;
}
}
IL_014b:
{
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_41;
L_41 = RegexPrefix_get_Empty_m3D63F7F64529D4CA3C0929F94E035EEED7D9E0F9_inline(NULL);
return L_41;
}
IL_0151:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_42 = V_1;
int32_t L_43 = V_2;
int32_t L_44 = L_43;
V_2 = ((int32_t)il2cpp_codegen_add(L_44, 1));
NullCheck(L_42);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_45;
L_45 = RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27(L_42, L_44, NULL);
V_0 = L_45;
goto IL_000b;
}
}
// System.Int32 System.Text.RegularExpressions.RegexFCD::Anchors(System.Text.RegularExpressions.RegexTree)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_Anchors_mF19C2B50200C6D7E38566E5C4854DB04EADFF5CE (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___tree0, const RuntimeMethod* method)
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_0 = NULL;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_1 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
V_2 = 0;
V_3 = 0;
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_0 = ___tree0;
NullCheck(L_0);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = L_0->___Root_0;
V_0 = L_1;
}
IL_000d:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = L_2->___NType_0;
V_4 = L_3;
int32_t L_4 = V_4;
switch (((int32_t)il2cpp_codegen_subtract(L_4, ((int32_t)14))))
{
case 0:
{
goto IL_0091;
}
case 1:
{
goto IL_0091;
}
case 2:
{
goto IL_0091;
}
case 3:
{
goto IL_009f;
}
case 4:
{
goto IL_0091;
}
case 5:
{
goto IL_0091;
}
case 6:
{
goto IL_0091;
}
case 7:
{
goto IL_0091;
}
case 8:
{
goto IL_009f;
}
case 9:
{
goto IL_00a1;
}
case 10:
{
goto IL_009f;
}
case 11:
{
goto IL_0073;
}
case 12:
{
goto IL_009f;
}
case 13:
{
goto IL_009f;
}
case 14:
{
goto IL_0082;
}
case 15:
{
goto IL_009f;
}
case 16:
{
goto IL_00a1;
}
case 17:
{
goto IL_00a1;
}
case 18:
{
goto IL_0082;
}
}
}
{
int32_t L_5 = V_4;
if ((((int32_t)L_5) == ((int32_t)((int32_t)41))))
{
goto IL_0091;
}
}
{
goto IL_009f;
}
IL_0073:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_6, NULL);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00a1;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_8 = V_0;
V_1 = L_8;
V_2 = 0;
goto IL_00a1;
}
IL_0082:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9 = V_0;
NullCheck(L_9);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_10;
L_10 = RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27(L_9, 0, NULL);
V_0 = L_10;
V_1 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
goto IL_000d;
}
IL_0091:
{
int32_t L_11 = V_3;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_12 = V_0;
NullCheck(L_12);
int32_t L_13 = L_12->___NType_0;
int32_t L_14;
L_14 = RegexFCD_AnchorFromType_mF944273F420E8D43F4F9EC93950E3797B4C10A47(L_13, NULL);
return ((int32_t)(L_11|L_14));
}
IL_009f:
{
int32_t L_15 = V_3;
return L_15;
}
IL_00a1:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_16 = V_1;
if (!L_16)
{
goto IL_00ad;
}
}
{
int32_t L_17 = V_2;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_18 = V_1;
NullCheck(L_18);
int32_t L_19;
L_19 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_18, NULL);
if ((((int32_t)L_17) < ((int32_t)L_19)))
{
goto IL_00af;
}
}
IL_00ad:
{
int32_t L_20 = V_3;
return L_20;
}
IL_00af:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_21 = V_1;
int32_t L_22 = V_2;
int32_t L_23 = L_22;
V_2 = ((int32_t)il2cpp_codegen_add(L_23, 1));
NullCheck(L_21);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_24;
L_24 = RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27(L_21, L_23, NULL);
V_0 = L_24;
goto IL_000d;
}
}
// System.Int32 System.Text.RegularExpressions.RegexFCD::AnchorFromType(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_AnchorFromType_mF944273F420E8D43F4F9EC93950E3797B4C10A47 (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
switch (((int32_t)il2cpp_codegen_subtract(L_0, ((int32_t)14))))
{
case 0:
{
goto IL_0030;
}
case 1:
{
goto IL_0032;
}
case 2:
{
goto IL_0034;
}
case 3:
{
goto IL_0047;
}
case 4:
{
goto IL_003d;
}
case 5:
{
goto IL_003f;
}
case 6:
{
goto IL_0041;
}
case 7:
{
goto IL_0044;
}
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)41))))
{
goto IL_0037;
}
}
{
goto IL_0047;
}
IL_0030:
{
return 2;
}
IL_0032:
{
return 8;
}
IL_0034:
{
return ((int32_t)64);
}
IL_0037:
{
return ((int32_t)128);
}
IL_003d:
{
return 1;
}
IL_003f:
{
return 4;
}
IL_0041:
{
return ((int32_t)16);
}
IL_0044:
{
return ((int32_t)32);
}
IL_0047:
{
return 0;
}
}
// System.Void System.Text.RegularExpressions.RegexFCD::PushInt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushInt_m0B38AFDAF0D14FF1E41AC90838B40C4C866D8875 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_0 = (&__this->____intStack_1);
int32_t L_1 = ___i0;
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_0, L_1, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
return;
}
}
// System.Boolean System.Text.RegularExpressions.RegexFCD::IntIsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_IntIsEmpty_m05E3C6FF40B69E98D90CF1C12DF3F32AEC800B5E (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_0 = (&__this->____intStack_1);
int32_t L_1;
L_1 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_0, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 System.Text.RegularExpressions.RegexFCD::PopInt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_PopInt_m1DF4F5E6B4BA9E15AFF2B3C44D1A233EA46EFCD0 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_0 = (&__this->____intStack_1);
int32_t L_1;
L_1 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_0, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
return L_1;
}
}
// System.Void System.Text.RegularExpressions.RegexFCD::PushFC(System.Text.RegularExpressions.RegexFC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* ___fc0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m13AFB49515C3E17A2B0542E030545352978F3C61_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_0 = __this->____fcStack_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_1 = ___fc0;
NullCheck(L_0);
List_1_Add_m13AFB49515C3E17A2B0542E030545352978F3C61_inline(L_0, L_1, List_1_Add_m13AFB49515C3E17A2B0542E030545352978F3C61_RuntimeMethod_var);
return;
}
}
// System.Boolean System.Text.RegularExpressions.RegexFCD::FCIsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_FCIsEmpty_m749E6423466EAD51E38445AC91E76DE31258574F (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_0 = __this->____fcStack_0;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_inline(L_0, List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::PopFC()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m6080E9C1661919ED369F1ED2BC417C7B714D8CB8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_0;
L_0 = RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD(__this, NULL);
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_1 = __this->____fcStack_0;
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_2 = __this->____fcStack_0;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_inline(L_2, List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var);
NullCheck(L_1);
List_1_RemoveAt_m6080E9C1661919ED369F1ED2BC417C7B714D8CB8(L_1, ((int32_t)il2cpp_codegen_subtract(L_3, 1)), List_1_RemoveAt_m6080E9C1661919ED369F1ED2BC417C7B714D8CB8_RuntimeMethod_var);
return L_0;
}
}
// System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::TopFC()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m40508D1183F77F83F5FA073B2ED5DEB05070E6D1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_0 = __this->____fcStack_0;
List_1_t4FE8E18043CE447403B6ACB419E78C04D6615AF1* L_1 = __this->____fcStack_0;
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_inline(L_1, List_1_get_Count_m788BF1B879DC03886C29C03A3B8DB060481645D5_RuntimeMethod_var);
NullCheck(L_0);
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_3;
L_3 = List_1_get_Item_m40508D1183F77F83F5FA073B2ED5DEB05070E6D1(L_0, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), List_1_get_Item_m40508D1183F77F83F5FA073B2ED5DEB05070E6D1_RuntimeMethod_var);
return L_3;
}
}
// System.Void System.Text.RegularExpressions.RegexFCD::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_Dispose_m0B04A2F3B819FA7BFAF0AECCBF6D22E6D9789C07 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_0 = (&__this->____intStack_1);
ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_inline(L_0, ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var);
return;
}
}
// System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::RegexFCFromRegexTree(System.Text.RegularExpressions.RegexTree)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* RegexFCD_RegexFCFromRegexTree_mD5A53219905969B914CE27404553A4360DA78500 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___tree0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_0 = NULL;
int32_t V_1 = 0;
{
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_0 = ___tree0;
NullCheck(L_0);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = L_0->___Root_0;
V_0 = L_1;
V_1 = 0;
}
IL_0009:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = V_0;
NullCheck(L_2);
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_3 = L_2->___Children_1;
if (L_3)
{
goto IL_0021;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = V_0;
NullCheck(L_4);
int32_t L_5 = L_4->___NType_0;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6 = V_0;
RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91(__this, L_5, L_6, 0, NULL);
goto IL_0075;
}
IL_0021:
{
int32_t L_7 = V_1;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_8 = V_0;
NullCheck(L_8);
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_9 = L_8->___Children_1;
NullCheck(L_9);
int32_t L_10;
L_10 = List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline(L_9, List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
if ((((int32_t)L_7) >= ((int32_t)L_10)))
{
goto IL_0075;
}
}
{
bool L_11 = __this->____skipAllChildren_2;
if (L_11)
{
goto IL_0075;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_12 = V_0;
NullCheck(L_12);
int32_t L_13 = L_12->___NType_0;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_14 = V_0;
int32_t L_15 = V_1;
RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91(__this, ((int32_t)(L_13|((int32_t)64))), L_14, L_15, NULL);
bool L_16 = __this->____skipchild_3;
if (L_16)
{
goto IL_0068;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_17 = V_0;
NullCheck(L_17);
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_18 = L_17->___Children_1;
int32_t L_19 = V_1;
NullCheck(L_18);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_20;
L_20 = List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6(L_18, L_19, List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6_RuntimeMethod_var);
V_0 = L_20;
int32_t L_21 = V_1;
RegexFCD_PushInt_m0B38AFDAF0D14FF1E41AC90838B40C4C866D8875(__this, L_21, NULL);
V_1 = 0;
goto IL_0009;
}
IL_0068:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
__this->____skipchild_3 = (bool)0;
goto IL_0009;
}
IL_0075:
{
__this->____skipAllChildren_2 = (bool)0;
bool L_23;
L_23 = RegexFCD_IntIsEmpty_m05E3C6FF40B69E98D90CF1C12DF3F32AEC800B5E(__this, NULL);
if (L_23)
{
goto IL_00b9;
}
}
{
int32_t L_24;
L_24 = RegexFCD_PopInt_m1DF4F5E6B4BA9E15AFF2B3C44D1A233EA46EFCD0(__this, NULL);
V_1 = L_24;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_25 = V_0;
NullCheck(L_25);
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_26 = L_25->___Next_7;
V_0 = L_26;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_27 = V_0;
NullCheck(L_27);
int32_t L_28 = L_27->___NType_0;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_29 = V_0;
int32_t L_30 = V_1;
RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91(__this, ((int32_t)(L_28|((int32_t)128))), L_29, L_30, NULL);
bool L_31 = __this->____failed_4;
if (!L_31)
{
goto IL_00b0;
}
}
{
return (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)NULL;
}
IL_00b0:
{
int32_t L_32 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
goto IL_0009;
}
IL_00b9:
{
bool L_33;
L_33 = RegexFCD_FCIsEmpty_m749E6423466EAD51E38445AC91E76DE31258574F(__this, NULL);
if (!L_33)
{
goto IL_00c3;
}
}
{
return (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)NULL;
}
IL_00c3:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_34;
L_34 = RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628(__this, NULL);
return L_34;
}
}
// System.Void System.Text.RegularExpressions.RegexFCD::SkipChild()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_SkipChild_m5ACE619BAC10DD5DFE755655DB6151E7DB0885FD (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, const RuntimeMethod* method)
{
{
__this->____skipchild_3 = (bool)1;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexFCD::CalculateFC(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91 (RegexFCD_t696EC897BC155EF1EC7AEC0D97E2CE7717B45ADD* __this, int32_t ___NodeType0, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___node1, int32_t ___CurIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_2 = NULL;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_3 = NULL;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_4 = NULL;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_5 = NULL;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_6 = NULL;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* V_7 = NULL;
{
V_0 = (bool)0;
V_1 = (bool)0;
int32_t L_0 = ___NodeType0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)13))))
{
goto IL_0022;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = ___node1;
NullCheck(L_1);
int32_t L_2 = L_1->___Options_6;
if (!((int32_t)((int32_t)L_2&1)))
{
goto IL_0015;
}
}
{
V_0 = (bool)1;
}
IL_0015:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_3 = ___node1;
NullCheck(L_3);
int32_t L_4 = L_3->___Options_6;
if (!((int32_t)((int32_t)L_4&((int32_t)64))))
{
goto IL_0022;
}
}
{
V_1 = (bool)1;
}
IL_0022:
{
int32_t L_5 = ___NodeType0;
switch (((int32_t)il2cpp_codegen_subtract(L_5, 3)))
{
case 0:
{
goto IL_0229;
}
case 1:
{
goto IL_0246;
}
case 2:
{
goto IL_02d6;
}
case 3:
{
goto IL_0229;
}
case 4:
{
goto IL_0246;
}
case 5:
{
goto IL_02d6;
}
case 6:
{
goto IL_0210;
}
case 7:
{
goto IL_0210;
}
case 8:
{
goto IL_02c2;
}
case 9:
{
goto IL_0263;
}
case 10:
{
goto IL_02f2;
}
case 11:
{
goto IL_0305;
}
case 12:
{
goto IL_0305;
}
case 13:
{
goto IL_0305;
}
case 14:
{
goto IL_0305;
}
case 15:
{
goto IL_0305;
}
case 16:
{
goto IL_0305;
}
case 17:
{
goto IL_0305;
}
case 18:
{
goto IL_0305;
}
case 19:
{
goto IL_0305;
}
case 20:
{
goto IL_0149;
}
case 21:
{
goto IL_0312;
}
case 22:
{
goto IL_0312;
}
case 23:
{
goto IL_0312;
}
case 24:
{
goto IL_0312;
}
case 25:
{
goto IL_0312;
}
case 26:
{
goto IL_0312;
}
case 27:
{
goto IL_0312;
}
case 28:
{
goto IL_0312;
}
case 29:
{
goto IL_0312;
}
case 30:
{
goto IL_0312;
}
case 31:
{
goto IL_0312;
}
case 32:
{
goto IL_0312;
}
case 33:
{
goto IL_0312;
}
case 34:
{
goto IL_0312;
}
case 35:
{
goto IL_0312;
}
case 36:
{
goto IL_0312;
}
case 37:
{
goto IL_0312;
}
case 38:
{
goto IL_0305;
}
case 39:
{
goto IL_0305;
}
}
}
{
int32_t L_6 = ___NodeType0;
switch (((int32_t)il2cpp_codegen_subtract(L_6, ((int32_t)88))))
{
case 0:
{
goto IL_032e;
}
case 1:
{
goto IL_032e;
}
case 2:
{
goto IL_032e;
}
case 3:
{
goto IL_032e;
}
case 4:
{
goto IL_032e;
}
case 5:
{
goto IL_032e;
}
case 6:
{
goto IL_01fd;
}
case 7:
{
goto IL_01fd;
}
case 8:
{
goto IL_032e;
}
case 9:
{
goto IL_032e;
}
case 10:
{
goto IL_013c;
}
}
}
{
int32_t L_7 = ___NodeType0;
switch (((int32_t)il2cpp_codegen_subtract(L_7, ((int32_t)152))))
{
case 0:
{
goto IL_01bb;
}
case 1:
{
goto IL_0156;
}
case 2:
{
goto IL_01e5;
}
case 3:
{
goto IL_01e5;
}
case 4:
{
goto IL_032e;
}
case 5:
{
goto IL_032e;
}
case 6:
{
goto IL_032e;
}
case 7:
{
goto IL_032e;
}
case 8:
{
goto IL_032e;
}
case 9:
{
goto IL_01bb;
}
case 10:
{
goto IL_0190;
}
}
}
{
goto IL_0312;
}
IL_013c:
{
int32_t L_8 = ___CurIndex2;
if (L_8)
{
goto IL_032e;
}
}
{
RegexFCD_SkipChild_m5ACE619BAC10DD5DFE755655DB6151E7DB0885FD(__this, NULL);
return;
}
IL_0149:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_9 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_9);
RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A(L_9, (bool)1, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_9, NULL);
return;
}
IL_0156:
{
int32_t L_10 = ___CurIndex2;
if (!L_10)
{
goto IL_0178;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_11;
L_11 = RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628(__this, NULL);
V_2 = L_11;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_12;
L_12 = RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD(__this, NULL);
V_3 = L_12;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_13 = V_3;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_14 = V_2;
NullCheck(L_13);
bool L_15;
L_15 = RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851(L_13, L_14, (bool)1, NULL);
__this->____failed_4 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
}
IL_0178:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_16;
L_16 = RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD(__this, NULL);
NullCheck(L_16);
bool L_17 = L_16->____nullable_1;
if (L_17)
{
goto IL_032e;
}
}
{
__this->____skipAllChildren_2 = (bool)1;
return;
}
IL_0190:
{
int32_t L_18 = ___CurIndex2;
if ((((int32_t)L_18) <= ((int32_t)1)))
{
goto IL_032e;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_19;
L_19 = RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628(__this, NULL);
V_4 = L_19;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_20;
L_20 = RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD(__this, NULL);
V_5 = L_20;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_21 = V_5;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_22 = V_4;
NullCheck(L_21);
bool L_23;
L_23 = RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851(L_21, L_22, (bool)0, NULL);
__this->____failed_4 = (bool)((((int32_t)L_23) == ((int32_t)0))? 1 : 0);
return;
}
IL_01bb:
{
int32_t L_24 = ___CurIndex2;
if (!L_24)
{
goto IL_032e;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_25;
L_25 = RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628(__this, NULL);
V_6 = L_25;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_26;
L_26 = RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD(__this, NULL);
V_7 = L_26;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_27 = V_7;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_28 = V_6;
NullCheck(L_27);
bool L_29;
L_29 = RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851(L_27, L_28, (bool)0, NULL);
__this->____failed_4 = (bool)((((int32_t)L_29) == ((int32_t)0))? 1 : 0);
return;
}
IL_01e5:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_30 = ___node1;
NullCheck(L_30);
int32_t L_31 = L_30->___M_4;
if (L_31)
{
goto IL_032e;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_32;
L_32 = RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD(__this, NULL);
NullCheck(L_32);
L_32->____nullable_1 = (bool)1;
return;
}
IL_01fd:
{
RegexFCD_SkipChild_m5ACE619BAC10DD5DFE755655DB6151E7DB0885FD(__this, NULL);
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_33 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_33);
RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A(L_33, (bool)1, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_33, NULL);
return;
}
IL_0210:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_34 = ___node1;
NullCheck(L_34);
Il2CppChar L_35 = L_34->___Ch_3;
int32_t L_36 = ___NodeType0;
bool L_37 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_38 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_38);
RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D(L_38, L_35, (bool)((((int32_t)L_36) == ((int32_t)((int32_t)10)))? 1 : 0), (bool)0, L_37, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_38, NULL);
return;
}
IL_0229:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_39 = ___node1;
NullCheck(L_39);
Il2CppChar L_40 = L_39->___Ch_3;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_41 = ___node1;
NullCheck(L_41);
int32_t L_42 = L_41->___M_4;
bool L_43 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_44 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_44);
RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D(L_44, L_40, (bool)0, (bool)((((int32_t)L_42) == ((int32_t)0))? 1 : 0), L_43, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_44, NULL);
return;
}
IL_0246:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_45 = ___node1;
NullCheck(L_45);
Il2CppChar L_46 = L_45->___Ch_3;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_47 = ___node1;
NullCheck(L_47);
int32_t L_48 = L_47->___M_4;
bool L_49 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_50 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_50);
RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D(L_50, L_46, (bool)1, (bool)((((int32_t)L_48) == ((int32_t)0))? 1 : 0), L_49, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_50, NULL);
return;
}
IL_0263:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_51 = ___node1;
NullCheck(L_51);
String_t* L_52 = L_51->___Str_2;
NullCheck(L_52);
int32_t L_53;
L_53 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_52, NULL);
if (L_53)
{
goto IL_027d;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_54 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_54);
RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A(L_54, (bool)1, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_54, NULL);
return;
}
IL_027d:
{
bool L_55 = V_1;
if (L_55)
{
goto IL_029b;
}
}
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_56 = ___node1;
NullCheck(L_56);
String_t* L_57 = L_56->___Str_2;
NullCheck(L_57);
Il2CppChar L_58;
L_58 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_57, 0, NULL);
bool L_59 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_60 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_60);
RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D(L_60, L_58, (bool)0, (bool)0, L_59, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_60, NULL);
return;
}
IL_029b:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_61 = ___node1;
NullCheck(L_61);
String_t* L_62 = L_61->___Str_2;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_63 = ___node1;
NullCheck(L_63);
String_t* L_64 = L_63->___Str_2;
NullCheck(L_64);
int32_t L_65;
L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
NullCheck(L_62);
Il2CppChar L_66;
L_66 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_62, ((int32_t)il2cpp_codegen_subtract(L_65, 1)), NULL);
bool L_67 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_68 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_68);
RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D(L_68, L_66, (bool)0, (bool)0, L_67, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_68, NULL);
return;
}
IL_02c2:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_69 = ___node1;
NullCheck(L_69);
String_t* L_70 = L_69->___Str_2;
bool L_71 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_72 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_72);
RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5(L_72, L_70, (bool)0, L_71, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_72, NULL);
return;
}
IL_02d6:
{
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_73 = ___node1;
NullCheck(L_73);
String_t* L_74 = L_73->___Str_2;
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_75 = ___node1;
NullCheck(L_75);
int32_t L_76 = L_75->___M_4;
bool L_77 = V_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_78 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_78);
RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5(L_78, L_74, (bool)((((int32_t)L_76) == ((int32_t)0))? 1 : 0), L_77, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_78, NULL);
return;
}
IL_02f2:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_79 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_79);
RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5(L_79, _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE, (bool)1, (bool)0, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_79, NULL);
return;
}
IL_0305:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_80 = (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4*)il2cpp_codegen_object_new(RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4_il2cpp_TypeInfo_var);
NullCheck(L_80);
RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A(L_80, (bool)1, NULL);
RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675(__this, L_80, NULL);
return;
}
IL_0312:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_81;
L_81 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
String_t* L_82;
L_82 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___NodeType0), L_81, NULL);
String_t* L_83;
L_83 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284)), L_82, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_84 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_84);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_84, L_83, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91_RuntimeMethod_var)));
}
IL_032e:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, bool ___nullable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_0 = (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)il2cpp_codegen_object_new(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
NullCheck(L_0);
RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E(L_0, NULL);
__this->____cc_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____cc_0), (void*)L_0);
bool L_1 = ___nullable0;
__this->____nullable_1 = L_1;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Char,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, Il2CppChar ___ch0, bool ___not1, bool ___nullable2, bool ___caseInsensitive3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_0 = (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)il2cpp_codegen_object_new(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
NullCheck(L_0);
RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E(L_0, NULL);
__this->____cc_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____cc_0), (void*)L_0);
bool L_1 = ___not1;
if (!L_1)
{
goto IL_0046;
}
}
{
Il2CppChar L_2 = ___ch0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_0028;
}
}
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_3 = __this->____cc_0;
Il2CppChar L_4 = ___ch0;
NullCheck(L_3);
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(L_3, 0, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, 1))), NULL);
}
IL_0028:
{
Il2CppChar L_5 = ___ch0;
if ((((int32_t)L_5) >= ((int32_t)((int32_t)65535))))
{
goto IL_0053;
}
}
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_6 = __this->____cc_0;
Il2CppChar L_7 = ___ch0;
NullCheck(L_6);
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(L_6, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, 1))), ((int32_t)65535), NULL);
goto IL_0053;
}
IL_0046:
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_8 = __this->____cc_0;
Il2CppChar L_9 = ___ch0;
Il2CppChar L_10 = ___ch0;
NullCheck(L_8);
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(L_8, L_9, L_10, NULL);
}
IL_0053:
{
bool L_11 = ___caseInsensitive3;
RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B_inline(__this, L_11, NULL);
bool L_12 = ___nullable2;
__this->____nullable_1 = L_12;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, String_t* ___charClass0, bool ___nullable1, bool ___caseInsensitive2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___charClass0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_1;
L_1 = RegexCharClass_Parse_m4766E7E53BF572FD9815DEEBD9831380C33C796A(L_0, NULL);
__this->____cc_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____cc_0), (void*)L_1);
bool L_2 = ___nullable1;
__this->____nullable_1 = L_2;
bool L_3 = ___caseInsensitive2;
RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B_inline(__this, L_3, NULL);
return;
}
}
// System.Boolean System.Text.RegularExpressions.RegexFC::AddFC(System.Text.RegularExpressions.RegexFC,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* ___fc0, bool ___concatenate1, const RuntimeMethod* method)
{
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_0 = __this->____cc_0;
NullCheck(L_0);
bool L_1;
L_1 = RegexCharClass_get_CanMerge_mC093FE4BE7C1933BA9F146CF2A33CD729A965172(L_0, NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_2 = ___fc0;
NullCheck(L_2);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_3 = L_2->____cc_0;
NullCheck(L_3);
bool L_4;
L_4 = RegexCharClass_get_CanMerge_mC093FE4BE7C1933BA9F146CF2A33CD729A965172(L_3, NULL);
if (L_4)
{
goto IL_001c;
}
}
IL_001a:
{
return (bool)0;
}
IL_001c:
{
bool L_5 = ___concatenate1;
if (!L_5)
{
goto IL_003a;
}
}
{
bool L_6 = __this->____nullable_1;
if (L_6)
{
goto IL_0029;
}
}
{
return (bool)1;
}
IL_0029:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_7 = ___fc0;
NullCheck(L_7);
bool L_8 = L_7->____nullable_1;
if (L_8)
{
goto IL_0049;
}
}
{
__this->____nullable_1 = (bool)0;
goto IL_0049;
}
IL_003a:
{
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_9 = ___fc0;
NullCheck(L_9);
bool L_10 = L_9->____nullable_1;
if (!L_10)
{
goto IL_0049;
}
}
{
__this->____nullable_1 = (bool)1;
}
IL_0049:
{
bool L_11;
L_11 = RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102_inline(__this, NULL);
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_12 = ___fc0;
NullCheck(L_12);
bool L_13;
L_13 = RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102_inline(L_12, NULL);
RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B_inline(__this, (bool)((int32_t)((int32_t)L_11|(int32_t)L_13)), NULL);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_14 = __this->____cc_0;
RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* L_15 = ___fc0;
NullCheck(L_15);
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_16 = L_15->____cc_0;
NullCheck(L_14);
RegexCharClass_AddCharClass_mDE8C70A6A99B2223DE4EA36A4753A13B5EEDE7BB(L_14, L_16, NULL);
return (bool)1;
}
}
// System.Boolean System.Text.RegularExpressions.RegexFC::get_CaseInsensitive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CCaseInsensitiveU3Ek__BackingField_2;
return L_0;
}
}
// System.Void System.Text.RegularExpressions.RegexFC::set_CaseInsensitive(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CCaseInsensitiveU3Ek__BackingField_2 = L_0;
return;
}
}
// System.String System.Text.RegularExpressions.RegexFC::GetFirstChars(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexFC_GetFirstChars_m6BAC398ABDCA5AF58CBE678143C9792611A2A3E8 (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102_inline(__this, NULL);
if (!L_0)
{
goto IL_0014;
}
}
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_1 = __this->____cc_0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___culture0;
NullCheck(L_1);
RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE(L_1, L_2, NULL);
}
IL_0014:
{
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_3 = __this->____cc_0;
NullCheck(L_3);
String_t* L_4;
L_4 = RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57(L_3, NULL);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Text.RegularExpressions.RegexInterpreter::.ctor(System.Text.RegularExpressions.RegexCode,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter__ctor_mB81896A8292574F7532CF707F74A1AC1DECEA9FF (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ___code0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, const RuntimeMethod* method)
{
{
RegexRunner__ctor_mBC777F351AD6D1CDD5F20C408B936F7D0F36ED69(__this, NULL);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_0 = ___code0;
__this->____code_19 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____code_19), (void*)L_0);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1 = ___culture1;
__this->____culture_20 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____culture_20), (void*)L_1);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::InitTrackCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_InitTrackCount_mFFFBE9294C6FCB854D4502362473C40A5ABBBFC4 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_0 = __this->____code_19;
NullCheck(L_0);
int32_t L_1 = L_0->___TrackCount_50;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackcount_11 = L_1;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Advance(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Advance_m31E2455F84B61536DE535BE51D4D0B42DC33857B (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____codepos_22;
int32_t L_1 = ___i0;
__this->____codepos_22 = ((int32_t)il2cpp_codegen_add(L_0, ((int32_t)il2cpp_codegen_add(L_1, 1))));
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_2 = __this->____code_19;
NullCheck(L_2);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2->___Codes_48;
int32_t L_4 = __this->____codepos_22;
NullCheck(L_3);
int32_t L_5 = L_4;
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC(__this, L_6, NULL);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Goto(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___newpos0;
int32_t L_1 = __this->____codepos_22;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_000f;
}
}
{
RegexRunner_EnsureStorage_mB3DB043396771740A05B2AABC293DAAB1250B024(__this, NULL);
}
IL_000f:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_2 = __this->____code_19;
NullCheck(L_2);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2->___Codes_48;
int32_t L_4 = ___newpos0;
NullCheck(L_3);
int32_t L_5 = L_4;
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC(__this, L_6, NULL);
int32_t L_7 = ___newpos0;
__this->____codepos_22 = L_7;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Textto(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___newpos0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_0;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Trackto(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Trackto_mDFDFF0401BC8F2B2D26AEC65B54B963F84A089AE (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
NullCheck(L_0);
int32_t L_1 = ___newpos0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1));
return;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textstart()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textstart_mDF185C6B3E245A2307A8B0B9F5FE5DF8C8C9936E (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextstart_2;
return L_0;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textpos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
return L_0;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Trackpos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Trackpos_m6BDE792A7333FADB2533591B88211FD77E8F0401 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
NullCheck(L_0);
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
return ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1));
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = __this->____codepos_22;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
int32_t L_7 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_7;
int32_t L_8 = V_0;
int32_t L_9 = __this->____codepos_22;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
int32_t L_7 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_7;
int32_t L_8 = V_0;
int32_t L_9 = ___I21;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_11 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
int32_t L_12 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_12;
int32_t L_13 = V_0;
int32_t L_14 = __this->____codepos_22;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m606F28BD60B479F0FD3073F8B5627836DB89230E (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, int32_t ___I32, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
int32_t L_7 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_7;
int32_t L_8 = V_0;
int32_t L_9 = ___I21;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_11 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
int32_t L_12 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_12;
int32_t L_13 = V_0;
int32_t L_14 = ___I32;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_16 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
int32_t L_17 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_17;
int32_t L_18 = V_0;
int32_t L_19 = __this->____codepos_22;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (int32_t)L_19);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
int32_t L_7 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_7;
int32_t L_8 = V_0;
int32_t L_9 = __this->____codepos_22;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)((-L_9)));
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m18FF10B704A6586A18D9AB21D28737DC32DA2797 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
int32_t L_7 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_7;
int32_t L_8 = V_0;
int32_t L_9 = ___I21;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_11 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
int32_t L_12 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = L_12;
int32_t L_13 = V_0;
int32_t L_14 = __this->____codepos_22;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)((-L_14)));
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Backtrack()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backtrack_m8D227FAE1EFD91174D43FF070D9200291941E593 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
V_1 = L_1;
int32_t L_2 = V_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_1;
NullCheck(L_0);
int32_t L_4 = L_3;
int32_t L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = L_5;
int32_t L_6 = V_0;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_003b;
}
}
{
int32_t L_7 = V_0;
V_0 = ((-L_7));
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_8 = __this->____code_19;
NullCheck(L_8);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8->___Codes_48;
int32_t L_10 = V_0;
NullCheck(L_9);
int32_t L_11 = L_10;
int32_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC(__this, ((int32_t)(L_12|((int32_t)256))), NULL);
goto IL_0054;
}
IL_003b:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_13 = __this->____code_19;
NullCheck(L_13);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = L_13->___Codes_48;
int32_t L_15 = V_0;
NullCheck(L_14);
int32_t L_16 = L_15;
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC(__this, ((int32_t)(L_17|((int32_t)128))), NULL);
}
IL_0054:
{
int32_t L_18 = V_0;
int32_t L_19 = __this->____codepos_22;
if ((((int32_t)L_18) >= ((int32_t)L_19)))
{
goto IL_0063;
}
}
{
RegexRunner_EnsureStorage_mB3DB043396771740A05B2AABC293DAAB1250B024(__this, NULL);
}
IL_0063:
{
int32_t L_20 = V_0;
__this->____codepos_22 = L_20;
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::SetOperator(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___op0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___op0;
__this->____caseInsensitive_24 = (bool)((!(((uint32_t)((int32_t)(L_0&((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0);
int32_t L_1 = ___op0;
__this->____rightToLeft_23 = (bool)((!(((uint32_t)((int32_t)(L_1&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
int32_t L_2 = ___op0;
__this->____operator_21 = ((int32_t)(L_2&((int32_t)-577)));
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = ((int32_t)il2cpp_codegen_add(L_0, 1));
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___framesize0, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
int32_t L_1 = ___framesize0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
return;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
NullCheck(L_0);
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrack_5;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtrackpos_6;
int32_t L_2 = ___i0;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
int32_t L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstack_7;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstack_7;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = ___I10;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstack_7;
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
int32_t L_7 = V_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8 = L_7;
int32_t L_8 = V_0;
int32_t L_9 = ___I21;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9);
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8 = ((int32_t)il2cpp_codegen_add(L_0, 1));
return;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___framesize0, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
int32_t L_1 = ___framesize0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
return;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstack_7;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
NullCheck(L_0);
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstack_7;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runstackpos_8;
int32_t L_2 = ___i0;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
int32_t L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operator_m3BD9AD7DCDA4E84DE4821DA786E1B1483E677B58 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____operator_21;
return L_0;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operand(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_0 = __this->____code_19;
NullCheck(L_0);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0->___Codes_48;
int32_t L_2 = __this->____codepos_22;
int32_t L_3 = ___i0;
NullCheck(L_1);
int32_t L_4 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_2, L_3)), 1));
int32_t L_5 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Leftchars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Leftchars_m6FD5AA399927D1767633B24AE234D596CBDD4002 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
return ((int32_t)il2cpp_codegen_subtract(L_0, L_1));
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Rightchars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
return ((int32_t)il2cpp_codegen_subtract(L_0, L_1));
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Bump()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____rightToLeft_23;
if (L_0)
{
goto IL_000a;
}
}
{
return 1;
}
IL_000a:
{
return (-1);
}
}
// System.Int32 System.Text.RegularExpressions.RegexInterpreter::Forwardchars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____rightToLeft_23;
if (L_0)
{
goto IL_0016;
}
}
{
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
int32_t L_2 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
return ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
}
IL_0016:
{
int32_t L_3 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_4 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
return ((int32_t)il2cpp_codegen_subtract(L_3, L_4));
}
}
// System.Char System.Text.RegularExpressions.RegexInterpreter::Forwardcharnext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
Il2CppChar V_0 = 0x0;
int32_t V_1 = 0;
Il2CppChar G_B3_0 = 0x0;
{
bool L_0 = __this->____rightToLeft_23;
if (L_0)
{
goto IL_0026;
}
}
{
String_t* L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_2 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
V_1 = L_2;
int32_t L_3 = V_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = ((int32_t)il2cpp_codegen_add(L_3, 1));
int32_t L_4 = V_1;
NullCheck(L_1);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_4, NULL);
G_B3_0 = L_5;
goto IL_0042;
}
IL_0026:
{
String_t* L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_7 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
int32_t L_8 = V_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_8;
int32_t L_9 = V_1;
NullCheck(L_6);
Il2CppChar L_10;
L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_9, NULL);
G_B3_0 = L_10;
}
IL_0042:
{
V_0 = G_B3_0;
bool L_11 = __this->____caseInsensitive_24;
if (L_11)
{
goto IL_004d;
}
}
{
Il2CppChar L_12 = V_0;
return L_12;
}
IL_004d:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13 = __this->____culture_20;
NullCheck(L_13);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_14;
L_14 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_13);
Il2CppChar L_15 = V_0;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_14, L_15);
return L_16;
}
}
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::Stringmatch(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Stringmatch_m89AE288DB294AC0146C7772193CAD3B702849E54 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, String_t* ___str0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
bool L_0 = __this->____rightToLeft_23;
if (L_0)
{
goto IL_002c;
}
}
{
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
int32_t L_2 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
String_t* L_3 = ___str0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5 = L_4;
V_0 = L_5;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, L_2))) >= ((int32_t)L_5)))
{
goto IL_0021;
}
}
{
return (bool)0;
}
IL_0021:
{
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_7 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
goto IL_004c;
}
IL_002c:
{
int32_t L_8 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_9 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
String_t* L_10 = ___str0;
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
int32_t L_12 = L_11;
V_0 = L_12;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9))) >= ((int32_t)L_12)))
{
goto IL_0045;
}
}
{
return (bool)0;
}
IL_0045:
{
int32_t L_13 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
V_1 = L_13;
}
IL_004c:
{
bool L_14 = __this->____caseInsensitive_24;
if (L_14)
{
goto IL_00a9;
}
}
{
goto IL_0075;
}
IL_0056:
{
String_t* L_15 = ___str0;
int32_t L_16 = V_0;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
V_0 = L_17;
NullCheck(L_15);
Il2CppChar L_18;
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_15, L_17, NULL);
String_t* L_19 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_20 = V_1;
int32_t L_21 = ((int32_t)il2cpp_codegen_subtract(L_20, 1));
V_1 = L_21;
NullCheck(L_19);
Il2CppChar L_22;
L_22 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_19, L_21, NULL);
if ((((int32_t)L_18) == ((int32_t)L_22)))
{
goto IL_0075;
}
}
{
return (bool)0;
}
IL_0075:
{
int32_t L_23 = V_0;
if (L_23)
{
goto IL_0056;
}
}
{
goto IL_00ac;
}
IL_007a:
{
String_t* L_24 = ___str0;
int32_t L_25 = V_0;
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract(L_25, 1));
V_0 = L_26;
NullCheck(L_24);
Il2CppChar L_27;
L_27 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_24, L_26, NULL);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_28 = __this->____culture_20;
NullCheck(L_28);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_29;
L_29 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_28);
String_t* L_30 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_31 = V_1;
int32_t L_32 = ((int32_t)il2cpp_codegen_subtract(L_31, 1));
V_1 = L_32;
NullCheck(L_30);
Il2CppChar L_33;
L_33 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_30, L_32, NULL);
NullCheck(L_29);
Il2CppChar L_34;
L_34 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_29, L_33);
if ((((int32_t)L_27) == ((int32_t)L_34)))
{
goto IL_00a9;
}
}
{
return (bool)0;
}
IL_00a9:
{
int32_t L_35 = V_0;
if (L_35)
{
goto IL_007a;
}
}
IL_00ac:
{
bool L_36 = __this->____rightToLeft_23;
if (L_36)
{
goto IL_00bd;
}
}
{
int32_t L_37 = V_1;
String_t* L_38 = ___str0;
NullCheck(L_38);
int32_t L_39;
L_39 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_38, NULL);
V_1 = ((int32_t)il2cpp_codegen_add(L_37, L_39));
}
IL_00bd:
{
int32_t L_40 = V_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_40;
return (bool)1;
}
}
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::Refmatch(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Refmatch_m457B37C3E3B0671E7E89B7F6C16396D36EB32F68 (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___index0, int32_t ___len1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
bool L_0 = __this->____rightToLeft_23;
if (L_0)
{
goto IL_0025;
}
}
{
int32_t L_1 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
int32_t L_2 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_3 = ___len1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, L_2))) >= ((int32_t)L_3)))
{
goto IL_001a;
}
}
{
return (bool)0;
}
IL_001a:
{
int32_t L_4 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_5 = ___len1;
V_1 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
goto IL_003e;
}
IL_0025:
{
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_7 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_8 = ___len1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_6, L_7))) >= ((int32_t)L_8)))
{
goto IL_0037;
}
}
{
return (bool)0;
}
IL_0037:
{
int32_t L_9 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
V_1 = L_9;
}
IL_003e:
{
int32_t L_10 = ___index0;
int32_t L_11 = ___len1;
V_2 = ((int32_t)il2cpp_codegen_add(L_10, L_11));
int32_t L_12 = ___len1;
V_0 = L_12;
bool L_13 = __this->____caseInsensitive_24;
if (L_13)
{
goto IL_00bf;
}
}
{
goto IL_0072;
}
IL_004e:
{
String_t* L_14 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_15 = V_2;
int32_t L_16 = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
V_2 = L_16;
NullCheck(L_14);
Il2CppChar L_17;
L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_16, NULL);
String_t* L_18 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_19 = V_1;
int32_t L_20 = ((int32_t)il2cpp_codegen_subtract(L_19, 1));
V_1 = L_20;
NullCheck(L_18);
Il2CppChar L_21;
L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, L_20, NULL);
if ((((int32_t)L_17) == ((int32_t)L_21)))
{
goto IL_0072;
}
}
{
return (bool)0;
}
IL_0072:
{
int32_t L_22 = V_0;
int32_t L_23 = L_22;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_23, 1));
if (L_23)
{
goto IL_004e;
}
}
{
goto IL_00c6;
}
IL_007b:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_24 = __this->____culture_20;
NullCheck(L_24);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_25;
L_25 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_24);
String_t* L_26 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_27 = V_2;
int32_t L_28 = ((int32_t)il2cpp_codegen_subtract(L_27, 1));
V_2 = L_28;
NullCheck(L_26);
Il2CppChar L_29;
L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_26, L_28, NULL);
NullCheck(L_25);
Il2CppChar L_30;
L_30 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_25, L_29);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_31 = __this->____culture_20;
NullCheck(L_31);
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_32;
L_32 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_31);
String_t* L_33 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_34 = V_1;
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract(L_34, 1));
V_1 = L_35;
NullCheck(L_33);
Il2CppChar L_36;
L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_33, L_35, NULL);
NullCheck(L_32);
Il2CppChar L_37;
L_37 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_32, L_36);
if ((((int32_t)L_30) == ((int32_t)L_37)))
{
goto IL_00bf;
}
}
{
return (bool)0;
}
IL_00bf:
{
int32_t L_38 = V_0;
int32_t L_39 = L_38;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_39, 1));
if (L_39)
{
goto IL_007b;
}
}
IL_00c6:
{
bool L_40 = __this->____rightToLeft_23;
if (L_40)
{
goto IL_00d2;
}
}
{
int32_t L_41 = V_1;
int32_t L_42 = ___len1;
V_1 = ((int32_t)il2cpp_codegen_add(L_41, L_42));
}
IL_00d2:
{
int32_t L_43 = V_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_43;
return (bool)1;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Backwardnext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
int32_t G_B2_0 = 0;
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* G_B2_1 = NULL;
int32_t G_B1_0 = 0;
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* G_B3_2 = NULL;
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
bool L_1 = __this->____rightToLeft_23;
G_B1_0 = L_0;
G_B1_1 = __this;
if (L_1)
{
G_B2_0 = L_0;
G_B2_1 = __this;
goto IL_0012;
}
}
{
G_B3_0 = (-1);
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0013:
{
NullCheck(G_B3_2);
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)G_B3_2)->___runtextpos_4 = ((int32_t)il2cpp_codegen_add(G_B3_1, G_B3_0));
return;
}
}
// System.Char System.Text.RegularExpressions.RegexInterpreter::CharAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___j0, const RuntimeMethod* method)
{
{
String_t* L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_1 = ___j0;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
return L_2;
}
}
// System.Boolean System.Text.RegularExpressions.RegexInterpreter::FindFirstChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_FindFirstChar_m87D986F0502AEEFC4F13EBD0EAD891C495C4845F (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 V_1;
memset((&V_1), 0, sizeof(V_1));
Il2CppChar V_2 = 0x0;
int32_t V_3 = 0;
int32_t V_4 = 0;
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* G_B32_0 = NULL;
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* G_B31_0 = NULL;
int32_t G_B33_0 = 0;
RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* G_B33_1 = NULL;
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_0 = __this->____code_19;
NullCheck(L_0);
int32_t L_1 = L_0->___Anchors_55;
if (!((int32_t)(L_1&((int32_t)53))))
{
goto IL_01bd;
}
}
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_2 = __this->____code_19;
NullCheck(L_2);
bool L_3 = L_2->___RightToLeft_56;
if (L_3)
{
goto IL_00d3;
}
}
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_4 = __this->____code_19;
NullCheck(L_4);
int32_t L_5 = L_4->___Anchors_55;
if (!((int32_t)(L_5&1)))
{
goto IL_0040;
}
}
{
int32_t L_6 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_7 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
if ((((int32_t)L_6) > ((int32_t)L_7)))
{
goto IL_005d;
}
}
IL_0040:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_8 = __this->____code_19;
NullCheck(L_8);
int32_t L_9 = L_8->___Anchors_55;
if (!((int32_t)(L_9&4)))
{
goto IL_006b;
}
}
{
int32_t L_10 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_11 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextstart_2;
if ((((int32_t)L_10) <= ((int32_t)L_11)))
{
goto IL_006b;
}
}
IL_005d:
{
int32_t L_12 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_12;
return (bool)0;
}
IL_006b:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_13 = __this->____code_19;
NullCheck(L_13);
int32_t L_14 = L_13->___Anchors_55;
if (!((int32_t)(L_14&((int32_t)16))))
{
goto IL_009e;
}
}
{
int32_t L_15 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_16 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
if ((((int32_t)L_15) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_16, 1)))))
{
goto IL_009e;
}
}
{
int32_t L_17 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
goto IL_0185;
}
IL_009e:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_18 = __this->____code_19;
NullCheck(L_18);
int32_t L_19 = L_18->___Anchors_55;
if (!((int32_t)(L_19&((int32_t)32))))
{
goto IL_0185;
}
}
{
int32_t L_20 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_21 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
if ((((int32_t)L_20) >= ((int32_t)L_21)))
{
goto IL_0185;
}
}
{
int32_t L_22 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_22;
goto IL_0185;
}
IL_00d3:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_23 = __this->____code_19;
NullCheck(L_23);
int32_t L_24 = L_23->___Anchors_55;
if (!((int32_t)(L_24&((int32_t)32))))
{
goto IL_00f1;
}
}
{
int32_t L_25 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_26 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_014e;
}
}
IL_00f1:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_27 = __this->____code_19;
NullCheck(L_27);
int32_t L_28 = L_27->___Anchors_55;
if (!((int32_t)(L_28&((int32_t)16))))
{
goto IL_0131;
}
}
{
int32_t L_29 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_30 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
if ((((int32_t)L_29) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_30, 1)))))
{
goto IL_014e;
}
}
{
int32_t L_31 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_32 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_32, 1))))))
{
goto IL_0131;
}
}
{
int32_t L_33 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
Il2CppChar L_34;
L_34 = RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C(__this, L_33, NULL);
if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)10)))))
{
goto IL_014e;
}
}
IL_0131:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_35 = __this->____code_19;
NullCheck(L_35);
int32_t L_36 = L_35->___Anchors_55;
if (!((int32_t)(L_36&4)))
{
goto IL_015c;
}
}
{
int32_t L_37 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_38 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextstart_2;
if ((((int32_t)L_37) >= ((int32_t)L_38)))
{
goto IL_015c;
}
}
IL_014e:
{
int32_t L_39 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_39;
return (bool)0;
}
IL_015c:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_40 = __this->____code_19;
NullCheck(L_40);
int32_t L_41 = L_40->___Anchors_55;
if (!((int32_t)(L_41&1)))
{
goto IL_0185;
}
}
{
int32_t L_42 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_43 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
if ((((int32_t)L_42) <= ((int32_t)L_43)))
{
goto IL_0185;
}
}
{
int32_t L_44 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_44;
}
IL_0185:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_45 = __this->____code_19;
NullCheck(L_45);
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_46 = L_45->___BMPrefix_54;
if (!L_46)
{
goto IL_01bb;
}
}
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_47 = __this->____code_19;
NullCheck(L_47);
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_48 = L_47->___BMPrefix_54;
String_t* L_49 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_50 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_51 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_52 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
NullCheck(L_48);
bool L_53;
L_53 = RegexBoyerMoore_IsMatch_mC09692237823CC6C74D4F5D8900D82CEC840FB47(L_48, L_49, L_50, L_51, L_52, NULL);
return L_53;
}
IL_01bb:
{
return (bool)1;
}
IL_01bd:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_54 = __this->____code_19;
NullCheck(L_54);
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_55 = L_54->___BMPrefix_54;
if (!L_55)
{
goto IL_0226;
}
}
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_56 = __this->____code_19;
NullCheck(L_56);
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_57 = L_56->___BMPrefix_54;
String_t* L_58 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtext_3;
int32_t L_59 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
int32_t L_60 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_61 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
NullCheck(L_57);
int32_t L_62;
L_62 = RegexBoyerMoore_Scan_m86EB5A209D33DA3F4C7335F8FE133238666FA57B(L_57, L_58, L_59, L_60, L_61, NULL);
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_62;
int32_t L_63 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
if ((!(((uint32_t)L_63) == ((uint32_t)(-1)))))
{
goto IL_0224;
}
}
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_64 = __this->____code_19;
NullCheck(L_64);
bool L_65 = L_64->___RightToLeft_56;
G_B31_0 = __this;
if (L_65)
{
G_B32_0 = __this;
goto IL_0217;
}
}
{
int32_t L_66 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
G_B33_0 = L_66;
G_B33_1 = G_B31_0;
goto IL_021d;
}
IL_0217:
{
int32_t L_67 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
G_B33_0 = L_67;
G_B33_1 = G_B32_0;
}
IL_021d:
{
NullCheck(G_B33_1);
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)G_B33_1)->___runtextpos_4 = G_B33_0;
return (bool)0;
}
IL_0224:
{
return (bool)1;
}
IL_0226:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_68 = __this->____code_19;
NullCheck(L_68);
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* L_69 = (&L_68->___FCPrefix_53);
bool L_70;
L_70 = Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_inline(L_69, Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_RuntimeMethod_var);
if (L_70)
{
goto IL_023a;
}
}
{
return (bool)1;
}
IL_023a:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_71 = __this->____code_19;
NullCheck(L_71);
bool L_72 = L_71->___RightToLeft_56;
__this->____rightToLeft_23 = L_72;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_73 = __this->____code_19;
NullCheck(L_73);
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* L_74 = (&L_73->___FCPrefix_53);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_75;
L_75 = Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_inline(L_74, Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_RuntimeMethod_var);
V_1 = L_75;
bool L_76;
L_76 = RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline((&V_1), NULL);
__this->____caseInsensitive_24 = L_76;
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_77 = __this->____code_19;
NullCheck(L_77);
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* L_78 = (&L_77->___FCPrefix_53);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_79;
L_79 = Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_inline(L_78, Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_RuntimeMethod_var);
V_1 = L_79;
String_t* L_80;
L_80 = RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline((&V_1), NULL);
V_0 = L_80;
String_t* L_81 = V_0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_82;
L_82 = RegexCharClass_IsSingleton_mF23CB7003B555ADB4C5035A1B3A218A8ED847D12(L_81, NULL);
if (!L_82)
{
goto IL_02b5;
}
}
{
String_t* L_83 = V_0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
Il2CppChar L_84;
L_84 = RegexCharClass_SingletonChar_m11683F48B3AA3E0B5CD5849C40ADDCECC91BFF10(L_83, NULL);
V_2 = L_84;
int32_t L_85;
L_85 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_3 = L_85;
goto IL_02af;
}
IL_029a:
{
Il2CppChar L_86 = V_2;
Il2CppChar L_87;
L_87 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
if ((!(((uint32_t)L_86) == ((uint32_t)L_87))))
{
goto IL_02ab;
}
}
{
RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF(__this, NULL);
return (bool)1;
}
IL_02ab:
{
int32_t L_88 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_88, 1));
}
IL_02af:
{
int32_t L_89 = V_3;
if ((((int32_t)L_89) > ((int32_t)0)))
{
goto IL_029a;
}
}
{
goto IL_02e0;
}
IL_02b5:
{
int32_t L_90;
L_90 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_4 = L_90;
goto IL_02db;
}
IL_02bf:
{
Il2CppChar L_91;
L_91 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
String_t* L_92 = V_0;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_93;
L_93 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_91, L_92, NULL);
if (!L_93)
{
goto IL_02d5;
}
}
{
RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF(__this, NULL);
return (bool)1;
}
IL_02d5:
{
int32_t L_94 = V_4;
V_4 = ((int32_t)il2cpp_codegen_subtract(L_94, 1));
}
IL_02db:
{
int32_t L_95 = V_4;
if ((((int32_t)L_95) > ((int32_t)0)))
{
goto IL_02bf;
}
}
IL_02e0:
{
return (bool)0;
}
}
// System.Void System.Text.RegularExpressions.RegexInterpreter::Go()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Go_m1CF26F8D95231F3B2235EA98AFB286C3F1629BED (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
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;
Il2CppChar V_13 = 0x0;
int32_t V_14 = 0;
Il2CppChar V_15 = 0x0;
int32_t V_16 = 0;
String_t* V_17 = NULL;
int32_t V_18 = 0;
Il2CppChar V_19 = 0x0;
int32_t V_20 = 0;
int32_t V_21 = 0;
Il2CppChar V_22 = 0x0;
int32_t V_23 = 0;
int32_t V_24 = 0;
String_t* V_25 = NULL;
int32_t V_26 = 0;
int32_t V_27 = 0;
int32_t V_28 = 0;
int32_t V_29 = 0;
int32_t V_30 = 0;
int32_t V_31 = 0;
int32_t V_32 = 0;
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 V_38 = 0;
{
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, 0, NULL);
V_0 = (-1);
}
IL_0009:
{
int32_t L_0 = V_0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_1 = V_0;
RegexInterpreter_Advance_m31E2455F84B61536DE535BE51D4D0B42DC33857B(__this, L_1, NULL);
V_0 = (-1);
}
IL_0016:
{
RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120(__this, NULL);
int32_t L_2;
L_2 = RegexInterpreter_Operator_m3BD9AD7DCDA4E84DE4821DA786E1B1483E677B58_inline(__this, NULL);
V_1 = L_2;
int32_t L_3 = V_1;
switch (L_3)
{
case 0:
{
goto IL_0981;
}
case 1:
{
goto IL_09c1;
}
case 2:
{
goto IL_0a01;
}
case 3:
{
goto IL_0a51;
}
case 4:
{
goto IL_0ac0;
}
case 5:
{
goto IL_0b2f;
}
case 6:
{
goto IL_0c2c;
}
case 7:
{
goto IL_0c2c;
}
case 8:
{
goto IL_0c63;
}
case 9:
{
goto IL_088d;
}
case 10:
{
goto IL_08b3;
}
case 11:
{
goto IL_08d9;
}
case 12:
{
goto IL_090f;
}
case 13:
{
goto IL_0934;
}
case 14:
{
goto IL_0748;
}
case 15:
{
goto IL_076d;
}
case 16:
{
goto IL_0790;
}
case 17:
{
goto IL_07b4;
}
case 18:
{
goto IL_0820;
}
case 19:
{
goto IL_0833;
}
case 20:
{
goto IL_084b;
}
case 21:
{
goto IL_087a;
}
case 22:
{
goto IL_0da8;
}
case 23:
{
goto IL_01be;
}
case 24:
{
goto IL_0320;
}
case 25:
{
goto IL_03bc;
}
case 26:
{
goto IL_048b;
}
case 27:
{
goto IL_046b;
}
case 28:
{
goto IL_04be;
}
case 29:
{
goto IL_05a8;
}
case 30:
{
goto IL_020e;
}
case 31:
{
goto IL_01f5;
}
case 32:
{
goto IL_0269;
}
case 33:
{
goto IL_022d;
}
case 34:
{
goto IL_06a6;
}
case 35:
{
goto IL_06d1;
}
case 36:
{
goto IL_0700;
}
case 37:
{
goto IL_01a5;
}
case 38:
{
goto IL_0193;
}
case 39:
{
goto IL_0d9d;
}
case 40:
{
goto IL_0192;
}
case 41:
{
goto IL_07d8;
}
case 42:
{
goto IL_07fc;
}
}
}
{
int32_t L_4 = V_1;
switch (((int32_t)il2cpp_codegen_subtract(L_4, ((int32_t)131))))
{
case 0:
{
goto IL_0bae;
}
case 1:
{
goto IL_0bae;
}
case 2:
{
goto IL_0bed;
}
case 3:
{
goto IL_0c9a;
}
case 4:
{
goto IL_0cec;
}
case 5:
{
goto IL_0d3e;
}
case 6:
{
goto IL_0d9d;
}
case 7:
{
goto IL_0d9d;
}
case 8:
{
goto IL_0d9d;
}
case 9:
{
goto IL_0d9d;
}
case 10:
{
goto IL_0d9d;
}
case 11:
{
goto IL_0d9d;
}
case 12:
{
goto IL_0d9d;
}
case 13:
{
goto IL_0d9d;
}
case 14:
{
goto IL_0d9d;
}
case 15:
{
goto IL_0d9d;
}
case 16:
{
goto IL_0d9d;
}
case 17:
{
goto IL_0d9d;
}
case 18:
{
goto IL_0d9d;
}
case 19:
{
goto IL_0d9d;
}
case 20:
{
goto IL_01d1;
}
case 21:
{
goto IL_0378;
}
case 22:
{
goto IL_0413;
}
case 23:
{
goto IL_04b2;
}
case 24:
{
goto IL_04a6;
}
case 25:
{
goto IL_0530;
}
case 26:
{
goto IL_0606;
}
case 27:
{
goto IL_0222;
}
case 28:
{
goto IL_0222;
}
case 29:
{
goto IL_02e3;
}
case 30:
{
goto IL_0252;
}
case 31:
{
goto IL_06c5;
}
case 32:
{
goto IL_0d9d;
}
case 33:
{
goto IL_0727;
}
}
}
{
int32_t L_5 = V_1;
switch (((int32_t)il2cpp_codegen_subtract(L_5, ((int32_t)280))))
{
case 0:
{
goto IL_03a5;
}
case 1:
{
goto IL_044e;
}
case 2:
{
goto IL_0d9d;
}
case 3:
{
goto IL_0d9d;
}
case 4:
{
goto IL_0589;
}
case 5:
{
goto IL_067f;
}
}
}
{
goto IL_0d9d;
}
IL_0192:
{
return;
}
IL_0193:
{
int32_t L_6;
L_6 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_6, NULL);
goto IL_0009;
}
IL_01a5:
{
int32_t L_7;
L_7 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
bool L_8;
L_8 = RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C(__this, L_7, NULL);
if (!L_8)
{
goto IL_0da8;
}
}
{
V_0 = 1;
goto IL_0009;
}
IL_01be:
{
int32_t L_9;
L_9 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D(__this, L_9, NULL);
V_0 = 1;
goto IL_0009;
}
IL_01d1:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
int32_t L_10;
L_10 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_10, NULL);
int32_t L_11;
L_11 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_11, NULL);
goto IL_0009;
}
IL_01f5:
{
int32_t L_12;
L_12 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_12, NULL);
RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93(__this, NULL);
V_0 = 0;
goto IL_0009;
}
IL_020e:
{
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, (-1), NULL);
RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93(__this, NULL);
V_0 = 0;
goto IL_0009;
}
IL_0222:
{
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
goto IL_0da8;
}
IL_022d:
{
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
int32_t L_13;
L_13 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D(__this, L_13, NULL);
int32_t L_14;
L_14 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_14, NULL);
V_0 = 0;
goto IL_0009;
}
IL_0252:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
int32_t L_15;
L_15 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_15, NULL);
goto IL_0da8;
}
IL_0269:
{
int32_t L_16;
L_16 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
if ((((int32_t)L_16) == ((int32_t)(-1))))
{
goto IL_0285;
}
}
{
int32_t L_17;
L_17 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
bool L_18;
L_18 = RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C(__this, L_17, NULL);
if (!L_18)
{
goto IL_0da8;
}
}
IL_0285:
{
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
int32_t L_19;
L_19 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
if ((((int32_t)L_19) == ((int32_t)(-1))))
{
goto IL_02b7;
}
}
{
int32_t L_20;
L_20 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
int32_t L_21;
L_21 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
int32_t L_22;
L_22 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
int32_t L_23;
L_23 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexRunner_TransferCapture_m642CC595E9FA641B913CCBE02E233DBB319A6E8A(__this, L_20, L_21, L_22, L_23, NULL);
goto IL_02d0;
}
IL_02b7:
{
int32_t L_24;
L_24 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
int32_t L_25;
L_25 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
int32_t L_26;
L_26 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexRunner_Capture_m3EB42B55A19BD7776156F04CBE9367C6EBA59F9C(__this, L_24, L_25, L_26, NULL);
}
IL_02d0:
{
int32_t L_27;
L_27 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D(__this, L_27, NULL);
V_0 = 2;
goto IL_0009;
}
IL_02e3:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
int32_t L_28;
L_28 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_28, NULL);
RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9(__this, NULL);
int32_t L_29;
L_29 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
if ((((int32_t)L_29) == ((int32_t)(-1))))
{
goto IL_0da8;
}
}
{
int32_t L_30;
L_30 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
if ((((int32_t)L_30) == ((int32_t)(-1))))
{
goto IL_0da8;
}
}
{
RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9(__this, NULL);
goto IL_0da8;
}
IL_0320:
{
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
int32_t L_31;
L_31 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_32;
L_32 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
if (!((int32_t)il2cpp_codegen_subtract(L_31, L_32)))
{
goto IL_0365;
}
}
{
int32_t L_33;
L_33 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
int32_t L_34;
L_34 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, L_33, L_34, NULL);
int32_t L_35;
L_35 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_35, NULL);
int32_t L_36;
L_36 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_36, NULL);
goto IL_0009;
}
IL_0365:
{
int32_t L_37;
L_37 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F(__this, L_37, NULL);
V_0 = 1;
goto IL_0009;
}
IL_0378:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
int32_t L_38;
L_38 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_38, NULL);
int32_t L_39;
L_39 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F(__this, L_39, NULL);
V_0 = 1;
goto IL_0009;
}
IL_03a5:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
int32_t L_40;
L_40 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_40, NULL);
goto IL_0da8;
}
IL_03bc:
{
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
int32_t L_41;
L_41 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
V_2 = L_41;
int32_t L_42;
L_42 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_43 = V_2;
if ((((int32_t)L_42) == ((int32_t)L_43)))
{
goto IL_03f9;
}
}
{
int32_t L_44 = V_2;
if ((((int32_t)L_44) == ((int32_t)(-1))))
{
goto IL_03e5;
}
}
{
int32_t L_45 = V_2;
int32_t L_46;
L_46 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, L_45, L_46, NULL);
goto IL_040c;
}
IL_03e5:
{
int32_t L_47;
L_47 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_48;
L_48 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, L_47, L_48, NULL);
goto IL_040c;
}
IL_03f9:
{
int32_t L_49 = V_2;
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_49, NULL);
int32_t L_50;
L_50 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F(__this, L_50, NULL);
}
IL_040c:
{
V_0 = 1;
goto IL_0009;
}
IL_0413:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_51;
L_51 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
V_3 = L_51;
int32_t L_52;
L_52 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F(__this, L_52, NULL);
int32_t L_53 = V_3;
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_53, NULL);
int32_t L_54 = V_3;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_54, NULL);
int32_t L_55;
L_55 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_55, NULL);
goto IL_0009;
}
IL_044e:
{
RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF(__this, NULL);
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
int32_t L_56;
L_56 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60(__this, L_56, NULL);
goto IL_0da8;
}
IL_046b:
{
int32_t L_57;
L_57 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_58;
L_58 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_57, L_58, NULL);
RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93(__this, NULL);
V_0 = 1;
goto IL_0009;
}
IL_048b:
{
int32_t L_59;
L_59 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, (-1), L_59, NULL);
RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93(__this, NULL);
V_0 = 1;
goto IL_0009;
}
IL_04a6:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
goto IL_0da8;
}
IL_04b2:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
goto IL_0da8;
}
IL_04be:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
int32_t L_60;
L_60 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
V_4 = L_60;
int32_t L_61;
L_61 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
V_5 = L_61;
int32_t L_62;
L_62 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_63 = V_4;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_62, L_63));
int32_t L_64 = V_5;
int32_t L_65;
L_65 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
if ((((int32_t)L_64) >= ((int32_t)L_65)))
{
goto IL_04f5;
}
}
{
int32_t L_66 = V_6;
if (L_66)
{
goto IL_0506;
}
}
{
int32_t L_67 = V_5;
if ((((int32_t)L_67) < ((int32_t)0)))
{
goto IL_0506;
}
}
IL_04f5:
{
int32_t L_68 = V_4;
int32_t L_69 = V_5;
RegexInterpreter_TrackPush2_m18FF10B704A6586A18D9AB21D28737DC32DA2797(__this, L_68, L_69, NULL);
V_0 = 2;
goto IL_0009;
}
IL_0506:
{
int32_t L_70 = V_4;
RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D(__this, L_70, NULL);
int32_t L_71;
L_71 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_72 = V_5;
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_71, ((int32_t)il2cpp_codegen_add(L_72, 1)), NULL);
int32_t L_73;
L_73 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_73, NULL);
goto IL_0009;
}
IL_0530:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
int32_t L_74;
L_74 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
if ((((int32_t)L_74) <= ((int32_t)0)))
{
goto IL_056f;
}
}
{
int32_t L_75;
L_75 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_75, NULL);
int32_t L_76;
L_76 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
int32_t L_77;
L_77 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
RegexInterpreter_TrackPush2_m18FF10B704A6586A18D9AB21D28737DC32DA2797(__this, L_76, ((int32_t)il2cpp_codegen_subtract(L_77, 1)), NULL);
V_0 = 2;
goto IL_0009;
}
IL_056f:
{
int32_t L_78;
L_78 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
int32_t L_79;
L_79 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_78, ((int32_t)il2cpp_codegen_subtract(L_79, 1)), NULL);
goto IL_0da8;
}
IL_0589:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_80;
L_80 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
int32_t L_81;
L_81 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_80, L_81, NULL);
goto IL_0da8;
}
IL_05a8:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
int32_t L_82;
L_82 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
V_7 = L_82;
int32_t L_83;
L_83 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
V_8 = L_83;
int32_t L_84 = V_8;
if ((((int32_t)L_84) >= ((int32_t)0)))
{
goto IL_05ef;
}
}
{
int32_t L_85 = V_7;
RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F(__this, L_85, NULL);
int32_t L_86;
L_86 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_87 = V_8;
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_86, ((int32_t)il2cpp_codegen_add(L_87, 1)), NULL);
int32_t L_88;
L_88 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_88, NULL);
goto IL_0009;
}
IL_05ef:
{
int32_t L_89 = V_7;
int32_t L_90 = V_8;
int32_t L_91;
L_91 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_m606F28BD60B479F0FD3073F8B5627836DB89230E(__this, L_89, L_90, L_91, NULL);
V_0 = 2;
goto IL_0009;
}
IL_0606:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 3, NULL);
int32_t L_92;
L_92 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
V_9 = L_92;
int32_t L_93;
L_93 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 2, NULL);
V_10 = L_93;
int32_t L_94;
L_94 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
int32_t L_95;
L_95 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
if ((((int32_t)L_94) >= ((int32_t)L_95)))
{
goto IL_0667;
}
}
{
int32_t L_96 = V_10;
int32_t L_97 = V_9;
if ((((int32_t)L_96) == ((int32_t)L_97)))
{
goto IL_0667;
}
}
{
int32_t L_98 = V_10;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_98, NULL);
int32_t L_99 = V_10;
int32_t L_100;
L_100 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_99, ((int32_t)il2cpp_codegen_add(L_100, 1)), NULL);
int32_t L_101 = V_9;
RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F(__this, L_101, NULL);
int32_t L_102;
L_102 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9(__this, L_102, NULL);
goto IL_0009;
}
IL_0667:
{
int32_t L_103;
L_103 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
int32_t L_104;
L_104 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_103, L_104, NULL);
goto IL_0da8;
}
IL_067f:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
int32_t L_105;
L_105 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
int32_t L_106;
L_106 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_105, ((int32_t)il2cpp_codegen_subtract(L_106, 1)), NULL);
goto IL_0da8;
}
IL_06a6:
{
int32_t L_107;
L_107 = RegexInterpreter_Trackpos_m6BDE792A7333FADB2533591B88211FD77E8F0401(__this, NULL);
int32_t L_108;
L_108 = RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532(__this, NULL);
RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F(__this, L_107, L_108, NULL);
RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93(__this, NULL);
V_0 = 0;
goto IL_0009;
}
IL_06c5:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
goto IL_0da8;
}
IL_06d1:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
int32_t L_109;
L_109 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_Trackto_mDFDFF0401BC8F2B2D26AEC65B54B963F84A089AE(__this, L_109, NULL);
goto IL_06ec;
}
IL_06e6:
{
RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9(__this, NULL);
}
IL_06ec:
{
int32_t L_110;
L_110 = RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532(__this, NULL);
int32_t L_111;
L_111 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
if ((!(((uint32_t)L_110) == ((uint32_t)L_111))))
{
goto IL_06e6;
}
}
{
goto IL_0da8;
}
IL_0700:
{
RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681(__this, 2, NULL);
int32_t L_112;
L_112 = RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991(__this, NULL);
RegexInterpreter_Trackto_mDFDFF0401BC8F2B2D26AEC65B54B963F84A089AE(__this, L_112, NULL);
int32_t L_113;
L_113 = RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8(__this, 1, NULL);
RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D(__this, L_113, NULL);
V_0 = 0;
goto IL_0009;
}
IL_0727:
{
RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1(__this, NULL);
goto IL_0735;
}
IL_072f:
{
RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9(__this, NULL);
}
IL_0735:
{
int32_t L_114;
L_114 = RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532(__this, NULL);
int32_t L_115;
L_115 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
if ((!(((uint32_t)L_114) == ((uint32_t)L_115))))
{
goto IL_072f;
}
}
{
goto IL_0da8;
}
IL_0748:
{
int32_t L_116;
L_116 = RegexInterpreter_Leftchars_m6FD5AA399927D1767633B24AE234D596CBDD4002(__this, NULL);
if ((((int32_t)L_116) <= ((int32_t)0)))
{
goto IL_0766;
}
}
{
int32_t L_117;
L_117 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
Il2CppChar L_118;
L_118 = RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C(__this, ((int32_t)il2cpp_codegen_subtract(L_117, 1)), NULL);
if ((!(((uint32_t)L_118) == ((uint32_t)((int32_t)10)))))
{
goto IL_0da8;
}
}
IL_0766:
{
V_0 = 0;
goto IL_0009;
}
IL_076d:
{
int32_t L_119;
L_119 = RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7(__this, NULL);
if ((((int32_t)L_119) <= ((int32_t)0)))
{
goto IL_0789;
}
}
{
int32_t L_120;
L_120 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
Il2CppChar L_121;
L_121 = RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C(__this, L_120, NULL);
if ((!(((uint32_t)L_121) == ((uint32_t)((int32_t)10)))))
{
goto IL_0da8;
}
}
IL_0789:
{
V_0 = 0;
goto IL_0009;
}
IL_0790:
{
int32_t L_122;
L_122 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_123 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_124 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
bool L_125;
L_125 = RegexRunner_IsBoundary_mCF4AE83F6FE3CC46C71C4558DBCDEC255BD422B8(__this, L_122, L_123, L_124, NULL);
if (!L_125)
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_07b4:
{
int32_t L_126;
L_126 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_127 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_128 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
bool L_129;
L_129 = RegexRunner_IsBoundary_mCF4AE83F6FE3CC46C71C4558DBCDEC255BD422B8(__this, L_126, L_127, L_128, NULL);
if (L_129)
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_07d8:
{
int32_t L_130;
L_130 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_131 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_132 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
bool L_133;
L_133 = RegexRunner_IsECMABoundary_m56C692126DF69F0933BBFCBF122F764C6093DA26(__this, L_130, L_131, L_132, NULL);
if (!L_133)
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_07fc:
{
int32_t L_134;
L_134 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_135 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextbeg_0;
int32_t L_136 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextend_1;
bool L_137;
L_137 = RegexRunner_IsECMABoundary_m56C692126DF69F0933BBFCBF122F764C6093DA26(__this, L_134, L_135, L_136, NULL);
if (L_137)
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_0820:
{
int32_t L_138;
L_138 = RegexInterpreter_Leftchars_m6FD5AA399927D1767633B24AE234D596CBDD4002(__this, NULL);
if ((((int32_t)L_138) > ((int32_t)0)))
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_0833:
{
int32_t L_139;
L_139 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_140;
L_140 = RegexInterpreter_Textstart_mDF185C6B3E245A2307A8B0B9F5FE5DF8C8C9936E_inline(__this, NULL);
if ((!(((uint32_t)L_139) == ((uint32_t)L_140))))
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_084b:
{
int32_t L_141;
L_141 = RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7(__this, NULL);
if ((((int32_t)L_141) > ((int32_t)1)))
{
goto IL_0da8;
}
}
{
int32_t L_142;
L_142 = RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7(__this, NULL);
if ((!(((uint32_t)L_142) == ((uint32_t)1))))
{
goto IL_0873;
}
}
{
int32_t L_143;
L_143 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
Il2CppChar L_144;
L_144 = RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C(__this, L_143, NULL);
if ((!(((uint32_t)L_144) == ((uint32_t)((int32_t)10)))))
{
goto IL_0da8;
}
}
IL_0873:
{
V_0 = 0;
goto IL_0009;
}
IL_087a:
{
int32_t L_145;
L_145 = RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7(__this, NULL);
if ((((int32_t)L_145) > ((int32_t)0)))
{
goto IL_0da8;
}
}
{
V_0 = 0;
goto IL_0009;
}
IL_088d:
{
int32_t L_146;
L_146 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_146) < ((int32_t)1)))
{
goto IL_0da8;
}
}
{
Il2CppChar L_147;
L_147 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
int32_t L_148;
L_148 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
if ((!(((uint32_t)L_147) == ((uint32_t)((int32_t)(uint16_t)L_148)))))
{
goto IL_0da8;
}
}
{
V_0 = 1;
goto IL_0009;
}
IL_08b3:
{
int32_t L_149;
L_149 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_149) < ((int32_t)1)))
{
goto IL_0da8;
}
}
{
Il2CppChar L_150;
L_150 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
int32_t L_151;
L_151 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
if ((((int32_t)L_150) == ((int32_t)((int32_t)(uint16_t)L_151))))
{
goto IL_0da8;
}
}
{
V_0 = 1;
goto IL_0009;
}
IL_08d9:
{
int32_t L_152;
L_152 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_152) < ((int32_t)1)))
{
goto IL_0da8;
}
}
{
Il2CppChar L_153;
L_153 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_154 = __this->____code_19;
NullCheck(L_154);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_155 = L_154->___Strings_49;
int32_t L_156;
L_156 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
NullCheck(L_155);
int32_t L_157 = L_156;
String_t* L_158 = (L_155)->GetAt(static_cast<il2cpp_array_size_t>(L_157));
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_159;
L_159 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_153, L_158, NULL);
if (!L_159)
{
goto IL_0da8;
}
}
{
V_0 = 1;
goto IL_0009;
}
IL_090f:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_160 = __this->____code_19;
NullCheck(L_160);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_161 = L_160->___Strings_49;
int32_t L_162;
L_162 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
NullCheck(L_161);
int32_t L_163 = L_162;
String_t* L_164 = (L_161)->GetAt(static_cast<il2cpp_array_size_t>(L_163));
bool L_165;
L_165 = RegexInterpreter_Stringmatch_m89AE288DB294AC0146C7772193CAD3B702849E54(__this, L_164, NULL);
if (!L_165)
{
goto IL_0da8;
}
}
{
V_0 = 1;
goto IL_0009;
}
IL_0934:
{
int32_t L_166;
L_166 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
V_11 = L_166;
int32_t L_167 = V_11;
bool L_168;
L_168 = RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C(__this, L_167, NULL);
if (!L_168)
{
goto IL_0964;
}
}
{
int32_t L_169 = V_11;
int32_t L_170;
L_170 = RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F(__this, L_169, NULL);
int32_t L_171 = V_11;
int32_t L_172;
L_172 = RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7(__this, L_171, NULL);
bool L_173;
L_173 = RegexInterpreter_Refmatch_m457B37C3E3B0671E7E89B7F6C16396D36EB32F68(__this, L_170, L_172, NULL);
if (L_173)
{
goto IL_097a;
}
}
{
goto IL_0da8;
}
IL_0964:
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_174 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runregex_13;
NullCheck(L_174);
int32_t L_175 = L_174->___roptions_13;
if (!((int32_t)((int32_t)L_175&((int32_t)256))))
{
goto IL_0da8;
}
}
IL_097a:
{
V_0 = 1;
goto IL_0009;
}
IL_0981:
{
int32_t L_176;
L_176 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_12 = L_176;
int32_t L_177;
L_177 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
int32_t L_178 = V_12;
if ((((int32_t)L_177) < ((int32_t)L_178)))
{
goto IL_0da8;
}
}
{
int32_t L_179;
L_179 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
V_13 = ((int32_t)(uint16_t)L_179);
goto IL_09b0;
}
IL_09a3:
{
Il2CppChar L_180;
L_180 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
Il2CppChar L_181 = V_13;
if ((!(((uint32_t)L_180) == ((uint32_t)L_181))))
{
goto IL_0da8;
}
}
IL_09b0:
{
int32_t L_182 = V_12;
int32_t L_183 = L_182;
V_12 = ((int32_t)il2cpp_codegen_subtract(L_183, 1));
if ((((int32_t)L_183) > ((int32_t)0)))
{
goto IL_09a3;
}
}
{
V_0 = 2;
goto IL_0009;
}
IL_09c1:
{
int32_t L_184;
L_184 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_14 = L_184;
int32_t L_185;
L_185 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
int32_t L_186 = V_14;
if ((((int32_t)L_185) < ((int32_t)L_186)))
{
goto IL_0da8;
}
}
{
int32_t L_187;
L_187 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
V_15 = ((int32_t)(uint16_t)L_187);
goto IL_09f0;
}
IL_09e3:
{
Il2CppChar L_188;
L_188 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
Il2CppChar L_189 = V_15;
if ((((int32_t)L_188) == ((int32_t)L_189)))
{
goto IL_0da8;
}
}
IL_09f0:
{
int32_t L_190 = V_14;
int32_t L_191 = L_190;
V_14 = ((int32_t)il2cpp_codegen_subtract(L_191, 1));
if ((((int32_t)L_191) > ((int32_t)0)))
{
goto IL_09e3;
}
}
{
V_0 = 2;
goto IL_0009;
}
IL_0a01:
{
int32_t L_192;
L_192 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_16 = L_192;
int32_t L_193;
L_193 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
int32_t L_194 = V_16;
if ((((int32_t)L_193) < ((int32_t)L_194)))
{
goto IL_0da8;
}
}
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_195 = __this->____code_19;
NullCheck(L_195);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_196 = L_195->___Strings_49;
int32_t L_197;
L_197 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
NullCheck(L_196);
int32_t L_198 = L_197;
String_t* L_199 = (L_196)->GetAt(static_cast<il2cpp_array_size_t>(L_198));
V_17 = L_199;
goto IL_0a40;
}
IL_0a2e:
{
Il2CppChar L_200;
L_200 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
String_t* L_201 = V_17;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_202;
L_202 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_200, L_201, NULL);
if (!L_202)
{
goto IL_0da8;
}
}
IL_0a40:
{
int32_t L_203 = V_16;
int32_t L_204 = L_203;
V_16 = ((int32_t)il2cpp_codegen_subtract(L_204, 1));
if ((((int32_t)L_204) > ((int32_t)0)))
{
goto IL_0a2e;
}
}
{
V_0 = 2;
goto IL_0009;
}
IL_0a51:
{
int32_t L_205;
L_205 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_18 = L_205;
int32_t L_206 = V_18;
int32_t L_207;
L_207 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_206) <= ((int32_t)L_207)))
{
goto IL_0a6c;
}
}
{
int32_t L_208;
L_208 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_18 = L_208;
}
IL_0a6c:
{
int32_t L_209;
L_209 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
V_19 = ((int32_t)(uint16_t)L_209);
int32_t L_210 = V_18;
V_20 = L_210;
goto IL_0a94;
}
IL_0a7c:
{
Il2CppChar L_211;
L_211 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
Il2CppChar L_212 = V_19;
if ((((int32_t)L_211) == ((int32_t)L_212)))
{
goto IL_0a8e;
}
}
{
RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF(__this, NULL);
goto IL_0a99;
}
IL_0a8e:
{
int32_t L_213 = V_20;
V_20 = ((int32_t)il2cpp_codegen_subtract(L_213, 1));
}
IL_0a94:
{
int32_t L_214 = V_20;
if ((((int32_t)L_214) > ((int32_t)0)))
{
goto IL_0a7c;
}
}
IL_0a99:
{
int32_t L_215 = V_18;
int32_t L_216 = V_20;
if ((((int32_t)L_215) <= ((int32_t)L_216)))
{
goto IL_0ab9;
}
}
{
int32_t L_217 = V_18;
int32_t L_218 = V_20;
int32_t L_219;
L_219 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_220;
L_220 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_217, L_218)), 1)), ((int32_t)il2cpp_codegen_subtract(L_219, L_220)), NULL);
}
IL_0ab9:
{
V_0 = 2;
goto IL_0009;
}
IL_0ac0:
{
int32_t L_221;
L_221 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_21 = L_221;
int32_t L_222 = V_21;
int32_t L_223;
L_223 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_222) <= ((int32_t)L_223)))
{
goto IL_0adb;
}
}
{
int32_t L_224;
L_224 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_21 = L_224;
}
IL_0adb:
{
int32_t L_225;
L_225 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
V_22 = ((int32_t)(uint16_t)L_225);
int32_t L_226 = V_21;
V_23 = L_226;
goto IL_0b03;
}
IL_0aeb:
{
Il2CppChar L_227;
L_227 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
Il2CppChar L_228 = V_22;
if ((!(((uint32_t)L_227) == ((uint32_t)L_228))))
{
goto IL_0afd;
}
}
{
RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF(__this, NULL);
goto IL_0b08;
}
IL_0afd:
{
int32_t L_229 = V_23;
V_23 = ((int32_t)il2cpp_codegen_subtract(L_229, 1));
}
IL_0b03:
{
int32_t L_230 = V_23;
if ((((int32_t)L_230) > ((int32_t)0)))
{
goto IL_0aeb;
}
}
IL_0b08:
{
int32_t L_231 = V_21;
int32_t L_232 = V_23;
if ((((int32_t)L_231) <= ((int32_t)L_232)))
{
goto IL_0b28;
}
}
{
int32_t L_233 = V_21;
int32_t L_234 = V_23;
int32_t L_235;
L_235 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_236;
L_236 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_233, L_234)), 1)), ((int32_t)il2cpp_codegen_subtract(L_235, L_236)), NULL);
}
IL_0b28:
{
V_0 = 2;
goto IL_0009;
}
IL_0b2f:
{
int32_t L_237;
L_237 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_24 = L_237;
int32_t L_238 = V_24;
int32_t L_239;
L_239 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_238) <= ((int32_t)L_239)))
{
goto IL_0b4a;
}
}
{
int32_t L_240;
L_240 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_24 = L_240;
}
IL_0b4a:
{
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_241 = __this->____code_19;
NullCheck(L_241);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_242 = L_241->___Strings_49;
int32_t L_243;
L_243 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
NullCheck(L_242);
int32_t L_244 = L_243;
String_t* L_245 = (L_242)->GetAt(static_cast<il2cpp_array_size_t>(L_244));
V_25 = L_245;
int32_t L_246 = V_24;
V_26 = L_246;
goto IL_0b82;
}
IL_0b65:
{
Il2CppChar L_247;
L_247 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
String_t* L_248 = V_25;
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_249;
L_249 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_247, L_248, NULL);
if (L_249)
{
goto IL_0b7c;
}
}
{
RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF(__this, NULL);
goto IL_0b87;
}
IL_0b7c:
{
int32_t L_250 = V_26;
V_26 = ((int32_t)il2cpp_codegen_subtract(L_250, 1));
}
IL_0b82:
{
int32_t L_251 = V_26;
if ((((int32_t)L_251) > ((int32_t)0)))
{
goto IL_0b65;
}
}
IL_0b87:
{
int32_t L_252 = V_24;
int32_t L_253 = V_26;
if ((((int32_t)L_252) <= ((int32_t)L_253)))
{
goto IL_0ba7;
}
}
{
int32_t L_254 = V_24;
int32_t L_255 = V_26;
int32_t L_256;
L_256 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
int32_t L_257;
L_257 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_254, L_255)), 1)), ((int32_t)il2cpp_codegen_subtract(L_256, L_257)), NULL);
}
IL_0ba7:
{
V_0 = 2;
goto IL_0009;
}
IL_0bae:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_258;
L_258 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
V_27 = L_258;
int32_t L_259;
L_259 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
V_28 = L_259;
int32_t L_260 = V_28;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_260, NULL);
int32_t L_261 = V_27;
if ((((int32_t)L_261) <= ((int32_t)0)))
{
goto IL_0be6;
}
}
{
int32_t L_262 = V_27;
int32_t L_263 = V_28;
int32_t L_264;
L_264 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_262, 1)), ((int32_t)il2cpp_codegen_subtract(L_263, L_264)), NULL);
}
IL_0be6:
{
V_0 = 2;
goto IL_0009;
}
IL_0bed:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_265;
L_265 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
V_29 = L_265;
int32_t L_266;
L_266 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
V_30 = L_266;
int32_t L_267 = V_30;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_267, NULL);
int32_t L_268 = V_29;
if ((((int32_t)L_268) <= ((int32_t)0)))
{
goto IL_0c25;
}
}
{
int32_t L_269 = V_29;
int32_t L_270 = V_30;
int32_t L_271;
L_271 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_269, 1)), ((int32_t)il2cpp_codegen_subtract(L_270, L_271)), NULL);
}
IL_0c25:
{
V_0 = 2;
goto IL_0009;
}
IL_0c2c:
{
int32_t L_272;
L_272 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_31 = L_272;
int32_t L_273 = V_31;
int32_t L_274;
L_274 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_273) <= ((int32_t)L_274)))
{
goto IL_0c47;
}
}
{
int32_t L_275;
L_275 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_31 = L_275;
}
IL_0c47:
{
int32_t L_276 = V_31;
if ((((int32_t)L_276) <= ((int32_t)0)))
{
goto IL_0c5c;
}
}
{
int32_t L_277 = V_31;
int32_t L_278;
L_278 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_277, 1)), L_278, NULL);
}
IL_0c5c:
{
V_0 = 2;
goto IL_0009;
}
IL_0c63:
{
int32_t L_279;
L_279 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 1, NULL);
V_32 = L_279;
int32_t L_280 = V_32;
int32_t L_281;
L_281 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
if ((((int32_t)L_280) <= ((int32_t)L_281)))
{
goto IL_0c7e;
}
}
{
int32_t L_282;
L_282 = RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6(__this, NULL);
V_32 = L_282;
}
IL_0c7e:
{
int32_t L_283 = V_32;
if ((((int32_t)L_283) <= ((int32_t)0)))
{
goto IL_0c93;
}
}
{
int32_t L_284 = V_32;
int32_t L_285;
L_285 = RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_284, 1)), L_285, NULL);
}
IL_0c93:
{
V_0 = 2;
goto IL_0009;
}
IL_0c9a:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_286;
L_286 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
V_33 = L_286;
int32_t L_287 = V_33;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_287, NULL);
Il2CppChar L_288;
L_288 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
int32_t L_289;
L_289 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
if ((!(((uint32_t)L_288) == ((uint32_t)((int32_t)(uint16_t)L_289)))))
{
goto IL_0da8;
}
}
{
int32_t L_290;
L_290 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
V_34 = L_290;
int32_t L_291 = V_34;
if ((((int32_t)L_291) <= ((int32_t)0)))
{
goto IL_0ce5;
}
}
{
int32_t L_292 = V_34;
int32_t L_293 = V_33;
int32_t L_294;
L_294 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_292, 1)), ((int32_t)il2cpp_codegen_add(L_293, L_294)), NULL);
}
IL_0ce5:
{
V_0 = 2;
goto IL_0009;
}
IL_0cec:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_295;
L_295 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
V_35 = L_295;
int32_t L_296 = V_35;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_296, NULL);
Il2CppChar L_297;
L_297 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
int32_t L_298;
L_298 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
if ((((int32_t)L_297) == ((int32_t)((int32_t)(uint16_t)L_298))))
{
goto IL_0da8;
}
}
{
int32_t L_299;
L_299 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
V_36 = L_299;
int32_t L_300 = V_36;
if ((((int32_t)L_300) <= ((int32_t)0)))
{
goto IL_0d37;
}
}
{
int32_t L_301 = V_36;
int32_t L_302 = V_35;
int32_t L_303;
L_303 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_301, 1)), ((int32_t)il2cpp_codegen_add(L_302, L_303)), NULL);
}
IL_0d37:
{
V_0 = 2;
goto IL_0009;
}
IL_0d3e:
{
RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B(__this, 2, NULL);
int32_t L_304;
L_304 = RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699(__this, 1, NULL);
V_37 = L_304;
int32_t L_305 = V_37;
RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline(__this, L_305, NULL);
Il2CppChar L_306;
L_306 = RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1(__this, NULL);
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_307 = __this->____code_19;
NullCheck(L_307);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_308 = L_307->___Strings_49;
int32_t L_309;
L_309 = RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560(__this, 0, NULL);
NullCheck(L_308);
int32_t L_310 = L_309;
String_t* L_311 = (L_308)->GetAt(static_cast<il2cpp_array_size_t>(L_310));
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
bool L_312;
L_312 = RegexCharClass_CharInClass_mAF6EE8C936383EB630F17C8C268F10BB8C10BC83(L_306, L_311, NULL);
if (!L_312)
{
goto IL_0da8;
}
}
{
int32_t L_313;
L_313 = RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861(__this, NULL);
V_38 = L_313;
int32_t L_314 = V_38;
if ((((int32_t)L_314) <= ((int32_t)0)))
{
goto IL_0d96;
}
}
{
int32_t L_315 = V_38;
int32_t L_316 = V_37;
int32_t L_317;
L_317 = RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1(__this, NULL);
RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878(__this, ((int32_t)il2cpp_codegen_subtract(L_315, 1)), ((int32_t)il2cpp_codegen_add(L_316, L_317)), NULL);
}
IL_0d96:
{
V_0 = 2;
goto IL_0009;
}
IL_0d9d:
{
Exception_t* L_318;
L_318 = NotImplemented_ByDesignWithMessage_m91D3B27BDC19FF6AAEDD420C9A8E3A43FB3B9DE3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4713250C292B59C6AAA9A7591D3BB43ABA0A26E9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_318, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexInterpreter_Go_m1CF26F8D95231F3B2235EA98AFB286C3F1629BED_RuntimeMethod_var)));
}
IL_0da8:
{
RegexInterpreter_Backtrack_m8D227FAE1EFD91174D43FF070D9200291941E593(__this, NULL);
goto IL_0009;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D_inline (UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_Scheme_6;
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 IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2_inline (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* __this, IOAsyncResult_t667861995468DDF5B2CFED1940CC2BCEEDD2B374* ___ioares0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ioares0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTextU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTextU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CIndexU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CLengthU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTextU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CIndexU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CLengthU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline (String_t* ___text0, int32_t ___start1, int32_t ___length2, 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 = ___text0;
if (L_0)
{
goto IL_001a;
}
}
{
int32_t L_1 = ___start1;
if (L_1)
{
goto IL_0009;
}
}
{
int32_t L_2 = ___length2;
if (!L_2)
{
goto IL_0010;
}
}
IL_0009:
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E(((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 = ___start1;
String_t* L_5 = ___text0;
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 = ___length2;
String_t* L_8 = ___text0;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
int32_t L_10 = ___start1;
if ((!(((uint32_t)L_7) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))))))
{
goto IL_0035;
}
}
IL_002e:
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E(((int32_t)24), NULL);
}
IL_0035:
{
String_t* L_11 = ___text0;
NullCheck(L_11);
Il2CppChar* L_12;
L_12 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_11, NULL);
int32_t L_13 = ___start1;
Il2CppChar* L_14;
L_14 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_12, L_13);
int32_t L_15 = ___length2;
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 String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline (String_t* ___value0, 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 = ___value0;
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 = ___value0;
NullCheck(L_2);
Il2CppChar* L_3;
L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
String_t* L_4 = ___value0;
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 bool Regex_TryGetCacheValue_m8785E636E24F8F0C3E5A7CFE516978A434C99DEB_inline (CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** ___entry1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheCount_3;
if ((((int32_t)L_0) < ((int32_t)((int32_t)10))))
{
goto IL_0016;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* L_1 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cache_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_2 = ___key0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_3 = ___entry1;
NullCheck(L_1);
bool L_4;
L_4 = Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31(L_1, L_2, L_3, Dictionary_2_TryGetValue_m79B5FDA268EE81DEE7DA49305FB14DBBDABD5A31_RuntimeMethod_var);
return L_4;
}
IL_0016:
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_5 = ___key0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39** L_6 = ___entry1;
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Regex_TryGetCacheValueSmall_mEA1FE67593D84A849F8DDFD9BB4144FF5BE18A64(L_5, L_6, NULL);
return L_7;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MatchEvaluator_Invoke_m62260DA60C8B6066B1D7457C8CDE543470DC8B97_inline (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___match0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6_inline (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 ___key0, bool ___isToAdd1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_0 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheFirst_4;
V_0 = L_0;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_2 = V_0;
NullCheck(L_2);
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_3 = L_2->___Key_2;
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_4 = ___key0;
bool L_5;
L_5 = CachedCodeEntryKey_op_Equality_m5C48CEBA5D7F893F4FE88D06917EB738615DDCC6(L_3, L_4, NULL);
if (!L_5)
{
goto IL_0019;
}
}
{
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_6 = V_0;
return L_6;
}
IL_0019:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
int32_t L_7 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___s_cacheSize_1;
if (L_7)
{
goto IL_0022;
}
}
{
return (CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39*)NULL;
}
IL_0022:
{
CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 L_8 = ___key0;
bool L_9 = ___isToAdd1;
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* L_10;
L_10 = Regex_GetCachedCodeEntryInternal_m9FE175C47BF909F7F223013004C0EA0DAD660C06(__this, L_8, L_9, NULL);
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102_inline (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CCaseInsensitiveU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 RegexPrefix_get_Empty_m3D63F7F64529D4CA3C0929F94E035EEED7D9E0F9_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_0 = ((RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B_inline (RegexFC_t94F85EACC55F7CDAB62F6B2DD79513A694EA77C4* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CCaseInsensitiveU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CCaseInsensitiveU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CPrefixU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operator_m3BD9AD7DCDA4E84DE4821DA786E1B1483E677B58_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____operator_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, int32_t ___newpos0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___newpos0;
((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextpos_4 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textstart_mDF185C6B3E245A2307A8B0B9F5FE5DF8C8C9936E_inline (RegexInterpreter_t3641B4808EFE3A692A4AF1F2269CF248C1C7E2C7* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B*)__this)->___runtextstart_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m041C8F564B3A1512BE23E1DE2452F6B2144CCFF5_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((EmptyArray_1_tE700FA647008891EF64C31436B092B253493667F_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 EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_get_Default_m3F1C09001C590CF5063218C73C6AC73C19B10489_gshared_inline (const RuntimeMethod* method)
{
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* V_0 = NULL;
{
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_0 = ((EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->___defaultComparer_0;
il2cpp_codegen_memory_barrier();
V_0 = L_0;
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_2;
L_2 = (( EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* (*) (const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 1)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = L_2;
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_3 = V_0;
il2cpp_codegen_memory_barrier();
((EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->___defaultComparer_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->___defaultComparer_0), (void*)L_3);
}
IL_0019:
{
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_4 = V_0;
return L_4;
}
}
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_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* 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));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_1 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__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;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* 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));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = V_0;
int32_t L_7 = V_1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_8);
return;
}
IL_0034:
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_9 = ___item0;
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, void* ___pointer0, int32_t ___length1, 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_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5(L_1, NULL);
}
IL_0016:
{
int32_t L_2 = ___length1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_001f;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL);
}
IL_001f:
{
void* L_3 = ___pointer0;
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 = ___length1;
__this->____length_1 = L_6;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, int32_t ___item0, 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_mFF16FBF4112C75DCE17FBE1C12799469549384C9(__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 = ___item0;
*(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_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____pos_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____pos_2;
__this->____pos_2 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* L_1 = (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*)(&__this->____span_0);
int32_t L_2 = (int32_t)__this->____pos_2;
int32_t* L_3;
L_3 = il2cpp_span_get_item((int32_t*)((Il2CppByReference*)&((L_1)->____pointer_0))->value, (L_2), (L_1)->____length_1);
int32_t L_4 = (*(int32_t*)L_3);
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_gshared_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __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 bool Nullable_1_get_HasValue_m3D9DC801A8E4D57BCF3C06CF06F1942DDCFDBE52_gshared_inline (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 Nullable_1_GetValueOrDefault_m1E3C4214F68D30640A9D4560F57CD0F49C410E9A_gshared_inline (Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8* __this, const RuntimeMethod* method)
{
{
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_0 = (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___ptr0;
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 = ___length1;
__this->____length_1 = L_2;
return;
}
}
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;
}
}