#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include template struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtFuncInvoker3 { 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 struct VirtFuncInvoker2 { 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 struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtActionInvoker3 { 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 struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtFuncInvoker4 { 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 struct VirtFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct 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 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 InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t23AEB132F0E755664DC10A3AB1F05B2257F5F3A8; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tE6F70F614B23A77B47F997321679A386DE38547C; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tA3F9CEF64ED38FA56ECC5E56165286AE1376D617; // System.Collections.Generic.IList`1 struct IList_1_t7BEAFBE87D1FAA46BE473A89878B4B5B9DB7F49C; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t1A5E6B675EFA5A7901D7B04966A914995A34ECFF; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tE22F4D23A741E95A221257E03F5AEC99BCEDE61F; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t5FE0EB338810A83B845B900E60A4E065E1E8AB68; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tFEE8457FE221E239778EE686C6BB8756470C8987; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tFCF38642F5CB0A86A6B4EC75E8BF5C9A8C4D0122; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t030E8C0717067BB35BC97531ADFD5B34DE81E372; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92; // System.Collections.Generic.List`1 struct List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.Stack`1 struct Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B; // System.Collections.Generic.Stack`1 struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981; // System.Collections.Generic.Stack`1 struct Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t530059B6E09E07208AE8745C3EA5EC32BA6C17F6; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tD9F8742BCDE46BE10F45030D7DEE230F8F9D24FA; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tA992FE5AE14BF1BD39743AC399EF95B64E8AFC42; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tECAE69F11CA0C245794C99313E46CEAB79289400; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t0A13A40E317C41D701F731B2E09A7863C1AF1C9E; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tE42F4CA2251E4564157940892384BFB9EBE58D61; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tB995B2E54E55DB21952952A5F1056F84E5721683; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tDF263570453ED61DC82F1B72F9B1F10CF0C186FE; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t830E5130B05E1143F4ECA59D1CE8BD64AC3F7E2F; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t5AD4BA39F55C5C698AD90B02326A2225C5D56221; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tA3DDC0B951DBF95A552959A08A07C10A84E89DA0; // System.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; // System.Xml.Schema.BitSet[] struct BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Xml.Schema.DatatypeImplementation[] struct DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Xml.IDtdDefaultAttributeInfo[] struct IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.Int64[] struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Xml.Schema.InteriorNode[] struct InteriorNodeU5BU5D_t88A9EC994264F6AB64D466B2BF66D5D270F65E4C; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986; // System.Xml.Schema.XmlSchemaSimpleType[] struct XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap[] struct SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA; // System.Xml.Serialization.EnumMap/EnumMapMember[] struct EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190; // System.Xml.NameTable/Entry[] struct EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D; // System.Xml.Schema.SequenceNode/SequenceConstructPosContext[] struct SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF; // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Xml.Schema.BitSet struct BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438; // System.Globalization.Calendar struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A; // System.Xml.Schema.ChoiceNode struct ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C; // System.Globalization.CodePageDataItem struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9; // System.Reflection.ConstructorInfo struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B; // System.Xml.Schema.ContentValidator struct ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C; // System.Globalization.CultureData struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // System.Text.DecoderFallbackBuffer struct DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // System.Xml.Schema.DfaContentValidator struct DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73; // System.Xml.Schema.DurationFacetsChecker struct DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13; // System.Text.Encoder struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4; // System.Text.EncoderFallbackBuffer struct EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // System.Xml.Serialization.EnumMap struct EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC; // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA; // System.Exception struct Exception_t; // System.Text.RegularExpressions.ExclusiveReference struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8; // System.Xml.Schema.FacetsChecker struct FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.ICollection struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Xml.IDtdAttributeInfo struct IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9; // System.Xml.IDtdAttributeListInfo struct IDtdAttributeListInfo_t93A1959E82B8D19BABCED9DFCCB541AEFF12ACFA; // System.Xml.IDtdDefaultAttributeInfo struct IDtdDefaultAttributeInfo_t8DAB8271F3930199379DF41791AE869365320C92; // System.Xml.IDtdEntityInfo struct IDtdEntityInfo_t6CD9881A9EC86BF67CCFD10F64F69D18316D6AFC; // System.Xml.IDtdParserAdapter struct IDtdParserAdapter_tBA7B070C0FD127A0E042A26EB4011F3E14AE3287; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // System.Xml.IValidationEventHandling struct IValidationEventHandling_t574D5D59A6C1707DB494A9F8AFB6A3DB3F0B64D1; // System.Xml.IXmlNamespaceResolver struct IXmlNamespaceResolver_tE715F6572D858174C1BDCF0076B3C6415B226CD0; // System.Xml.Schema.IXmlSchemaInfo struct IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984; // System.Xml.IncrementalReadDummyDecoder struct IncrementalReadDummyDecoder_tC63EFBDD75A4558B1A31CDA7814317CCF5E45C85; // System.Xml.Schema.InteriorNode struct InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.Xml.Schema.LeafNode struct LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC; // System.Xml.Schema.LeafRangeNode struct LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155; // System.Xml.Schema.ListFacetsChecker struct ListFacetsChecker_t7CF5BFF43213BA5ECCAA29ADC28F4BB87882CD46; // System.Xml.Serialization.ListMap struct ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Xml.Schema.MiscFacetsChecker struct MiscFacetsChecker_t39E6077D7971C53A40D38860A9418C695B194DB6; // System.MonoTODOAttribute struct MonoTODOAttribute_tF8137E40759566B832E7E9EC86E2C824085A7F47; // System.Xml.NameTable struct NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728; // System.Xml.Schema.NamespaceList struct NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A; // System.Xml.Schema.NamespaceListNode struct NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19; // System.Xml.Schema.NfaContentValidator struct NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D; // System.Xml.Schema.Numeric10FacetsChecker struct Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5; // System.Xml.Schema.Numeric2FacetsChecker struct Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8; // System.Xml.Serialization.ObjectMap struct ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C; // System.Xml.OpenedHost struct OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D; // System.OverflowException struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9; // System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7; // System.Xml.Schema.ParticleContentValidator struct ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8; // System.Xml.Schema.PlusNode struct PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979; // System.Xml.Schema.Positions struct Positions_t577D66E21F674149C5A3E68851CE88B94C37248F; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Xml.Schema.QNameFacetsChecker struct QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC; // System.Xml.Schema.QmarkNode struct QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803; // System.Collections.Queue struct Queue_t66723C58C7422102C36F8570BE048BD0CC489E52; // System.Xml.Schema.RangeContentValidator struct RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52; // System.Xml.Serialization.ReflectionHelper struct ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F; // System.Text.RegularExpressions.RegexCode struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5; // System.Text.RegularExpressions.RegexRunnerFactory struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96; // System.Xml.Schema.RestrictionFacets struct RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA; // System.Xml.SafeAsciiDecoder struct SafeAsciiDecoder_tCD1ACB5604E6CFBC5F4738EEDCF5EA3A9EA957EF; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68; // System.Xml.Schema.SchemaDeclBase struct SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B; // System.Xml.Schema.SchemaEntity struct SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E; // System.Xml.Schema.SchemaInfo struct SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5; // System.Xml.Schema.SchemaNotation struct SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED; // System.Xml.SecureStringHasher struct SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A; // System.Xml.Schema.SequenceNode struct SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD; // System.Text.RegularExpressions.SharedReference struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926; // System.Collections.Stack struct Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8; // System.Xml.Schema.StarNode struct StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.Xml.Schema.StringFacetsChecker struct StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62; // System.Xml.Schema.SymbolsDictionary struct SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF; // System.Xml.Schema.SyntaxTreeNode struct SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389; // System.Globalization.TextInfo struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C; // System.Type struct Type_t; // System.Xml.Serialization.TypeData struct TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2; // System.Xml.Serialization.TypeMember struct TypeMember_t8F822B48C520500825EE30B53C9F31070682019C; // System.Xml.UTF16Decoder struct UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4; // System.Xml.Ucs4Decoder struct Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F; // System.Xml.Ucs4Decoder1234 struct Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E; // System.Xml.Ucs4Decoder2143 struct Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098; // System.Xml.Ucs4Decoder3412 struct Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928; // System.Xml.Ucs4Decoder4321 struct Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2; // System.Xml.Ucs4Encoding struct Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07; // System.Xml.Ucs4Encoding1234 struct Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796; // System.Xml.Ucs4Encoding2143 struct Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523; // System.Xml.Ucs4Encoding3412 struct Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49; // System.Xml.Ucs4Encoding4321 struct Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF; // System.Xml.Schema.UnionFacetsChecker struct UnionFacetsChecker_tEF317EAC017FEA555E5C3A2F347A2B5C3A2857D0; // System.Xml.Serialization.UnreferencedObjectEventArgs struct UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192; // System.Xml.Serialization.UnreferencedObjectEventHandler struct UnreferencedObjectEventHandler_t8C7AD11596BB1575262B62EE1128DABB07434988; // System.Xml.Schema.UpaException struct UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A; // System.Xml.Schema.ValidationEventArgs struct ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_tE0F1666DEE5D41D7A2A1D78B8E6B07EC830ACE3C; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.Xml.XPath.XPathDocument struct XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28; // MS.Internal.Xml.Cache.XPathDocumentNavigator struct XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303; // System.Xml.XPath.XPathItem struct XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701; // System.Xml.XPath.XPathNavigator struct XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9; // System.Xml.XPath.XPathNavigatorKeyComparer struct XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A; // MS.Internal.Xml.Cache.XPathNode struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7; // MS.Internal.Xml.Cache.XPathNodeInfoAtom struct XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6; // MS.Internal.Xml.Cache.XPathNodePageInfo struct XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708; // System.Xml.Schema.XmlAnyConverter struct XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB; // System.Xml.Schema.XmlAtomicValue struct XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C; // System.Xml.Schema.XmlBaseConverter struct XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55; // System.Xml.XmlException struct XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918; // System.Xml.Serialization.XmlMapping struct XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9; // System.Xml.XmlNameTable struct XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905; // System.Xml.Schema.XmlSchemaAnyAttribute struct XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA; // System.Xml.Schema.XmlSchemaFacet struct XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3; // System.Xml.Schema.XmlSchemaPatternFacet struct XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C; // System.Xml.Schema.XmlSchemaSimpleTypeContent struct XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA; // System.Xml.Serialization.XmlTypeConvertorAttribute struct XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E; // System.Xml.Serialization.XmlTypeMapElementInfo struct XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A; // System.Xml.Serialization.XmlTypeMapElementInfoList struct XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A; // System.Xml.Serialization.XmlTypeMapMember struct XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC; // System.Xml.Serialization.XmlTypeMapping struct XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581; // System.Xml.Schema.XmlValueConverter struct XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763; // System.Xml.Schema.DtdValidator/NamespaceManager struct NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B; // System.Xml.Serialization.EnumMap/EnumMapMember struct EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78; // System.Xml.NameTable/Entry struct Entry_tE04CA3878430F262AD43F80C045C96A425BCE239; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45; // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName struct NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2; // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CodeIdentifier_t7A70E983581E6F31BA9725F69C524264DAB98814_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Entry_tE04CA3878430F262AD43F80C045C96A425BCE239_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IConvertible_t40D9E38816544BF71E97F48AB3C47C9A2B7E9BE4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParserAdapterWithValidation_t0F14B9DF8870776AF06060024076C7E824C13439_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParserAdapter_tBA7B070C0FD127A0E042A26EB4011F3E14AE3287_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IValidationEventHandling_t574D5D59A6C1707DB494A9F8AFB6A3DB3F0B64D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Queue_t66723C58C7422102C36F8570BE048BD0CC489E52_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeMember_t8F822B48C520500825EE30B53C9F31070682019C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlCustomFormatter_t96EA3BCB945B23EA4124D095B1F60E312A83E4AB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____BAD037B714E1CD1052149B51238A3D4351DD10B5_6_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8; IL2CPP_EXTERN_C String_t* _stringLiteral00722598CA6BA1F0518997F2B785CD56427AB1F1; IL2CPP_EXTERN_C String_t* _stringLiteral013BD4ABE4D4A1BC6D9EEF501A242AC0124ACED6; IL2CPP_EXTERN_C String_t* _stringLiteral0352EBA15B2C8E5762F848F7B867BBB5F20BAA2B; IL2CPP_EXTERN_C String_t* _stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A; IL2CPP_EXTERN_C String_t* _stringLiteral0797970A05214E4132EBF1E0E234C882D1DCD3C6; IL2CPP_EXTERN_C String_t* _stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72; IL2CPP_EXTERN_C String_t* _stringLiteral0BB39DE8D1B747008B7AA481357BD906FEA90B6F; IL2CPP_EXTERN_C String_t* _stringLiteral0CE918CF589A0B3A3BDB90F0F98BCC43CDF6169E; IL2CPP_EXTERN_C String_t* _stringLiteral0CEBF7DFA17440E9873C47A2C1BE712F98DFA500; IL2CPP_EXTERN_C String_t* _stringLiteral0F351FFA0B5B35F215CCBDDE75840E380391AA2C; IL2CPP_EXTERN_C String_t* _stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18; IL2CPP_EXTERN_C String_t* _stringLiteral107694947DB47644F8036602F63473486E1ED925; IL2CPP_EXTERN_C String_t* _stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7; IL2CPP_EXTERN_C String_t* _stringLiteral1A9F773AF09A196B0A76B00E4B47084B3EA86D59; IL2CPP_EXTERN_C String_t* _stringLiteral1B6D0EA4FFAEA7868BA3D296BF046EF1266CEC55; IL2CPP_EXTERN_C String_t* _stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300; IL2CPP_EXTERN_C String_t* _stringLiteral1E6F6A066E9C41521D9969E61D6F5F89615E3161; IL2CPP_EXTERN_C String_t* _stringLiteral21C885F024DD76B32C6CA3D9BD35E0A148EDDD9D; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral2487EBB314A1B3B04B516ED1FF00721AFA81FAAF; IL2CPP_EXTERN_C String_t* _stringLiteral25F5EF17AC725A91FE3F3CE895C16ED6DD9B3499; IL2CPP_EXTERN_C String_t* _stringLiteral265F3FB35B71A1769644CBC8A1BD32CE34B94D63; IL2CPP_EXTERN_C String_t* _stringLiteral26C143611F9279917294CC9139984B17E0479D09; IL2CPP_EXTERN_C String_t* _stringLiteral281B4DD577192A2270A89228DB0EF4FCD056C5A1; IL2CPP_EXTERN_C String_t* _stringLiteral286CC02C1E7ED462D7D2D31546D5144F88661A2F; IL2CPP_EXTERN_C String_t* _stringLiteral28A2974B55097EBB10C3D44D4452824517C0783D; IL2CPP_EXTERN_C String_t* _stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7; IL2CPP_EXTERN_C String_t* _stringLiteral2AD43975A69D522C9BBF973465C2270EB67DD0C6; IL2CPP_EXTERN_C String_t* _stringLiteral2E3ED7A81B1913E943A744C8F9E7D5EB5C672B4C; IL2CPP_EXTERN_C String_t* _stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9; IL2CPP_EXTERN_C String_t* _stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE; IL2CPP_EXTERN_C String_t* _stringLiteral2FD726975E1B11E900D32393E382DD325472C6C5; IL2CPP_EXTERN_C String_t* _stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174; IL2CPP_EXTERN_C String_t* _stringLiteral316316045E2DB71BB9C0748EE882DBF00C83FD8E; IL2CPP_EXTERN_C String_t* _stringLiteral33F3CCC8C96B52CBA9D88D899779B6191CE15B79; IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917; IL2CPP_EXTERN_C String_t* _stringLiteral3618AD4590B5AEEAF5022BE929B8BA84D836466C; IL2CPP_EXTERN_C String_t* _stringLiteral36A07254D81AF39088E2BED8EFC92E153ED48ECC; IL2CPP_EXTERN_C String_t* _stringLiteral384565B8399EC9A224FB52B7078096010121FA9F; IL2CPP_EXTERN_C String_t* _stringLiteral38D3008511B528A5F192D58360168CA7329DE2AB; IL2CPP_EXTERN_C String_t* _stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7; IL2CPP_EXTERN_C String_t* _stringLiteral3988471A2015D5CC894E22E1A900B66E97CD4306; IL2CPP_EXTERN_C String_t* _stringLiteral39C2692DA901B66EB5530E3899C26FD34413E858; IL2CPP_EXTERN_C String_t* _stringLiteral3ADAAB999C40C872F1295FAF8822A6B94D90F345; IL2CPP_EXTERN_C String_t* _stringLiteral3B1E6C4760A8F1324F6412ACD9FD8DB27D1E9151; IL2CPP_EXTERN_C String_t* _stringLiteral3B5E495CDE8B6F083E7D5ACE1D945067609680FC; IL2CPP_EXTERN_C String_t* _stringLiteral3C19E9456A591B7480BFD140A0016E01BC880976; IL2CPP_EXTERN_C String_t* _stringLiteral3D6EB261B6E5AC1669A2C14AFA8CA0EBB13AA820; IL2CPP_EXTERN_C String_t* _stringLiteral40238A1A323AEE2FA699BCF0BB5F71A5CCC87DA2; IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE; IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D; IL2CPP_EXTERN_C String_t* _stringLiteral443BD561FA5A81D321CAAF0B444C0CFB1C5811D4; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral4B8E450EF4850368DBB2EFCF325F11F608FFD24C; IL2CPP_EXTERN_C String_t* _stringLiteral4BD1D6F2500A903652036B29D6882FA865715A46; IL2CPP_EXTERN_C String_t* _stringLiteral4CD467B5F5A978DD7D3631E46793E9D7235411A1; IL2CPP_EXTERN_C String_t* _stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E; IL2CPP_EXTERN_C String_t* _stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932; IL2CPP_EXTERN_C String_t* _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6; IL2CPP_EXTERN_C String_t* _stringLiteral50D4804BC7D54E5E3D765D78A85B3784DBE80471; IL2CPP_EXTERN_C String_t* _stringLiteral50F42FA04A7512CEA891683F4BA8A38F5CEFD199; IL2CPP_EXTERN_C String_t* _stringLiteral51C6279E31F7483126B79E3000116001A915B690; IL2CPP_EXTERN_C String_t* _stringLiteral541BC3E626400B590FFDBE860C1855349210E425; IL2CPP_EXTERN_C String_t* _stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1; IL2CPP_EXTERN_C String_t* _stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D; IL2CPP_EXTERN_C String_t* _stringLiteral57046FC2B1DAF399BC0B2381DB8D6833BEC364B6; IL2CPP_EXTERN_C String_t* _stringLiteral57DE43D7AAF6D9F023DCBB173DB2DE97E7C8159D; IL2CPP_EXTERN_C String_t* _stringLiteral583FE8FF2848E442B35F899B36D164DB2745CC4C; IL2CPP_EXTERN_C String_t* _stringLiteral58923673A6DE01B228CD0826473139B945885139; IL2CPP_EXTERN_C String_t* _stringLiteral5A84973670418F8458870283182D87D4E901FF7B; IL2CPP_EXTERN_C String_t* _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6; IL2CPP_EXTERN_C String_t* _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B; IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174; IL2CPP_EXTERN_C String_t* _stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356; IL2CPP_EXTERN_C String_t* _stringLiteral5CF637AF1571A6E5D0B437E9E082426D624A4FCA; IL2CPP_EXTERN_C String_t* _stringLiteral5DFC03B35CE1610D507097EBBBD36CF45BCB4C2C; IL2CPP_EXTERN_C String_t* _stringLiteral5DFC19D379C148B3B003BB99BBD6AAD19B24AA72; IL2CPP_EXTERN_C String_t* _stringLiteral606D85602184211DB21C40AEC7FD6715395189C6; IL2CPP_EXTERN_C String_t* _stringLiteral609F11BECFD0CCE90D4C1D6AA2F061231AAB9266; IL2CPP_EXTERN_C String_t* _stringLiteral614B501556B12B5890C878B29FB23C1807F2B680; IL2CPP_EXTERN_C String_t* _stringLiteral61A88EF487F99DCB9558AAAD39471532DEE75F42; IL2CPP_EXTERN_C String_t* _stringLiteral61C6D968B7FE88D4B8A63934DD5685C362457520; IL2CPP_EXTERN_C String_t* _stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80; IL2CPP_EXTERN_C String_t* _stringLiteral648E7A40D2E5792A25DB368740E29C86157D8779; IL2CPP_EXTERN_C String_t* _stringLiteral673CC9996FD90AFE21BD8D0E6E6824353AF4BDA2; IL2CPP_EXTERN_C String_t* _stringLiteral679D068D573133B9C7C465FC6CF9C9D07B531421; IL2CPP_EXTERN_C String_t* _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E; IL2CPP_EXTERN_C String_t* _stringLiteral6A7C5B87AC840B649D5115CC2F065246EA1D14D2; IL2CPP_EXTERN_C String_t* _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367; IL2CPP_EXTERN_C String_t* _stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9; IL2CPP_EXTERN_C String_t* _stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1; IL2CPP_EXTERN_C String_t* _stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437; IL2CPP_EXTERN_C String_t* _stringLiteral6ECB47BAE746457DBE91D0BA044A27960D4563D9; IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044; IL2CPP_EXTERN_C String_t* _stringLiteral705E2E4DA8BAADF981F701A6C65423C725FAFCA4; IL2CPP_EXTERN_C String_t* _stringLiteral7099A3052174F2598AADAA5FAD61FEC76E46D64F; IL2CPP_EXTERN_C String_t* _stringLiteral72FF14B4B66FD46769A50C19BE106295D013F7FA; IL2CPP_EXTERN_C String_t* _stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F; IL2CPP_EXTERN_C String_t* _stringLiteral766E767D6A87AB03C7C3410F3665A93D03D6E9FA; IL2CPP_EXTERN_C String_t* _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB; IL2CPP_EXTERN_C String_t* _stringLiteral77E83EB343C1814A5961E10409BC28F2A48C7E22; IL2CPP_EXTERN_C String_t* _stringLiteral7A5D0DE73AB75C5B7EE6ABF1E2442A67D3A3746C; IL2CPP_EXTERN_C String_t* _stringLiteral7B7577DF2515C03A262A50277B9E218048B228BB; IL2CPP_EXTERN_C String_t* _stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D; IL2CPP_EXTERN_C String_t* _stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3; IL2CPP_EXTERN_C String_t* _stringLiteral83882E2E410B213AB2B2289E29DC55945FAD39F3; IL2CPP_EXTERN_C String_t* _stringLiteral84151DE9802C0943FEB2C77FEF117D8E1026B86A; IL2CPP_EXTERN_C String_t* _stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88; IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral88B0F4492745F11C4B6C970B7204C62E64A1183E; IL2CPP_EXTERN_C String_t* _stringLiteral89337E2EE35A3C198227FBA81922CE5F0C58D97F; IL2CPP_EXTERN_C String_t* _stringLiteral8940E1FEA4EBF3CA20C44768AA93531C62B71B4A; IL2CPP_EXTERN_C String_t* _stringLiteral8C1D304CED4C13075109A2D82DE6D8D24A9E3678; IL2CPP_EXTERN_C String_t* _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48; IL2CPP_EXTERN_C String_t* _stringLiteral934962903D946CC131DF8E5E4E575453098EEF43; IL2CPP_EXTERN_C String_t* _stringLiteral979269FAE9C4200527FC6CE07752015D148FBC2E; IL2CPP_EXTERN_C String_t* _stringLiteral97A9FFA2774B057B3CB8403D1F4547E1AE1CDA4C; IL2CPP_EXTERN_C String_t* _stringLiteral9AD0BAB2813AC84F1BA06E134DA49490A035C21E; IL2CPP_EXTERN_C String_t* _stringLiteral9C48C24D4BF1ED95579220DFFA96B8E7E7AB87E0; IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; IL2CPP_EXTERN_C String_t* _stringLiteralA041A903507FD76791B65E77B8DA1BF219158F7D; IL2CPP_EXTERN_C String_t* _stringLiteralA29F3B17CF6E8054389BB8337ACBE5E4C8F4722B; IL2CPP_EXTERN_C String_t* _stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E; IL2CPP_EXTERN_C String_t* _stringLiteralA38CBCA4B2CB6DC99BB9B654C1998124F6581941; IL2CPP_EXTERN_C String_t* _stringLiteralAB277B5B1CF7C3380602834A207C18657E7B8A9F; IL2CPP_EXTERN_C String_t* _stringLiteralAC4E51EF398FD14BDDA545F219C5AB05C49CD591; IL2CPP_EXTERN_C String_t* _stringLiteralAD131E029E531EEF793FBF0B4609AC73AD1F372F; IL2CPP_EXTERN_C String_t* _stringLiteralAD522BF64F2D257409CB3BAC45086A2EA0B03C59; IL2CPP_EXTERN_C String_t* _stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F; IL2CPP_EXTERN_C String_t* _stringLiteralB1868FA5803D4E948C556DEC84B3C733E6C6863C; IL2CPP_EXTERN_C String_t* _stringLiteralB5D4739359E1E35BC7089600BD8DE3A87DC8D592; IL2CPP_EXTERN_C String_t* _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05; IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2; IL2CPP_EXTERN_C String_t* _stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B; IL2CPP_EXTERN_C String_t* _stringLiteralBB95AED94347EEEE80FE2B58CC6819F8D88029C9; IL2CPP_EXTERN_C String_t* _stringLiteralBBAA0AE1BC05CD8F3F881F4350A1BCAC87A11697; IL2CPP_EXTERN_C String_t* _stringLiteralBBBBDA89EC0528F6EC13A6F6C534B63E3F363875; IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; IL2CPP_EXTERN_C String_t* _stringLiteralBED927361BA852E2227DF19ED8AA3AB2D0C113E5; IL2CPP_EXTERN_C String_t* _stringLiteralBF01DC26A8B96F38F1947CC6D755E59C842307C8; IL2CPP_EXTERN_C String_t* _stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110; IL2CPP_EXTERN_C String_t* _stringLiteralC203279FC91536021E64CC54092300BDE54D3FEB; IL2CPP_EXTERN_C String_t* _stringLiteralC205D54CE3878136AF6661FE2D0B347BEC57D5AB; IL2CPP_EXTERN_C String_t* _stringLiteralC3EC0475D7BECB6F89847EE0E364B00D04507118; IL2CPP_EXTERN_C String_t* _stringLiteralC622F0B78799504E9F670AD20F9006F7BD480C1D; IL2CPP_EXTERN_C String_t* _stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944; IL2CPP_EXTERN_C String_t* _stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780; IL2CPP_EXTERN_C String_t* _stringLiteralC7A7939E82BEFEF8DDB755713442AA62963F09F8; IL2CPP_EXTERN_C String_t* _stringLiteralC94CA552630B8AC1ADF21BAF5252FC9092E4DDDC; IL2CPP_EXTERN_C String_t* _stringLiteralCA645ED4B07E7B41C211BD7FDE87069773914BF6; IL2CPP_EXTERN_C String_t* _stringLiteralCB2070BB5AC5DA50197474C74B7EA4D7BDEEBCB1; IL2CPP_EXTERN_C String_t* _stringLiteralCC1F7052057A1EC518E41F548AA4C5A4BA47C59D; IL2CPP_EXTERN_C String_t* _stringLiteralCEBC2707039661BD61D98F991B27F2B9CB160373; IL2CPP_EXTERN_C String_t* _stringLiteralD03C3C7F3A363D2E45775B1A6E39D7D5E5BEA998; IL2CPP_EXTERN_C String_t* _stringLiteralD29D7A474294CE305B3899F0EF058A660546CC77; IL2CPP_EXTERN_C String_t* _stringLiteralD525221FF38EAF1A30491622A0B39D5D960A7815; IL2CPP_EXTERN_C String_t* _stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA; IL2CPP_EXTERN_C String_t* _stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7; IL2CPP_EXTERN_C String_t* _stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142; IL2CPP_EXTERN_C String_t* _stringLiteralD9319D8D06606B8F2B10B57EBAABAE57F7D5B8E7; IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1; IL2CPP_EXTERN_C String_t* _stringLiteralD9AD03488C0FD2A5029083D5A67F58438C2A5CF1; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDC58D280C55C1737F31B2B62F2A84DF60BDDE197; IL2CPP_EXTERN_C String_t* _stringLiteralDEF7342DCBF4F4F80F2C4D42F5991B8E851510BD; IL2CPP_EXTERN_C String_t* _stringLiteralDEF871D9D8BC4EA6B73BA76904D036DFA754981F; IL2CPP_EXTERN_C String_t* _stringLiteralDF927B4144C20383150FDF84829FBD896D179787; IL2CPP_EXTERN_C String_t* _stringLiteralDFC500CF01D877A89AA3F6E3447F79A733BA63FF; IL2CPP_EXTERN_C String_t* _stringLiteralE048C911CC80F58A56909CF61926F34A8D80D097; IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC; IL2CPP_EXTERN_C String_t* _stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7; IL2CPP_EXTERN_C String_t* _stringLiteralE234C34099947BE8BB6C958B450C81758FC6EC63; IL2CPP_EXTERN_C String_t* _stringLiteralE2E7E0C8B04838BD9F2F8EC726E94F763A5EB694; IL2CPP_EXTERN_C String_t* _stringLiteralE3165827D406DD8F354BE7515C630A771E98916A; IL2CPP_EXTERN_C String_t* _stringLiteralE3AB954C27345B5777E41817C31696D6AC0E87C1; IL2CPP_EXTERN_C String_t* _stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29; IL2CPP_EXTERN_C String_t* _stringLiteralE5B7FB5BFBF1CF60857A40FCA10F830CC619AE16; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralE8EF143FC12E1038D8EDB7C9DD16A495861FBC7B; IL2CPP_EXTERN_C String_t* _stringLiteralEAA8D9C3445FEBFE3701DDB0406A86D63B80BB2F; IL2CPP_EXTERN_C String_t* _stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292; IL2CPP_EXTERN_C String_t* _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490; IL2CPP_EXTERN_C String_t* _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D; IL2CPP_EXTERN_C String_t* _stringLiteralECC5FBBC8E0BED3B8718D6E2160AD386C9CEC212; IL2CPP_EXTERN_C String_t* _stringLiteralECE7ACD2EBE43C9753D823F423714DB870E2FDC2; IL2CPP_EXTERN_C String_t* _stringLiteralF1DE54C9A1703F01C21264B713072AE50B7C6215; IL2CPP_EXTERN_C String_t* _stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35; IL2CPP_EXTERN_C String_t* _stringLiteralF4541B932FD6CC47E51779BE1ADC2CE3B2928831; IL2CPP_EXTERN_C String_t* _stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580; IL2CPP_EXTERN_C String_t* _stringLiteralF4E35F8C3B4DEB7662034D2DB84C95826A9E9496; IL2CPP_EXTERN_C String_t* _stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667; IL2CPP_EXTERN_C String_t* _stringLiteralF56887477425485B59C9C4926D0FEFC2946FA21E; IL2CPP_EXTERN_C String_t* _stringLiteralF68BE93499EBDA525EAB969E88B05907332F6184; IL2CPP_EXTERN_C String_t* _stringLiteralF8C01BF7792E7B3071B4216EB7ED47E83704D3C8; IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; IL2CPP_EXTERN_C String_t* _stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8; IL2CPP_EXTERN_C String_t* _stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21; IL2CPP_EXTERN_C const RuntimeMethod* CustomAttributeExtensions_GetCustomAttribute_TisXmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_m9A984C5391F697D8144A8A48173F577E765E977D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mBB79F63412D4B66F04533EE48909A593F7E11EB2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m66AE94E1BCD78D097CABE71BEF584B1F8F5C549C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m467FD97D8B6FDB9657193242324FDAFA10AFAB97_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m7B1612DAAC58ADB707313836D78A8FB4556FEBC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m985AB63BF8F899A5F0AD7E446613C7201502F386_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmptyEnumerator_System_Collections_IEnumerator_get_Current_m13A95A923D46B58867AFB2C65E5BC25F28885F9D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumMap_GetEnumName_m27EE7F778C8E65530E97367331A14ABA2A86BC39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumMap_GetXmlName_m2B4CC2E29F4D6784DCE7B466E862A040DD885155_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mAF5AC8910C4D76BA22A0AF4C6B770B9F7DB161BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mF539B3DCF94C4A0F31CEAD36C1E5524F637761FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m6449672B64AE061714A6FA02374FDB83698F77C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListMap_FindElement_m941772622DB0DC28973A1BD07F814400F74F661D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m550B08E5B1CAC2F05E719BDB5A748EC580C826F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAB5F7D0019E8BE4E5C283771D17AE3E102AABAC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NameTable_Add_mFAC405992E1A1D6249B89385195AE8EC6A9A4BCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NameTable_Get_m37C26ECD83DA1BBDA73BE202814DD1CC5CE8D9AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NamespaceListNode_ConstructPos_mA0501C5C1CCB29FCBF3FA3623A7B4B03419F7312_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NamespaceListNode_get_IsNullable_mD3115EB3CB9CE994333EEB2A726644BC5F376C66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NamespaceList_get_Enumerate_m287DD831CF2AE5099998D22EFCEA6769A9D546B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ParticleContentValidator_CheckCMUPAWithLeafRangeNodes_m57640135F9E9E950375B988EC29737A882B3276E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ParticleContentValidator_CheckUniqueParticleAttribution_m6C017664467EEE3561D4703FFAF0C2519A94D752_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReflectionHelper_CheckSerializableType_m9EC0F006F23E70D9441DA9CED140A631D1B31DA8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SecureStringHasher_GetHashCodeOfString_m1EFCFF9DC803E191D55AA0B2EBE8B615A358990B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mE1E83DFD991F38A796542E364FBD8506D62B0329_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m9954EB178F71F876D5CC04E2B2D2A2CF2E511EA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_mA968561DF990D7304E52EB03EAD5DB4D21D620D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_mD1B493AD690EC374489F4BD30DACA1B208E8CB79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeTranslator_GetPrimitiveTypeData_mC96665826943DFE7C0E86BF37FD8AE2AF6FDFA39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeTranslator_GetTypeData_m34ECB131DF1502AA0C92FEFCDBB86D0192F486C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeTranslator_ParseArrayType_m1459847CBB1E5C0C403916B7AB40E1C415B37920_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UTF16Decoder_GetCharCount_m61272138BC9505C01E304C25B14645B190DB8DFE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ucs4Decoder1234_GetFullChars_m417E203046FC359AEF31071D76B35AAF9BC1CF70_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ucs4Decoder2143_GetFullChars_m64657C52D59FE42469C95B6AA3EB1621C753D9B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ucs4Decoder3412_GetFullChars_m97832889707DA6CBA62C3A964F521165AC4E9B65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ucs4Decoder4321_GetFullChars_m97A1B59D2A0586C88D58A96592FA3D30034088B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ucs4Encoding_GetByteCount_mAD24C5C660223A39CB8F6DD2A416BF5159E915C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m0035310347EE2F2EF4A5D45CD824E62672619E57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_GetHashCode_m934E6CFF8E7436CDBD30AA29FE20CA679A7EA7C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m0145B7950DCE3F068F801D08D21256CFB72AC610_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m17622C9FEE8FDDD11F404887C6F3E22571F1827F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m4B244DAF61625C03AD5AC89B34EA1155210604AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m4BB0C8E9C6DAC3D484C09442016A2FF960E097A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m504E61FDF86EF7A59BFC012ECE23FD8C05C14F4A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m5974023A61DE8B33DF5B1325A4C3E168A1AC15FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_m95FC78819D2AAFF667A56524B9783232BD56AB92_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ChangeType_mCB6F8A0EF4BB9EE3B855709AE2327C6657C360A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToBoolean_m2CD2B17160CF412C0C251CD887B1798C6BA7815C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToDateTimeOffset_mB9A17B77FD5C826AC0C630370C262D6B16A47EB2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToDateTime_mCE920B511EFF1EDD4090BCBF12B5B804DFE3101C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToDecimal_mA8EBDC5F0A210F840F4BFA66F49FA568F0EDEBD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToDouble_m0CC27BCE8F42F02999922F56E09D5334B59F16DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToInt32_mDFF02B10FCD6D1CAF1A0F7FA8D860347DCFA5A7B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToInt64_mEB55EBE2EA6C818972068626684FB5E75BDE1F68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToNavigator_m9A741700EB0DDF11F2B964C9024404C3691A542A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAnyConverter_ToSingle_m14D22E1D794D24E3AE12B121086F53AFB86DA55D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IXmlSerializable_t5BEF028D2890007426B01C2B934C2469498B8013_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t4EDBE007AFFA0315135B9A508DACA62D3C201867_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlElement_tF11C508FEEF5FBE169DCE4A7538BE55B1F0C4BCF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7;; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com;; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke;; struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; struct BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B; struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B; struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; struct XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986; struct EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868; struct EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D; 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.Object // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE42F4CA2251E4564157940892384BFB9EBE58D61* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t1A5E6B675EFA5A7901D7B04966A914995A34ECFF * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t530059B6E09E07208AE8745C3EA5EC32BA6C17F6 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___entries_1)); } inline EntryU5BU5D_tE42F4CA2251E4564157940892384BFB9EBE58D61* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE42F4CA2251E4564157940892384BFB9EBE58D61** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE42F4CA2251E4564157940892384BFB9EBE58D61* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___keys_7)); } inline KeyCollection_t1A5E6B675EFA5A7901D7B04966A914995A34ECFF * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A5E6B675EFA5A7901D7B04966A914995A34ECFF ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A5E6B675EFA5A7901D7B04966A914995A34ECFF * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ___values_8)); } inline ValueCollection_t530059B6E09E07208AE8745C3EA5EC32BA6C17F6 * get_values_8() const { return ___values_8; } inline ValueCollection_t530059B6E09E07208AE8745C3EA5EC32BA6C17F6 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t530059B6E09E07208AE8745C3EA5EC32BA6C17F6 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB995B2E54E55DB21952952A5F1056F84E5721683* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tE22F4D23A741E95A221257E03F5AEC99BCEDE61F * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tD9F8742BCDE46BE10F45030D7DEE230F8F9D24FA * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___entries_1)); } inline EntryU5BU5D_tB995B2E54E55DB21952952A5F1056F84E5721683* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB995B2E54E55DB21952952A5F1056F84E5721683** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB995B2E54E55DB21952952A5F1056F84E5721683* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___keys_7)); } inline KeyCollection_tE22F4D23A741E95A221257E03F5AEC99BCEDE61F * get_keys_7() const { return ___keys_7; } inline KeyCollection_tE22F4D23A741E95A221257E03F5AEC99BCEDE61F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tE22F4D23A741E95A221257E03F5AEC99BCEDE61F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ___values_8)); } inline ValueCollection_tD9F8742BCDE46BE10F45030D7DEE230F8F9D24FA * get_values_8() const { return ___values_8; } inline ValueCollection_tD9F8742BCDE46BE10F45030D7DEE230F8F9D24FA ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tD9F8742BCDE46BE10F45030D7DEE230F8F9D24FA * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___entries_1)); } inline EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___keys_7)); } inline KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___values_8)); } inline ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * get_values_8() const { return ___values_8; } inline ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tDF263570453ED61DC82F1B72F9B1F10CF0C186FE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t5FE0EB338810A83B845B900E60A4E065E1E8AB68 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tA992FE5AE14BF1BD39743AC399EF95B64E8AFC42 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___entries_1)); } inline EntryU5BU5D_tDF263570453ED61DC82F1B72F9B1F10CF0C186FE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tDF263570453ED61DC82F1B72F9B1F10CF0C186FE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tDF263570453ED61DC82F1B72F9B1F10CF0C186FE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___keys_7)); } inline KeyCollection_t5FE0EB338810A83B845B900E60A4E065E1E8AB68 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5FE0EB338810A83B845B900E60A4E065E1E8AB68 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5FE0EB338810A83B845B900E60A4E065E1E8AB68 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ___values_8)); } inline ValueCollection_tA992FE5AE14BF1BD39743AC399EF95B64E8AFC42 * get_values_8() const { return ___values_8; } inline ValueCollection_tA992FE5AE14BF1BD39743AC399EF95B64E8AFC42 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA992FE5AE14BF1BD39743AC399EF95B64E8AFC42 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t830E5130B05E1143F4ECA59D1CE8BD64AC3F7E2F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tFEE8457FE221E239778EE686C6BB8756470C8987 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___entries_1)); } inline EntryU5BU5D_t830E5130B05E1143F4ECA59D1CE8BD64AC3F7E2F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t830E5130B05E1143F4ECA59D1CE8BD64AC3F7E2F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t830E5130B05E1143F4ECA59D1CE8BD64AC3F7E2F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___keys_7)); } inline KeyCollection_tFEE8457FE221E239778EE686C6BB8756470C8987 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tFEE8457FE221E239778EE686C6BB8756470C8987 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tFEE8457FE221E239778EE686C6BB8756470C8987 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ___values_8)); } inline ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * get_values_8() const { return ___values_8; } inline ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5AD4BA39F55C5C698AD90B02326A2225C5D56221* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tFCF38642F5CB0A86A6B4EC75E8BF5C9A8C4D0122 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tECAE69F11CA0C245794C99313E46CEAB79289400 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___entries_1)); } inline EntryU5BU5D_t5AD4BA39F55C5C698AD90B02326A2225C5D56221* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5AD4BA39F55C5C698AD90B02326A2225C5D56221** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5AD4BA39F55C5C698AD90B02326A2225C5D56221* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___keys_7)); } inline KeyCollection_tFCF38642F5CB0A86A6B4EC75E8BF5C9A8C4D0122 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tFCF38642F5CB0A86A6B4EC75E8BF5C9A8C4D0122 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tFCF38642F5CB0A86A6B4EC75E8BF5C9A8C4D0122 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ___values_8)); } inline ValueCollection_tECAE69F11CA0C245794C99313E46CEAB79289400 * get_values_8() const { return ___values_8; } inline ValueCollection_tECAE69F11CA0C245794C99313E46CEAB79289400 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tECAE69F11CA0C245794C99313E46CEAB79289400 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA3DDC0B951DBF95A552959A08A07C10A84E89DA0* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t030E8C0717067BB35BC97531ADFD5B34DE81E372 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t0A13A40E317C41D701F731B2E09A7863C1AF1C9E * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___entries_1)); } inline EntryU5BU5D_tA3DDC0B951DBF95A552959A08A07C10A84E89DA0* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA3DDC0B951DBF95A552959A08A07C10A84E89DA0** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA3DDC0B951DBF95A552959A08A07C10A84E89DA0* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___keys_7)); } inline KeyCollection_t030E8C0717067BB35BC97531ADFD5B34DE81E372 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t030E8C0717067BB35BC97531ADFD5B34DE81E372 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t030E8C0717067BB35BC97531ADFD5B34DE81E372 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ___values_8)); } inline ValueCollection_t0A13A40E317C41D701F731B2E09A7863C1AF1C9E * get_values_8() const { return ___values_8; } inline ValueCollection_t0A13A40E317C41D701F731B2E09A7863C1AF1C9E ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0A13A40E317C41D701F731B2E09A7863C1AF1C9E * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75, ____items_1)); } inline IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0* get__items_1() const { return ____items_1; } inline IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0** get_address_of__items_1() { return &____items_1; } inline void set__items_1(IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.Stack`1 struct Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array InteriorNodeU5BU5D_t88A9EC994264F6AB64D466B2BF66D5D270F65E4C* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B, ____array_0)); } inline InteriorNodeU5BU5D_t88A9EC994264F6AB64D466B2BF66D5D270F65E4C* get__array_0() const { return ____array_0; } inline InteriorNodeU5BU5D_t88A9EC994264F6AB64D466B2BF66D5D270F65E4C** get_address_of__array_0() { return &____array_0; } inline void set__array_0(InteriorNodeU5BU5D_t88A9EC994264F6AB64D466B2BF66D5D270F65E4C* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Collections.Generic.Stack`1 struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____array_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Collections.Generic.Stack`1 struct Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0, ____array_0)); } inline SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* get__array_0() const { return ____array_0; } inline SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF** get_address_of__array_0() { return &____array_0; } inline void set__array_0(SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D, ___dictionary_0)); } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 : public RuntimeObject { public: // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_0; // System.Int32 System.Collections.ArrayList::_size int32_t ____size_1; // System.Int32 System.Collections.ArrayList::_version int32_t ____version_2; // System.Object System.Collections.ArrayList::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__items_0() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____items_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_0() const { return ____items_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_0() { return &____items_0; } inline void set__items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject { public: public: }; // System.Xml.Schema.BaseValidator struct BaseValidator_t4ACE6491BFDD78F3B8F746885ADBA13B631AD2A9 : public RuntimeObject { public: public: }; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 : public RuntimeObject { public: public: }; // System.BitConverter struct BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654 : public RuntimeObject { public: public: }; // System.Xml.Schema.BitSet struct BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 : public RuntimeObject { public: // System.Int32 System.Xml.Schema.BitSet::count int32_t ___count_0; // System.UInt32[] System.Xml.Schema.BitSet::bits UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___bits_1; public: inline static int32_t get_offset_of_count_0() { return static_cast(offsetof(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_bits_1() { return static_cast(offsetof(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438, ___bits_1)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_bits_1() const { return ___bits_1; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_bits_1() { return &___bits_1; } inline void set_bits_1(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___bits_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___bits_1), (void*)value); } }; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject { public: // 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_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___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_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___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_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_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_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___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_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_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_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___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_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 : public RuntimeObject { public: // System.Text.DecoderFallback System.Text.Decoder::m_fallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___m_fallback_0; // System.Text.DecoderFallbackBuffer System.Text.Decoder::m_fallbackBuffer DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B * ___m_fallbackBuffer_1; public: inline static int32_t get_offset_of_m_fallback_0() { return static_cast(offsetof(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370, ___m_fallback_0)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_m_fallback_0() const { return ___m_fallback_0; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_m_fallback_0() { return &___m_fallback_0; } inline void set_m_fallback_0(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___m_fallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fallback_0), (void*)value); } inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast(offsetof(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370, ___m_fallbackBuffer_1)); } inline DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; } inline DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; } inline void set_m_fallbackBuffer_1(DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B * value) { ___m_fallbackBuffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value); } }; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 : public RuntimeObject { public: public: }; // System.Text.Encoder struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A : public RuntimeObject { public: // System.Text.EncoderFallback System.Text.Encoder::m_fallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___m_fallback_0; // System.Text.EncoderFallbackBuffer System.Text.Encoder::m_fallbackBuffer EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 * ___m_fallbackBuffer_1; public: inline static int32_t get_offset_of_m_fallback_0() { return static_cast(offsetof(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A, ___m_fallback_0)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_m_fallback_0() const { return ___m_fallback_0; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_m_fallback_0() { return &___m_fallback_0; } inline void set_m_fallback_0(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___m_fallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fallback_0), (void*)value); } inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast(offsetof(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A, ___m_fallbackBuffer_1)); } inline EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; } inline EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; } inline void set_m_fallbackBuffer_1(EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 * value) { ___m_fallbackBuffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value); } }; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___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_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_10)); } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_13)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_14)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA : public RuntimeObject { public: public: }; // System.Xml.Schema.FacetsChecker struct FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 : public RuntimeObject { public: public: }; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 : public RuntimeObject { public: public: }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Xml.Serialization.ObjectMap struct ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C : public RuntimeObject { public: public: }; // System.Xml.OpenedHost struct OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D : public RuntimeObject { public: // System.Int32 System.Xml.OpenedHost::nonCachedConnectionsCount int32_t ___nonCachedConnectionsCount_0; public: inline static int32_t get_offset_of_nonCachedConnectionsCount_0() { return static_cast(offsetof(OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D, ___nonCachedConnectionsCount_0)); } inline int32_t get_nonCachedConnectionsCount_0() const { return ___nonCachedConnectionsCount_0; } inline int32_t* get_address_of_nonCachedConnectionsCount_0() { return &___nonCachedConnectionsCount_0; } inline void set_nonCachedConnectionsCount_0(int32_t value) { ___nonCachedConnectionsCount_0 = value; } }; // System.Xml.Schema.Positions struct Positions_t577D66E21F674149C5A3E68851CE88B94C37248F : public RuntimeObject { public: // System.Collections.ArrayList System.Xml.Schema.Positions::positions ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___positions_0; public: inline static int32_t get_offset_of_positions_0() { return static_cast(offsetof(Positions_t577D66E21F674149C5A3E68851CE88B94C37248F, ___positions_0)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_positions_0() const { return ___positions_0; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_positions_0() { return &___positions_0; } inline void set_positions_0(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___positions_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___positions_0), (void*)value); } }; // System.Collections.Queue struct Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 : public RuntimeObject { public: // System.Object[] System.Collections.Queue::_array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0; // System.Int32 System.Collections.Queue::_head int32_t ____head_1; // System.Int32 System.Collections.Queue::_tail int32_t ____tail_2; // System.Int32 System.Collections.Queue::_size int32_t ____size_3; // System.Int32 System.Collections.Queue::_growFactor int32_t ____growFactor_4; // System.Int32 System.Collections.Queue::_version int32_t ____version_5; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52, ____array_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__head_1() { return static_cast(offsetof(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52, ____head_1)); } inline int32_t get__head_1() const { return ____head_1; } inline int32_t* get_address_of__head_1() { return &____head_1; } inline void set__head_1(int32_t value) { ____head_1 = value; } inline static int32_t get_offset_of__tail_2() { return static_cast(offsetof(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52, ____tail_2)); } inline int32_t get__tail_2() const { return ____tail_2; } inline int32_t* get_address_of__tail_2() { return &____tail_2; } inline void set__tail_2(int32_t value) { ____tail_2 = value; } inline static int32_t get_offset_of__size_3() { return static_cast(offsetof(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52, ____size_3)); } inline int32_t get__size_3() const { return ____size_3; } inline int32_t* get_address_of__size_3() { return &____size_3; } inline void set__size_3(int32_t value) { ____size_3 = value; } inline static int32_t get_offset_of__growFactor_4() { return static_cast(offsetof(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52, ____growFactor_4)); } inline int32_t get__growFactor_4() const { return ____growFactor_4; } inline int32_t* get_address_of__growFactor_4() { return &____growFactor_4; } inline void set__growFactor_4(int32_t value) { ____growFactor_4 = value; } inline static int32_t get_offset_of__version_5() { return static_cast(offsetof(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52, ____version_5)); } inline int32_t get__version_5() const { return ____version_5; } inline int32_t* get_address_of__version_5() { return &____version_5; } inline void set__version_5(int32_t value) { ____version_5 = value; } }; // System.Xml.Ref struct Ref_tD484B5079EAC88353069B2F1326BF349A71AF2B2 : public RuntimeObject { public: public: }; // System.Xml.Serialization.ReflectionHelper struct ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064 : public RuntimeObject { public: // System.Collections.Hashtable System.Xml.Serialization.ReflectionHelper::_clrTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____clrTypes_0; // System.Collections.Hashtable System.Xml.Serialization.ReflectionHelper::_schemaTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____schemaTypes_1; public: inline static int32_t get_offset_of__clrTypes_0() { return static_cast(offsetof(ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064, ____clrTypes_0)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__clrTypes_0() const { return ____clrTypes_0; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__clrTypes_0() { return &____clrTypes_0; } inline void set__clrTypes_0(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____clrTypes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____clrTypes_0), (void*)value); } inline static int32_t get_offset_of__schemaTypes_1() { return static_cast(offsetof(ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064, ____schemaTypes_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__schemaTypes_1() const { return ____schemaTypes_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__schemaTypes_1() { return &____schemaTypes_1; } inline void set__schemaTypes_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____schemaTypes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____schemaTypes_1), (void*)value); } }; // System.Xml.Res struct Res_t8707C30091CC714404BA967631E1F74B8ACBB1E4 : public RuntimeObject { public: public: }; // SR struct SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957 : public RuntimeObject { public: public: }; // System.Xml.Schema.SchemaEntity struct SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E : public RuntimeObject { public: // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::qname XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname_0; // System.String System.Xml.Schema.SchemaEntity::url String_t* ___url_1; // System.String System.Xml.Schema.SchemaEntity::pubid String_t* ___pubid_2; // System.String System.Xml.Schema.SchemaEntity::text String_t* ___text_3; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::ndata XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___ndata_4; // System.Int32 System.Xml.Schema.SchemaEntity::lineNumber int32_t ___lineNumber_5; // System.Int32 System.Xml.Schema.SchemaEntity::linePosition int32_t ___linePosition_6; // System.Boolean System.Xml.Schema.SchemaEntity::isParameter bool ___isParameter_7; // System.Boolean System.Xml.Schema.SchemaEntity::isExternal bool ___isExternal_8; // System.Boolean System.Xml.Schema.SchemaEntity::parsingInProgress bool ___parsingInProgress_9; // System.Boolean System.Xml.Schema.SchemaEntity::isDeclaredInExternal bool ___isDeclaredInExternal_10; // System.String System.Xml.Schema.SchemaEntity::baseURI String_t* ___baseURI_11; // System.String System.Xml.Schema.SchemaEntity::declaredURI String_t* ___declaredURI_12; public: inline static int32_t get_offset_of_qname_0() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___qname_0)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_qname_0() const { return ___qname_0; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_qname_0() { return &___qname_0; } inline void set_qname_0(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___qname_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___qname_0), (void*)value); } inline static int32_t get_offset_of_url_1() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___url_1)); } inline String_t* get_url_1() const { return ___url_1; } inline String_t** get_address_of_url_1() { return &___url_1; } inline void set_url_1(String_t* value) { ___url_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___url_1), (void*)value); } inline static int32_t get_offset_of_pubid_2() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___pubid_2)); } inline String_t* get_pubid_2() const { return ___pubid_2; } inline String_t** get_address_of_pubid_2() { return &___pubid_2; } inline void set_pubid_2(String_t* value) { ___pubid_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___pubid_2), (void*)value); } inline static int32_t get_offset_of_text_3() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___text_3)); } inline String_t* get_text_3() const { return ___text_3; } inline String_t** get_address_of_text_3() { return &___text_3; } inline void set_text_3(String_t* value) { ___text_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___text_3), (void*)value); } inline static int32_t get_offset_of_ndata_4() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___ndata_4)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_ndata_4() const { return ___ndata_4; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_ndata_4() { return &___ndata_4; } inline void set_ndata_4(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___ndata_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ndata_4), (void*)value); } inline static int32_t get_offset_of_lineNumber_5() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___lineNumber_5)); } inline int32_t get_lineNumber_5() const { return ___lineNumber_5; } inline int32_t* get_address_of_lineNumber_5() { return &___lineNumber_5; } inline void set_lineNumber_5(int32_t value) { ___lineNumber_5 = value; } inline static int32_t get_offset_of_linePosition_6() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___linePosition_6)); } inline int32_t get_linePosition_6() const { return ___linePosition_6; } inline int32_t* get_address_of_linePosition_6() { return &___linePosition_6; } inline void set_linePosition_6(int32_t value) { ___linePosition_6 = value; } inline static int32_t get_offset_of_isParameter_7() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___isParameter_7)); } inline bool get_isParameter_7() const { return ___isParameter_7; } inline bool* get_address_of_isParameter_7() { return &___isParameter_7; } inline void set_isParameter_7(bool value) { ___isParameter_7 = value; } inline static int32_t get_offset_of_isExternal_8() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___isExternal_8)); } inline bool get_isExternal_8() const { return ___isExternal_8; } inline bool* get_address_of_isExternal_8() { return &___isExternal_8; } inline void set_isExternal_8(bool value) { ___isExternal_8 = value; } inline static int32_t get_offset_of_parsingInProgress_9() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___parsingInProgress_9)); } inline bool get_parsingInProgress_9() const { return ___parsingInProgress_9; } inline bool* get_address_of_parsingInProgress_9() { return &___parsingInProgress_9; } inline void set_parsingInProgress_9(bool value) { ___parsingInProgress_9 = value; } inline static int32_t get_offset_of_isDeclaredInExternal_10() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___isDeclaredInExternal_10)); } inline bool get_isDeclaredInExternal_10() const { return ___isDeclaredInExternal_10; } inline bool* get_address_of_isDeclaredInExternal_10() { return &___isDeclaredInExternal_10; } inline void set_isDeclaredInExternal_10(bool value) { ___isDeclaredInExternal_10 = value; } inline static int32_t get_offset_of_baseURI_11() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___baseURI_11)); } inline String_t* get_baseURI_11() const { return ___baseURI_11; } inline String_t** get_address_of_baseURI_11() { return &___baseURI_11; } inline void set_baseURI_11(String_t* value) { ___baseURI_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseURI_11), (void*)value); } inline static int32_t get_offset_of_declaredURI_12() { return static_cast(offsetof(SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E, ___declaredURI_12)); } inline String_t* get_declaredURI_12() const { return ___declaredURI_12; } inline String_t** get_address_of_declaredURI_12() { return &___declaredURI_12; } inline void set_declaredURI_12(String_t* value) { ___declaredURI_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___declaredURI_12), (void*)value); } }; // System.Xml.Schema.SchemaNotation struct SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED : public RuntimeObject { public: // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNotation::name XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name_0; // System.String System.Xml.Schema.SchemaNotation::systemLiteral String_t* ___systemLiteral_1; // System.String System.Xml.Schema.SchemaNotation::pubid String_t* ___pubid_2; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED, ___name_0)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_name_0() const { return ___name_0; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_name_0() { return &___name_0; } inline void set_name_0(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_systemLiteral_1() { return static_cast(offsetof(SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED, ___systemLiteral_1)); } inline String_t* get_systemLiteral_1() const { return ___systemLiteral_1; } inline String_t** get_address_of_systemLiteral_1() { return &___systemLiteral_1; } inline void set_systemLiteral_1(String_t* value) { ___systemLiteral_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___systemLiteral_1), (void*)value); } inline static int32_t get_offset_of_pubid_2() { return static_cast(offsetof(SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED, ___pubid_2)); } inline String_t* get_pubid_2() const { return ___pubid_2; } inline String_t** get_address_of_pubid_2() { return &___pubid_2; } inline void set_pubid_2(String_t* value) { ___pubid_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___pubid_2), (void*)value); } }; // System.Xml.SecureStringHasher struct SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A : public RuntimeObject { public: // System.Int32 System.Xml.SecureStringHasher::hashCodeRandomizer int32_t ___hashCodeRandomizer_1; public: inline static int32_t get_offset_of_hashCodeRandomizer_1() { return static_cast(offsetof(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A, ___hashCodeRandomizer_1)); } inline int32_t get_hashCodeRandomizer_1() const { return ___hashCodeRandomizer_1; } inline int32_t* get_address_of_hashCodeRandomizer_1() { return &___hashCodeRandomizer_1; } inline void set_hashCodeRandomizer_1(int32_t value) { ___hashCodeRandomizer_1 = value; } }; // System.Collections.Stack struct Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 : public RuntimeObject { public: // System.Object[] System.Collections.Stack::_array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0; // System.Int32 System.Collections.Stack::_size int32_t ____size_1; // System.Int32 System.Collections.Stack::_version int32_t ____version_2; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8, ____array_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___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; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.Xml.Schema.SymbolsDictionary struct SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF : public RuntimeObject { public: // System.Int32 System.Xml.Schema.SymbolsDictionary::last int32_t ___last_0; // System.Collections.Hashtable System.Xml.Schema.SymbolsDictionary::names Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___names_1; // System.Collections.Hashtable System.Xml.Schema.SymbolsDictionary::wildcards Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___wildcards_2; // System.Collections.ArrayList System.Xml.Schema.SymbolsDictionary::particles ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___particles_3; // System.Object System.Xml.Schema.SymbolsDictionary::particleLast RuntimeObject * ___particleLast_4; // System.Boolean System.Xml.Schema.SymbolsDictionary::isUpaEnforced bool ___isUpaEnforced_5; public: inline static int32_t get_offset_of_last_0() { return static_cast(offsetof(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF, ___last_0)); } inline int32_t get_last_0() const { return ___last_0; } inline int32_t* get_address_of_last_0() { return &___last_0; } inline void set_last_0(int32_t value) { ___last_0 = value; } inline static int32_t get_offset_of_names_1() { return static_cast(offsetof(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF, ___names_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_names_1() const { return ___names_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_names_1() { return &___names_1; } inline void set_names_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___names_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___names_1), (void*)value); } inline static int32_t get_offset_of_wildcards_2() { return static_cast(offsetof(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF, ___wildcards_2)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_wildcards_2() const { return ___wildcards_2; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_wildcards_2() { return &___wildcards_2; } inline void set_wildcards_2(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___wildcards_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___wildcards_2), (void*)value); } inline static int32_t get_offset_of_particles_3() { return static_cast(offsetof(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF, ___particles_3)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_particles_3() const { return ___particles_3; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_particles_3() { return &___particles_3; } inline void set_particles_3(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___particles_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___particles_3), (void*)value); } inline static int32_t get_offset_of_particleLast_4() { return static_cast(offsetof(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF, ___particleLast_4)); } inline RuntimeObject * get_particleLast_4() const { return ___particleLast_4; } inline RuntimeObject ** get_address_of_particleLast_4() { return &___particleLast_4; } inline void set_particleLast_4(RuntimeObject * value) { ___particleLast_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___particleLast_4), (void*)value); } inline static int32_t get_offset_of_isUpaEnforced_5() { return static_cast(offsetof(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF, ___isUpaEnforced_5)); } inline bool get_isUpaEnforced_5() const { return ___isUpaEnforced_5; } inline bool* get_address_of_isUpaEnforced_5() { return &___isUpaEnforced_5; } inline void set_isUpaEnforced_5(bool value) { ___isUpaEnforced_5 = value; } }; // System.Xml.Schema.SyntaxTreeNode struct SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 : public RuntimeObject { public: public: }; // System.Xml.Serialization.TypeMember struct TypeMember_t8F822B48C520500825EE30B53C9F31070682019C : public RuntimeObject { public: // System.Type System.Xml.Serialization.TypeMember::type Type_t * ___type_0; // System.String System.Xml.Serialization.TypeMember::member String_t* ___member_1; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(TypeMember_t8F822B48C520500825EE30B53C9F31070682019C, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value); } inline static int32_t get_offset_of_member_1() { return static_cast(offsetof(TypeMember_t8F822B48C520500825EE30B53C9F31070682019C, ___member_1)); } inline String_t* get_member_1() const { return ___member_1; } inline String_t** get_address_of_member_1() { return &___member_1; } inline void set_member_1(String_t* value) { ___member_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___member_1), (void*)value); } }; // System.Xml.Serialization.TypeTranslator struct TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73 : public RuntimeObject { public: public: }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Xml.XPath.XPathDocument struct XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 : public RuntimeObject { public: // MS.Internal.Xml.Cache.XPathNode[] System.Xml.XPath.XPathDocument::pageXmlNmsp XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageXmlNmsp_0; // System.Int32 System.Xml.XPath.XPathDocument::idxXmlNmsp int32_t ___idxXmlNmsp_1; // System.Xml.XmlNameTable System.Xml.XPath.XPathDocument::nameTable XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nameTable_2; // System.Collections.Generic.Dictionary`2 System.Xml.XPath.XPathDocument::mapNmsp Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * ___mapNmsp_3; public: inline static int32_t get_offset_of_pageXmlNmsp_0() { return static_cast(offsetof(XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28, ___pageXmlNmsp_0)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_pageXmlNmsp_0() const { return ___pageXmlNmsp_0; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_pageXmlNmsp_0() { return &___pageXmlNmsp_0; } inline void set_pageXmlNmsp_0(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___pageXmlNmsp_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageXmlNmsp_0), (void*)value); } inline static int32_t get_offset_of_idxXmlNmsp_1() { return static_cast(offsetof(XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28, ___idxXmlNmsp_1)); } inline int32_t get_idxXmlNmsp_1() const { return ___idxXmlNmsp_1; } inline int32_t* get_address_of_idxXmlNmsp_1() { return &___idxXmlNmsp_1; } inline void set_idxXmlNmsp_1(int32_t value) { ___idxXmlNmsp_1 = value; } inline static int32_t get_offset_of_nameTable_2() { return static_cast(offsetof(XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28, ___nameTable_2)); } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * get_nameTable_2() const { return ___nameTable_2; } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 ** get_address_of_nameTable_2() { return &___nameTable_2; } inline void set_nameTable_2(XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * value) { ___nameTable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameTable_2), (void*)value); } inline static int32_t get_offset_of_mapNmsp_3() { return static_cast(offsetof(XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28, ___mapNmsp_3)); } inline Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * get_mapNmsp_3() const { return ___mapNmsp_3; } inline Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C ** get_address_of_mapNmsp_3() { return &___mapNmsp_3; } inline void set_mapNmsp_3(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * value) { ___mapNmsp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mapNmsp_3), (void*)value); } }; // System.Xml.XPath.XPathItem struct XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 : public RuntimeObject { public: public: }; // System.Xml.XPath.XPathNavigatorKeyComparer struct XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A : public RuntimeObject { public: public: }; // MS.Internal.Xml.Cache.XPathNodeHelper struct XPathNodeHelper_t99456967DBA5D2379EFF0407C14FB5292AEAF536 : public RuntimeObject { public: public: }; // MS.Internal.Xml.Cache.XPathNodeInfoAtom struct XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 : public RuntimeObject { public: // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::localName String_t* ___localName_0; // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::namespaceUri String_t* ___namespaceUri_1; // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::prefix String_t* ___prefix_2; // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeInfoAtom::pageParent XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageParent_3; // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeInfoAtom::pageSibling XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageSibling_4; // System.Xml.XPath.XPathDocument MS.Internal.Xml.Cache.XPathNodeInfoAtom::doc XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * ___doc_5; // System.Int32 MS.Internal.Xml.Cache.XPathNodeInfoAtom::lineNumBase int32_t ___lineNumBase_6; // System.Int32 MS.Internal.Xml.Cache.XPathNodeInfoAtom::linePosBase int32_t ___linePosBase_7; // MS.Internal.Xml.Cache.XPathNodePageInfo MS.Internal.Xml.Cache.XPathNodeInfoAtom::pageInfo XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * ___pageInfo_8; public: inline static int32_t get_offset_of_localName_0() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___localName_0)); } inline String_t* get_localName_0() const { return ___localName_0; } inline String_t** get_address_of_localName_0() { return &___localName_0; } inline void set_localName_0(String_t* value) { ___localName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___localName_0), (void*)value); } inline static int32_t get_offset_of_namespaceUri_1() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___namespaceUri_1)); } inline String_t* get_namespaceUri_1() const { return ___namespaceUri_1; } inline String_t** get_address_of_namespaceUri_1() { return &___namespaceUri_1; } inline void set_namespaceUri_1(String_t* value) { ___namespaceUri_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceUri_1), (void*)value); } inline static int32_t get_offset_of_prefix_2() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___prefix_2)); } inline String_t* get_prefix_2() const { return ___prefix_2; } inline String_t** get_address_of_prefix_2() { return &___prefix_2; } inline void set_prefix_2(String_t* value) { ___prefix_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_2), (void*)value); } inline static int32_t get_offset_of_pageParent_3() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___pageParent_3)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_pageParent_3() const { return ___pageParent_3; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_pageParent_3() { return &___pageParent_3; } inline void set_pageParent_3(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___pageParent_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageParent_3), (void*)value); } inline static int32_t get_offset_of_pageSibling_4() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___pageSibling_4)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_pageSibling_4() const { return ___pageSibling_4; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_pageSibling_4() { return &___pageSibling_4; } inline void set_pageSibling_4(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___pageSibling_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageSibling_4), (void*)value); } inline static int32_t get_offset_of_doc_5() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___doc_5)); } inline XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * get_doc_5() const { return ___doc_5; } inline XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 ** get_address_of_doc_5() { return &___doc_5; } inline void set_doc_5(XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * value) { ___doc_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___doc_5), (void*)value); } inline static int32_t get_offset_of_lineNumBase_6() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___lineNumBase_6)); } inline int32_t get_lineNumBase_6() const { return ___lineNumBase_6; } inline int32_t* get_address_of_lineNumBase_6() { return &___lineNumBase_6; } inline void set_lineNumBase_6(int32_t value) { ___lineNumBase_6 = value; } inline static int32_t get_offset_of_linePosBase_7() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___linePosBase_7)); } inline int32_t get_linePosBase_7() const { return ___linePosBase_7; } inline int32_t* get_address_of_linePosBase_7() { return &___linePosBase_7; } inline void set_linePosBase_7(int32_t value) { ___linePosBase_7 = value; } inline static int32_t get_offset_of_pageInfo_8() { return static_cast(offsetof(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6, ___pageInfo_8)); } inline XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * get_pageInfo_8() const { return ___pageInfo_8; } inline XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 ** get_address_of_pageInfo_8() { return &___pageInfo_8; } inline void set_pageInfo_8(XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * value) { ___pageInfo_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageInfo_8), (void*)value); } }; // MS.Internal.Xml.Cache.XPathNodePageInfo struct XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 : public RuntimeObject { public: // System.Int32 MS.Internal.Xml.Cache.XPathNodePageInfo::pageNum int32_t ___pageNum_0; // System.Int32 MS.Internal.Xml.Cache.XPathNodePageInfo::nodeCount int32_t ___nodeCount_1; // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodePageInfo::pageNext XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageNext_2; public: inline static int32_t get_offset_of_pageNum_0() { return static_cast(offsetof(XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708, ___pageNum_0)); } inline int32_t get_pageNum_0() const { return ___pageNum_0; } inline int32_t* get_address_of_pageNum_0() { return &___pageNum_0; } inline void set_pageNum_0(int32_t value) { ___pageNum_0 = value; } inline static int32_t get_offset_of_nodeCount_1() { return static_cast(offsetof(XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708, ___nodeCount_1)); } inline int32_t get_nodeCount_1() const { return ___nodeCount_1; } inline int32_t* get_address_of_nodeCount_1() { return &___nodeCount_1; } inline void set_nodeCount_1(int32_t value) { ___nodeCount_1 = value; } inline static int32_t get_offset_of_pageNext_2() { return static_cast(offsetof(XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708, ___pageNext_2)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_pageNext_2() const { return ___pageNext_2; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_pageNext_2() { return &___pageNext_2; } inline void set_pageNext_2(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___pageNext_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageNext_2), (void*)value); } }; // System.Xml.XmlNameTable struct XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 : public RuntimeObject { public: public: }; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 : public RuntimeObject { public: // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] System.Xml.XmlNamespaceManager::nsdecls NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5* ___nsdecls_0; // System.Int32 System.Xml.XmlNamespaceManager::lastDecl int32_t ___lastDecl_1; // System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nameTable_2; // System.Int32 System.Xml.XmlNamespaceManager::scopeId int32_t ___scopeId_3; // System.Collections.Generic.Dictionary`2 System.Xml.XmlNamespaceManager::hashTable Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___hashTable_4; // System.Boolean System.Xml.XmlNamespaceManager::useHashtable bool ___useHashtable_5; // System.String System.Xml.XmlNamespaceManager::xml String_t* ___xml_6; // System.String System.Xml.XmlNamespaceManager::xmlNs String_t* ___xmlNs_7; public: inline static int32_t get_offset_of_nsdecls_0() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___nsdecls_0)); } inline NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5* get_nsdecls_0() const { return ___nsdecls_0; } inline NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5** get_address_of_nsdecls_0() { return &___nsdecls_0; } inline void set_nsdecls_0(NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5* value) { ___nsdecls_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___nsdecls_0), (void*)value); } inline static int32_t get_offset_of_lastDecl_1() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___lastDecl_1)); } inline int32_t get_lastDecl_1() const { return ___lastDecl_1; } inline int32_t* get_address_of_lastDecl_1() { return &___lastDecl_1; } inline void set_lastDecl_1(int32_t value) { ___lastDecl_1 = value; } inline static int32_t get_offset_of_nameTable_2() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___nameTable_2)); } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * get_nameTable_2() const { return ___nameTable_2; } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 ** get_address_of_nameTable_2() { return &___nameTable_2; } inline void set_nameTable_2(XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * value) { ___nameTable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameTable_2), (void*)value); } inline static int32_t get_offset_of_scopeId_3() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___scopeId_3)); } inline int32_t get_scopeId_3() const { return ___scopeId_3; } inline int32_t* get_address_of_scopeId_3() { return &___scopeId_3; } inline void set_scopeId_3(int32_t value) { ___scopeId_3 = value; } inline static int32_t get_offset_of_hashTable_4() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___hashTable_4)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_hashTable_4() const { return ___hashTable_4; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_hashTable_4() { return &___hashTable_4; } inline void set_hashTable_4(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ___hashTable_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashTable_4), (void*)value); } inline static int32_t get_offset_of_useHashtable_5() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___useHashtable_5)); } inline bool get_useHashtable_5() const { return ___useHashtable_5; } inline bool* get_address_of_useHashtable_5() { return &___useHashtable_5; } inline void set_useHashtable_5(bool value) { ___useHashtable_5 = value; } inline static int32_t get_offset_of_xml_6() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___xml_6)); } inline String_t* get_xml_6() const { return ___xml_6; } inline String_t** get_address_of_xml_6() { return &___xml_6; } inline void set_xml_6(String_t* value) { ___xml_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___xml_6), (void*)value); } inline static int32_t get_offset_of_xmlNs_7() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___xmlNs_7)); } inline String_t* get_xmlNs_7() const { return ___xmlNs_7; } inline String_t** get_address_of_xmlNs_7() { return &___xmlNs_7; } inline void set_xmlNs_7(String_t* value) { ___xmlNs_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlNs_7), (void*)value); } }; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 : public RuntimeObject { public: // System.String System.Xml.XmlQualifiedName::name String_t* ___name_1; // System.String System.Xml.XmlQualifiedName::ns String_t* ___ns_2; // System.Int32 System.Xml.XmlQualifiedName::hash int32_t ___hash_3; public: inline static int32_t get_offset_of_name_1() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_ns_2() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905, ___ns_2)); } inline String_t* get_ns_2() const { return ___ns_2; } inline String_t** get_address_of_ns_2() { return &___ns_2; } inline void set_ns_2(String_t* value) { ___ns_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_2), (void*)value); } inline static int32_t get_offset_of_hash_3() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905, ___hash_3)); } inline int32_t get_hash_3() const { return ___hash_3; } inline int32_t* get_address_of_hash_3() { return &___hash_3; } inline void set_hash_3(int32_t value) { ___hash_3 = value; } }; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 : public RuntimeObject { public: public: }; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 : public RuntimeObject { public: public: }; // System.Xml.Schema.XmlValueConverter struct XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 : public RuntimeObject { public: public: }; // System.Xml.Serialization.EnumMap/EnumMapMember struct EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 : public RuntimeObject { public: // System.String System.Xml.Serialization.EnumMap/EnumMapMember::_xmlName String_t* ____xmlName_0; // System.String System.Xml.Serialization.EnumMap/EnumMapMember::_enumName String_t* ____enumName_1; // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::_value int64_t ____value_2; public: inline static int32_t get_offset_of__xmlName_0() { return static_cast(offsetof(EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78, ____xmlName_0)); } inline String_t* get__xmlName_0() const { return ____xmlName_0; } inline String_t** get_address_of__xmlName_0() { return &____xmlName_0; } inline void set__xmlName_0(String_t* value) { ____xmlName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____xmlName_0), (void*)value); } inline static int32_t get_offset_of__enumName_1() { return static_cast(offsetof(EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78, ____enumName_1)); } inline String_t* get__enumName_1() const { return ____enumName_1; } inline String_t** get_address_of__enumName_1() { return &____enumName_1; } inline void set__enumName_1(String_t* value) { ____enumName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____enumName_1), (void*)value); } inline static int32_t get_offset_of__value_2() { return static_cast(offsetof(EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78, ____value_2)); } inline int64_t get__value_2() const { return ____value_2; } inline int64_t* get_address_of__value_2() { return &____value_2; } inline void set__value_2(int64_t value) { ____value_2 = value; } }; // System.Xml.NameTable/Entry struct Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 : public RuntimeObject { public: // System.String System.Xml.NameTable/Entry::str String_t* ___str_0; // System.Int32 System.Xml.NameTable/Entry::hashCode int32_t ___hashCode_1; // System.Xml.NameTable/Entry System.Xml.NameTable/Entry::next Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * ___next_2; public: inline static int32_t get_offset_of_str_0() { return static_cast(offsetof(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239, ___str_0)); } inline String_t* get_str_0() const { return ___str_0; } inline String_t** get_address_of_str_0() { return &___str_0; } inline void set_str_0(String_t* value) { ___str_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value); } inline static int32_t get_offset_of_hashCode_1() { return static_cast(offsetof(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239, ___hashCode_1)); } inline int32_t get_hashCode_1() const { return ___hashCode_1; } inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; } inline void set_hashCode_1(int32_t value) { ___hashCode_1 = value; } inline static int32_t get_offset_of_next_2() { return static_cast(offsetof(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239, ___next_2)); } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * get_next_2() const { return ___next_2; } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 ** get_address_of_next_2() { return &___next_2; } inline void set_next_2(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * value) { ___next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_2), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator struct Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator struct Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5, ___dictionary_0)); } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast(offsetof(Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5, ___currentValue_3)); } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * get_currentValue_3() const { return ___currentValue_3; } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; // System.Decimal struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; // System.Xml.Schema.DtdValidator struct DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3 : public BaseValidator_t4ACE6491BFDD78F3B8F746885ADBA13B631AD2A9 { public: public: }; // System.Xml.Schema.DurationFacetsChecker struct DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Xml.Serialization.EnumMap struct EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC : public ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C { public: // System.Xml.Serialization.EnumMap/EnumMapMember[] System.Xml.Serialization.EnumMap::_members EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* ____members_0; // System.Boolean System.Xml.Serialization.EnumMap::_isFlags bool ____isFlags_1; // System.String[] System.Xml.Serialization.EnumMap::_enumNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____enumNames_2; // System.String[] System.Xml.Serialization.EnumMap::_xmlNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____xmlNames_3; // System.Int64[] System.Xml.Serialization.EnumMap::_values Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* ____values_4; public: inline static int32_t get_offset_of__members_0() { return static_cast(offsetof(EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC, ____members_0)); } inline EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* get__members_0() const { return ____members_0; } inline EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868** get_address_of__members_0() { return &____members_0; } inline void set__members_0(EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* value) { ____members_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____members_0), (void*)value); } inline static int32_t get_offset_of__isFlags_1() { return static_cast(offsetof(EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC, ____isFlags_1)); } inline bool get__isFlags_1() const { return ____isFlags_1; } inline bool* get_address_of__isFlags_1() { return &____isFlags_1; } inline void set__isFlags_1(bool value) { ____isFlags_1 = value; } inline static int32_t get_offset_of__enumNames_2() { return static_cast(offsetof(EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC, ____enumNames_2)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__enumNames_2() const { return ____enumNames_2; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__enumNames_2() { return &____enumNames_2; } inline void set__enumNames_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____enumNames_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____enumNames_2), (void*)value); } inline static int32_t get_offset_of__xmlNames_3() { return static_cast(offsetof(EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC, ____xmlNames_3)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__xmlNames_3() const { return ____xmlNames_3; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__xmlNames_3() { return &____xmlNames_3; } inline void set__xmlNames_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____xmlNames_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____xmlNames_3), (void*)value); } inline static int32_t get_offset_of__values_4() { return static_cast(offsetof(EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC, ____values_4)); } inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* get__values_4() const { return ____values_4; } inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6** get_address_of__values_4() { return &____values_4; } inline void set__values_4(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* value) { ____values_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____values_4), (void*)value); } }; // System.Xml.IncrementalReadDummyDecoder struct IncrementalReadDummyDecoder_tC63EFBDD75A4558B1A31CDA7814317CCF5E45C85 : public IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 { public: public: }; // System.Int16 struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int16_tD0F031114106263BB459DA1F099FF9F42691295A, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; // System.Xml.Schema.InteriorNode struct InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 : public SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 { public: // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::leftChild SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___leftChild_0; // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::rightChild SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___rightChild_1; public: inline static int32_t get_offset_of_leftChild_0() { return static_cast(offsetof(InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541, ___leftChild_0)); } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * get_leftChild_0() const { return ___leftChild_0; } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 ** get_address_of_leftChild_0() { return &___leftChild_0; } inline void set_leftChild_0(SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * value) { ___leftChild_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftChild_0), (void*)value); } inline static int32_t get_offset_of_rightChild_1() { return static_cast(offsetof(InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541, ___rightChild_1)); } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * get_rightChild_1() const { return ___rightChild_1; } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 ** get_address_of_rightChild_1() { return &___rightChild_1; } inline void set_rightChild_1(SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * value) { ___rightChild_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightChild_1), (void*)value); } }; // System.Xml.Schema.LeafNode struct LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC : public SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 { public: // System.Int32 System.Xml.Schema.LeafNode::pos int32_t ___pos_0; public: inline static int32_t get_offset_of_pos_0() { return static_cast(offsetof(LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC, ___pos_0)); } inline int32_t get_pos_0() const { return ___pos_0; } inline int32_t* get_address_of_pos_0() { return &___pos_0; } inline void set_pos_0(int32_t value) { ___pos_0 = value; } }; // System.Xml.LineInfo struct LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE { public: // System.Int32 System.Xml.LineInfo::lineNo int32_t ___lineNo_0; // System.Int32 System.Xml.LineInfo::linePos int32_t ___linePos_1; public: inline static int32_t get_offset_of_lineNo_0() { return static_cast(offsetof(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE, ___lineNo_0)); } inline int32_t get_lineNo_0() const { return ___lineNo_0; } inline int32_t* get_address_of_lineNo_0() { return &___lineNo_0; } inline void set_lineNo_0(int32_t value) { ___lineNo_0 = value; } inline static int32_t get_offset_of_linePos_1() { return static_cast(offsetof(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE, ___linePos_1)); } inline int32_t get_linePos_1() const { return ___linePos_1; } inline int32_t* get_address_of_linePos_1() { return &___linePos_1; } inline void set_linePos_1(int32_t value) { ___linePos_1 = value; } }; // System.Xml.Schema.ListFacetsChecker struct ListFacetsChecker_t7CF5BFF43213BA5ECCAA29ADC28F4BB87882CD46 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.Xml.Serialization.ListMap struct ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 : public ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C { public: // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::_itemInfo XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * ____itemInfo_0; // System.String System.Xml.Serialization.ListMap::_choiceMember String_t* ____choiceMember_1; public: inline static int32_t get_offset_of__itemInfo_0() { return static_cast(offsetof(ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948, ____itemInfo_0)); } inline XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * get__itemInfo_0() const { return ____itemInfo_0; } inline XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A ** get_address_of__itemInfo_0() { return &____itemInfo_0; } inline void set__itemInfo_0(XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * value) { ____itemInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____itemInfo_0), (void*)value); } inline static int32_t get_offset_of__choiceMember_1() { return static_cast(offsetof(ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948, ____choiceMember_1)); } inline String_t* get__choiceMember_1() const { return ____choiceMember_1; } inline String_t** get_address_of__choiceMember_1() { return &____choiceMember_1; } inline void set__choiceMember_1(String_t* value) { ____choiceMember_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____choiceMember_1), (void*)value); } }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Xml.Schema.MiscFacetsChecker struct MiscFacetsChecker_t39E6077D7971C53A40D38860A9418C695B194DB6 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.MonoTODOAttribute struct MonoTODOAttribute_tF8137E40759566B832E7E9EC86E2C824085A7F47 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: public: }; // System.Xml.NameTable struct NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 : public XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 { public: // System.Xml.NameTable/Entry[] System.Xml.NameTable::entries EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* ___entries_0; // System.Int32 System.Xml.NameTable::count int32_t ___count_1; // System.Int32 System.Xml.NameTable::mask int32_t ___mask_2; // System.Int32 System.Xml.NameTable::hashCodeRandomizer int32_t ___hashCodeRandomizer_3; public: inline static int32_t get_offset_of_entries_0() { return static_cast(offsetof(NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728, ___entries_0)); } inline EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* get_entries_0() const { return ___entries_0; } inline EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D** get_address_of_entries_0() { return &___entries_0; } inline void set_entries_0(EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* value) { ___entries_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_0), (void*)value); } inline static int32_t get_offset_of_count_1() { return static_cast(offsetof(NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728, ___count_1)); } inline int32_t get_count_1() const { return ___count_1; } inline int32_t* get_address_of_count_1() { return &___count_1; } inline void set_count_1(int32_t value) { ___count_1 = value; } inline static int32_t get_offset_of_mask_2() { return static_cast(offsetof(NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728, ___mask_2)); } inline int32_t get_mask_2() const { return ___mask_2; } inline int32_t* get_address_of_mask_2() { return &___mask_2; } inline void set_mask_2(int32_t value) { ___mask_2 = value; } inline static int32_t get_offset_of_hashCodeRandomizer_3() { return static_cast(offsetof(NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728, ___hashCodeRandomizer_3)); } inline int32_t get_hashCodeRandomizer_3() const { return ___hashCodeRandomizer_3; } inline int32_t* get_address_of_hashCodeRandomizer_3() { return &___hashCodeRandomizer_3; } inline void set_hashCodeRandomizer_3(int32_t value) { ___hashCodeRandomizer_3 = value; } }; // System.Xml.Schema.NamespaceListNode struct NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 : public SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 { public: // System.Xml.Schema.NamespaceList System.Xml.Schema.NamespaceListNode::namespaceList NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___namespaceList_0; // System.Object System.Xml.Schema.NamespaceListNode::particle RuntimeObject * ___particle_1; public: inline static int32_t get_offset_of_namespaceList_0() { return static_cast(offsetof(NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19, ___namespaceList_0)); } inline NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * get_namespaceList_0() const { return ___namespaceList_0; } inline NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A ** get_address_of_namespaceList_0() { return &___namespaceList_0; } inline void set_namespaceList_0(NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * value) { ___namespaceList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceList_0), (void*)value); } inline static int32_t get_offset_of_particle_1() { return static_cast(offsetof(NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19, ___particle_1)); } inline RuntimeObject * get_particle_1() const { return ___particle_1; } inline RuntimeObject ** get_address_of_particle_1() { return &___particle_1; } inline void set_particle_1(RuntimeObject * value) { ___particle_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___particle_1), (void*)value); } }; // System.Xml.Schema.Numeric2FacetsChecker struct Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.Reflection.ParameterModifier struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast(offsetof(ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA, ____byRef_0)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_com { int32_t* ____byRef_0; }; // System.Xml.Schema.Position struct Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 { public: // System.Int32 System.Xml.Schema.Position::symbol int32_t ___symbol_0; // System.Object System.Xml.Schema.Position::particle RuntimeObject * ___particle_1; public: inline static int32_t get_offset_of_symbol_0() { return static_cast(offsetof(Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866, ___symbol_0)); } inline int32_t get_symbol_0() const { return ___symbol_0; } inline int32_t* get_address_of_symbol_0() { return &___symbol_0; } inline void set_symbol_0(int32_t value) { ___symbol_0 = value; } inline static int32_t get_offset_of_particle_1() { return static_cast(offsetof(Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866, ___particle_1)); } inline RuntimeObject * get_particle_1() const { return ___particle_1; } inline RuntimeObject ** get_address_of_particle_1() { return &___particle_1; } inline void set_particle_1(RuntimeObject * value) { ___particle_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___particle_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.Position struct Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_pinvoke { int32_t ___symbol_0; Il2CppIUnknown* ___particle_1; }; // Native definition for COM marshalling of System.Xml.Schema.Position struct Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_com { int32_t ___symbol_0; Il2CppIUnknown* ___particle_1; }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.Xml.Schema.QNameFacetsChecker struct QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.Xml.SafeAsciiDecoder struct SafeAsciiDecoder_tCD1ACB5604E6CFBC5F4738EEDCF5EA3A9EA957EF : public Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 { public: public: }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.Xml.Schema.StringFacetsChecker struct StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.Xml.UTF16Decoder struct UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4 : public Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 { public: // System.Boolean System.Xml.UTF16Decoder::bigEndian bool ___bigEndian_2; // System.Int32 System.Xml.UTF16Decoder::lastByte int32_t ___lastByte_3; public: inline static int32_t get_offset_of_bigEndian_2() { return static_cast(offsetof(UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4, ___bigEndian_2)); } inline bool get_bigEndian_2() const { return ___bigEndian_2; } inline bool* get_address_of_bigEndian_2() { return &___bigEndian_2; } inline void set_bigEndian_2(bool value) { ___bigEndian_2 = value; } inline static int32_t get_offset_of_lastByte_3() { return static_cast(offsetof(UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4, ___lastByte_3)); } inline int32_t get_lastByte_3() const { return ___lastByte_3; } inline int32_t* get_address_of_lastByte_3() { return &___lastByte_3; } inline void set_lastByte_3(int32_t value) { ___lastByte_3 = value; } }; // System.Xml.Ucs4Decoder struct Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F : public Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 { public: // System.Byte[] System.Xml.Ucs4Decoder::lastBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___lastBytes_2; // System.Int32 System.Xml.Ucs4Decoder::lastBytesCount int32_t ___lastBytesCount_3; public: inline static int32_t get_offset_of_lastBytes_2() { return static_cast(offsetof(Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F, ___lastBytes_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_lastBytes_2() const { return ___lastBytes_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_lastBytes_2() { return &___lastBytes_2; } inline void set_lastBytes_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___lastBytes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastBytes_2), (void*)value); } inline static int32_t get_offset_of_lastBytesCount_3() { return static_cast(offsetof(Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F, ___lastBytesCount_3)); } inline int32_t get_lastBytesCount_3() const { return ___lastBytesCount_3; } inline int32_t* get_address_of_lastBytesCount_3() { return &___lastBytesCount_3; } inline void set_lastBytesCount_3(int32_t value) { ___lastBytesCount_3 = value; } }; // System.Xml.Ucs4Encoding struct Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 : public Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 { public: // System.Xml.Ucs4Decoder System.Xml.Ucs4Encoding::ucs4Decoder Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * ___ucs4Decoder_16; public: inline static int32_t get_offset_of_ucs4Decoder_16() { return static_cast(offsetof(Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07, ___ucs4Decoder_16)); } inline Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * get_ucs4Decoder_16() const { return ___ucs4Decoder_16; } inline Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F ** get_address_of_ucs4Decoder_16() { return &___ucs4Decoder_16; } inline void set_ucs4Decoder_16(Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * value) { ___ucs4Decoder_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___ucs4Decoder_16), (void*)value); } }; // System.Xml.Schema.UnionFacetsChecker struct UnionFacetsChecker_tEF317EAC017FEA555E5C3A2F347A2B5C3A2857D0 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: public: }; // System.Xml.Serialization.UnreferencedObjectEventArgs struct UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // System.Object System.Xml.Serialization.UnreferencedObjectEventArgs::o RuntimeObject * ___o_1; // System.String System.Xml.Serialization.UnreferencedObjectEventArgs::id String_t* ___id_2; public: inline static int32_t get_offset_of_o_1() { return static_cast(offsetof(UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192, ___o_1)); } inline RuntimeObject * get_o_1() const { return ___o_1; } inline RuntimeObject ** get_address_of_o_1() { return &___o_1; } inline void set_o_1(RuntimeObject * value) { ___o_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___o_1), (void*)value); } inline static int32_t get_offset_of_id_2() { return static_cast(offsetof(UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192, ___id_2)); } inline String_t* get_id_2() const { return ___id_2; } inline String_t** get_address_of_id_2() { return &___id_2; } inline void set_id_2(String_t* value) { ___id_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_2), (void*)value); } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // System.Xml.XPath.XPathNavigator struct XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 : public XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 { public: public: }; // MS.Internal.Xml.Cache.XPathNode struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 { public: // MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * ___info_0; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSibling uint16_t ___idxSibling_1; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxParent uint16_t ___idxParent_2; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSimilar uint16_t ___idxSimilar_3; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::posOffset uint16_t ___posOffset_4; // System.UInt32 MS.Internal.Xml.Cache.XPathNode::props uint32_t ___props_5; // System.String MS.Internal.Xml.Cache.XPathNode::value String_t* ___value_6; public: inline static int32_t get_offset_of_info_0() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___info_0)); } inline XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * get_info_0() const { return ___info_0; } inline XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 ** get_address_of_info_0() { return &___info_0; } inline void set_info_0(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * value) { ___info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_0), (void*)value); } inline static int32_t get_offset_of_idxSibling_1() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___idxSibling_1)); } inline uint16_t get_idxSibling_1() const { return ___idxSibling_1; } inline uint16_t* get_address_of_idxSibling_1() { return &___idxSibling_1; } inline void set_idxSibling_1(uint16_t value) { ___idxSibling_1 = value; } inline static int32_t get_offset_of_idxParent_2() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___idxParent_2)); } inline uint16_t get_idxParent_2() const { return ___idxParent_2; } inline uint16_t* get_address_of_idxParent_2() { return &___idxParent_2; } inline void set_idxParent_2(uint16_t value) { ___idxParent_2 = value; } inline static int32_t get_offset_of_idxSimilar_3() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___idxSimilar_3)); } inline uint16_t get_idxSimilar_3() const { return ___idxSimilar_3; } inline uint16_t* get_address_of_idxSimilar_3() { return &___idxSimilar_3; } inline void set_idxSimilar_3(uint16_t value) { ___idxSimilar_3 = value; } inline static int32_t get_offset_of_posOffset_4() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___posOffset_4)); } inline uint16_t get_posOffset_4() const { return ___posOffset_4; } inline uint16_t* get_address_of_posOffset_4() { return &___posOffset_4; } inline void set_posOffset_4(uint16_t value) { ___posOffset_4 = value; } inline static int32_t get_offset_of_props_5() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___props_5)); } inline uint32_t get_props_5() const { return ___props_5; } inline uint32_t* get_address_of_props_5() { return &___props_5; } inline void set_props_5(uint32_t value) { ___props_5 = value; } inline static int32_t get_offset_of_value_6() { return static_cast(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___value_6)); } inline String_t* get_value_6() const { return ___value_6; } inline String_t** get_address_of_value_6() { return &___value_6; } inline void set_value_6(String_t* value) { ___value_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_6), (void*)value); } }; // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * ___info_0; uint16_t ___idxSibling_1; uint16_t ___idxParent_2; uint16_t ___idxSimilar_3; uint16_t ___posOffset_4; uint32_t ___props_5; char* ___value_6; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNode struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * ___info_0; uint16_t ___idxSibling_1; uint16_t ___idxParent_2; uint16_t ___idxSimilar_3; uint16_t ___posOffset_4; uint32_t ___props_5; Il2CppChar* ___value_6; }; // MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 { public: // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___page_0; // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_page_0() { return static_cast(offsetof(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503, ___page_0)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_page_0() const { return ___page_0; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_page_0() { return &___page_0; } inline void set_page_0(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___page_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___page_0), (void*)value); } inline static int32_t get_offset_of_idx_1() { return static_cast(offsetof(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_pinvoke { XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke* ___page_0; int32_t ___idx_1; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_com { XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com* ___page_0; int32_t ___idx_1; }; // System.Xml.Serialization.XmlAnyAttributeAttribute struct XmlAnyAttributeAttribute_t425ACE58EEBC7D08A1B23CD06B03CA75B8D5B094 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: public: }; // System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA { public: // System.Byte[] System.Xml.XmlCharType::charProperties ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___charProperties_2; public: inline static int32_t get_offset_of_charProperties_2() { return static_cast(offsetof(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA, ___charProperties_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_charProperties_2() const { return ___charProperties_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_charProperties_2() { return &___charProperties_2; } inline void set_charProperties_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___charProperties_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___charProperties_2), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // Native definition for COM marshalling of System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_marshaled_com { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 : public XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 { public: public: }; // System.Xml.Serialization.XmlTypeConvertorAttribute struct XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.Xml.Serialization.XmlTypeConvertorAttribute::k__BackingField String_t* ___U3CMethodU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CMethodU3Ek__BackingField_0() { return static_cast(offsetof(XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E, ___U3CMethodU3Ek__BackingField_0)); } inline String_t* get_U3CMethodU3Ek__BackingField_0() const { return ___U3CMethodU3Ek__BackingField_0; } inline String_t** get_address_of_U3CMethodU3Ek__BackingField_0() { return &___U3CMethodU3Ek__BackingField_0; } inline void set_U3CMethodU3Ek__BackingField_0(String_t* value) { ___U3CMethodU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMethodU3Ek__BackingField_0), (void*)value); } }; // System.Xml.Serialization.XmlTypeMapElementInfoList struct XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A : public ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 { public: public: }; // /__StaticArrayInitTypeSize=20 struct __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87__padding[20]; }; public: }; // /__StaticArrayInitTypeSize=28 struct __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E__padding[28]; }; public: }; // /__StaticArrayInitTypeSize=32 struct __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2__padding[32]; }; public: }; // /__StaticArrayInitTypeSize=40 struct __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48__padding[40]; }; public: }; // /__StaticArrayInitTypeSize=416 struct __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4__padding[416]; }; public: }; // /__StaticArrayInitTypeSize=6 struct __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB__padding[6]; }; public: }; // /__StaticArrayInitTypeSize=64 struct __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD__padding[64]; }; public: }; // System.Xml.Schema.DtdValidator/NamespaceManager struct NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B : public XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 { public: public: }; // System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED { public: // System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode/SequenceConstructPosContext::this_ SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstpos BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastpos BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastposLeft BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstposRight BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4; public: inline static int32_t get_offset_of_this__0() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___this__0)); } inline SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * get_this__0() const { return ___this__0; } inline SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD ** get_address_of_this__0() { return &___this__0; } inline void set_this__0(SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * value) { ___this__0 = value; Il2CppCodeGenWriteBarrier((void**)(&___this__0), (void*)value); } inline static int32_t get_offset_of_firstpos_1() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___firstpos_1)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstpos_1() const { return ___firstpos_1; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstpos_1() { return &___firstpos_1; } inline void set_firstpos_1(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___firstpos_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstpos_1), (void*)value); } inline static int32_t get_offset_of_lastpos_2() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___lastpos_2)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_lastpos_2() const { return ___lastpos_2; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_lastpos_2() { return &___lastpos_2; } inline void set_lastpos_2(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___lastpos_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastpos_2), (void*)value); } inline static int32_t get_offset_of_lastposLeft_3() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___lastposLeft_3)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_lastposLeft_3() const { return ___lastposLeft_3; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; } inline void set_lastposLeft_3(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___lastposLeft_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastposLeft_3), (void*)value); } inline static int32_t get_offset_of_firstposRight_4() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___firstposRight_4)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstposRight_4() const { return ___firstposRight_4; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstposRight_4() { return &___firstposRight_4; } inline void set_firstposRight_4(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___firstposRight_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstposRight_4), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_pinvoke { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4; }; // Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_com { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4; }; // struct U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E : public RuntimeObject { public: public: }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.ChoiceNode struct ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C : public InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 { public: public: }; // System.Reflection.ConstructorInfo struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B : public MethodBase_t { public: public: }; // System.DateTimeOffset struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 { public: // System.DateTime System.DateTimeOffset::m_dateTime DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___m_dateTime_2; // System.Int16 System.DateTimeOffset::m_offsetMinutes int16_t ___m_offsetMinutes_3; public: inline static int32_t get_offset_of_m_dateTime_2() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_dateTime_2)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_m_dateTime_2() const { return ___m_dateTime_2; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; } inline void set_m_dateTime_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___m_dateTime_2 = value; } inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_offsetMinutes_3)); } inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; } inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; } inline void set_m_offsetMinutes_3(int16_t value) { ___m_offsetMinutes_3 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // 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.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // 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; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // 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; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // System.Xml.DtdProcessing struct DtdProcessing_t25005AA22D71FA607D010E88CBB7299378A455F5 { public: // System.Int32 System.Xml.DtdProcessing::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DtdProcessing_t25005AA22D71FA607D010E88CBB7299378A455F5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.EntityHandling struct EntityHandling_t0675E831FDCD3EBD42A6E4EDEE14C32C58F74B90 { public: // System.Int32 System.Xml.EntityHandling::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EntityHandling_t0675E831FDCD3EBD42A6E4EDEE14C32C58F74B90, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Xml.ExceptionType struct ExceptionType_t7FE8075D25307AFE6AA02C34899023BC4C9B7B23 { public: // System.Int32 System.Xml.ExceptionType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ExceptionType_t7FE8075D25307AFE6AA02C34899023BC4C9B7B23, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.FacetType struct FacetType_tD288C0D513D0B8838CC158D82E99C29187D99365 { public: // System.Int32 System.Xml.Schema.FacetType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FacetType_tD288C0D513D0B8838CC158D82E99C29187D99365, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Formatting struct Formatting_t1E6C9EEFAFBEA3953A61247936613F766513FCCB { public: // System.Int32 System.Xml.Formatting::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Formatting_t1E6C9EEFAFBEA3953A61247936613F766513FCCB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC : public RuntimeObject { public: // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::buckets bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* ___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; public: inline static int32_t get_offset_of_buckets_10() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___buckets_10)); } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* get_buckets_10() const { return ___buckets_10; } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190** get_address_of_buckets_10() { return &___buckets_10; } inline void set_buckets_10(bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* value) { ___buckets_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_10), (void*)value); } inline static int32_t get_offset_of_count_11() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___count_11)); } inline int32_t get_count_11() const { return ___count_11; } inline int32_t* get_address_of_count_11() { return &___count_11; } inline void set_count_11(int32_t value) { ___count_11 = value; } inline static int32_t get_offset_of_occupancy_12() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___occupancy_12)); } inline int32_t get_occupancy_12() const { return ___occupancy_12; } inline int32_t* get_address_of_occupancy_12() { return &___occupancy_12; } inline void set_occupancy_12(int32_t value) { ___occupancy_12 = value; } inline static int32_t get_offset_of_loadsize_13() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadsize_13)); } inline int32_t get_loadsize_13() const { return ___loadsize_13; } inline int32_t* get_address_of_loadsize_13() { return &___loadsize_13; } inline void set_loadsize_13(int32_t value) { ___loadsize_13 = value; } inline static int32_t get_offset_of_loadFactor_14() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadFactor_14)); } inline float get_loadFactor_14() const { return ___loadFactor_14; } inline float* get_address_of_loadFactor_14() { return &___loadFactor_14; } inline void set_loadFactor_14(float value) { ___loadFactor_14 = value; } inline static int32_t get_offset_of_version_15() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___version_15)); } inline int32_t get_version_15() const { return ___version_15; } inline int32_t* get_address_of_version_15() { return &___version_15; } inline void set_version_15(int32_t value) { ___version_15 = value; } inline static int32_t get_offset_of_isWriterInProgress_16() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___isWriterInProgress_16)); } inline bool get_isWriterInProgress_16() const { return ___isWriterInProgress_16; } inline bool* get_address_of_isWriterInProgress_16() { return &___isWriterInProgress_16; } inline void set_isWriterInProgress_16(bool value) { ___isWriterInProgress_16 = value; } inline static int32_t get_offset_of_keys_17() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___keys_17)); } inline RuntimeObject* get_keys_17() const { return ___keys_17; } inline RuntimeObject** get_address_of_keys_17() { return &___keys_17; } inline void set_keys_17(RuntimeObject* value) { ___keys_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_17), (void*)value); } inline static int32_t get_offset_of_values_18() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___values_18)); } inline RuntimeObject* get_values_18() const { return ___values_18; } inline RuntimeObject** get_address_of_values_18() { return &___values_18; } inline void set_values_18(RuntimeObject* value) { ___values_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_18), (void*)value); } inline static int32_t get_offset_of__keycomparer_19() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____keycomparer_19)); } inline RuntimeObject* get__keycomparer_19() const { return ____keycomparer_19; } inline RuntimeObject** get_address_of__keycomparer_19() { return &____keycomparer_19; } inline void set__keycomparer_19(RuntimeObject* value) { ____keycomparer_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_19), (void*)value); } inline static int32_t get_offset_of__syncRoot_20() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____syncRoot_20)); } inline RuntimeObject * get__syncRoot_20() const { return ____syncRoot_20; } inline RuntimeObject ** get_address_of__syncRoot_20() { return &____syncRoot_20; } inline void set__syncRoot_20(RuntimeObject * value) { ____syncRoot_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_20), (void*)value); } }; // System.Xml.Schema.LeafRangeNode struct LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 : public LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC { public: // System.Decimal System.Xml.Schema.LeafRangeNode::min Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___min_1; // System.Decimal System.Xml.Schema.LeafRangeNode::max Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___max_2; // System.Xml.Schema.BitSet System.Xml.Schema.LeafRangeNode::nextIteration BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___nextIteration_3; public: inline static int32_t get_offset_of_min_1() { return static_cast(offsetof(LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155, ___min_1)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_min_1() const { return ___min_1; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_min_1() { return &___min_1; } inline void set_min_1(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___min_1 = value; } inline static int32_t get_offset_of_max_2() { return static_cast(offsetof(LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155, ___max_2)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_max_2() const { return ___max_2; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_max_2() { return &___max_2; } inline void set_max_2(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___max_2 = value; } inline static int32_t get_offset_of_nextIteration_3() { return static_cast(offsetof(LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155, ___nextIteration_3)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_nextIteration_3() const { return ___nextIteration_3; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_nextIteration_3() { return &___nextIteration_3; } inline void set_nextIteration_3(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___nextIteration_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___nextIteration_3), (void*)value); } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Xml.Schema.Numeric10FacetsChecker struct Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 : public FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 { public: // System.Decimal System.Xml.Schema.Numeric10FacetsChecker::maxValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___maxValue_1; // System.Decimal System.Xml.Schema.Numeric10FacetsChecker::minValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___minValue_2; public: inline static int32_t get_offset_of_maxValue_1() { return static_cast(offsetof(Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5, ___maxValue_1)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_maxValue_1() const { return ___maxValue_1; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_maxValue_1() { return &___maxValue_1; } inline void set_maxValue_1(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___maxValue_1 = value; } inline static int32_t get_offset_of_minValue_2() { return static_cast(offsetof(Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5, ___minValue_2)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_minValue_2() const { return ___minValue_2; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_minValue_2() { return &___minValue_2; } inline void set_minValue_2(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___minValue_2 = value; } }; // System.Reflection.ParameterAttributes struct ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.PlusNode struct PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 : public InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 { public: public: }; // System.Xml.Schema.QmarkNode struct QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 : public InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 { public: public: }; // System.Xml.ReadState struct ReadState_tD89BBF06656CA45737179919236BDA5EC69D2FEF { public: // System.Int32 System.Xml.ReadState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ReadState_tD89BBF06656CA45737179919236BDA5EC69D2FEF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.RestrictionFlags struct RestrictionFlags_tE688E3FE50199CFC0DE7B02A59EA18DF59B8A025 { public: // System.Int32 System.Xml.Schema.RestrictionFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RestrictionFlags_tE688E3FE50199CFC0DE7B02A59EA18DF59B8A025, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.Xml.Schema.SchemaType struct SchemaType_tEB15E34E0729AA4438855C9D6E1FA56F7759B55F { public: // System.Int32 System.Xml.Schema.SchemaType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SchemaType_tEB15E34E0729AA4438855C9D6E1FA56F7759B55F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Serialization.SchemaTypes struct SchemaTypes_t335C61BC524CBCF69090FE1A5B5227A5B03AF2C6 { public: // System.Int32 System.Xml.Serialization.SchemaTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SchemaTypes_t335C61BC524CBCF69090FE1A5B5227A5B03AF2C6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.SequenceNode struct SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD : public InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 { public: public: }; // System.Xml.Serialization.SerializationFormat struct SerializationFormat_tAA809018F2717CCC5D0D99A37DE4542612D2CFA3 { public: // System.Int32 System.Xml.Serialization.SerializationFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SerializationFormat_tAA809018F2717CCC5D0D99A37DE4542612D2CFA3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.StarNode struct StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 : public InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 { public: public: }; // System.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; // System.TypeCode struct TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Ucs4Decoder1234 struct Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E : public Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F { public: public: }; // System.Xml.Ucs4Decoder2143 struct Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098 : public Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F { public: public: }; // System.Xml.Ucs4Decoder3412 struct Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928 : public Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F { public: public: }; // System.Xml.Ucs4Decoder4321 struct Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2 : public Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F { public: public: }; // System.Xml.Ucs4Encoding1234 struct Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 : public Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 { public: public: }; // System.Xml.Ucs4Encoding2143 struct Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 : public Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 { public: public: }; // System.Xml.Ucs4Encoding3412 struct Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 : public Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 { public: public: }; // System.Xml.Ucs4Encoding4321 struct Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF : public Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 { public: public: }; // System.UriIdnScope struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.ValidateNames struct ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17 : public RuntimeObject { public: public: }; // System.Xml.ValidationType struct ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA { public: // System.Int32 System.Xml.ValidationType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.WhitespaceHandling struct WhitespaceHandling_t5B5D7F564E2C68D609D844ADC3D68F931DA5F034 { public: // System.Int32 System.Xml.WhitespaceHandling::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WhitespaceHandling_t5B5D7F564E2C68D609D844ADC3D68F931DA5F034, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.WriteState struct WriteState_t5FC2A1D32436519584C900786EA9C0E15D9317C6 { public: // System.Int32 System.Xml.WriteState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WriteState_t5FC2A1D32436519584C900786EA9C0E15D9317C6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // MS.Internal.Xml.Cache.XPathDocumentNavigator struct XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 : public XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 { public: // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathDocumentNavigator::pageCurrent XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageCurrent_4; // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathDocumentNavigator::pageParent XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageParent_5; // System.Int32 MS.Internal.Xml.Cache.XPathDocumentNavigator::idxCurrent int32_t ___idxCurrent_6; // System.Int32 MS.Internal.Xml.Cache.XPathDocumentNavigator::idxParent int32_t ___idxParent_7; public: inline static int32_t get_offset_of_pageCurrent_4() { return static_cast(offsetof(XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303, ___pageCurrent_4)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_pageCurrent_4() const { return ___pageCurrent_4; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_pageCurrent_4() { return &___pageCurrent_4; } inline void set_pageCurrent_4(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___pageCurrent_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageCurrent_4), (void*)value); } inline static int32_t get_offset_of_pageParent_5() { return static_cast(offsetof(XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303, ___pageParent_5)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_pageParent_5() const { return ___pageParent_5; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_pageParent_5() { return &___pageParent_5; } inline void set_pageParent_5(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___pageParent_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___pageParent_5), (void*)value); } inline static int32_t get_offset_of_idxCurrent_6() { return static_cast(offsetof(XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303, ___idxCurrent_6)); } inline int32_t get_idxCurrent_6() const { return ___idxCurrent_6; } inline int32_t* get_address_of_idxCurrent_6() { return &___idxCurrent_6; } inline void set_idxCurrent_6(int32_t value) { ___idxCurrent_6 = value; } inline static int32_t get_offset_of_idxParent_7() { return static_cast(offsetof(XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303, ___idxParent_7)); } inline int32_t get_idxParent_7() const { return ___idxParent_7; } inline int32_t* get_address_of_idxParent_7() { return &___idxParent_7; } inline void set_idxParent_7(int32_t value) { ___idxParent_7 = value; } }; // System.Xml.XPath.XPathNamespaceScope struct XPathNamespaceScope_tA8A2B0DCC961145AE9D599FFA1BAD0A982388AD6 { public: // System.Int32 System.Xml.XPath.XPathNamespaceScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XPathNamespaceScope_tA8A2B0DCC961145AE9D599FFA1BAD0A982388AD6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.XPath.XPathNodeType struct XPathNodeType_tC6A2904E5E0084569595992B18839ADF01728762 { public: // System.Int32 System.Xml.XPath.XPathNodeType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XPathNodeType_tC6A2904E5E0084569595992B18839ADF01728762, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaContentProcessing struct XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C { public: // System.Int32 System.Xml.Schema.XmlSchemaContentProcessing::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaContentType struct XmlSchemaContentType_tCB95E5FCA55200D9C0AF534D6344518C0968E714 { public: // System.Int32 System.Xml.Schema.XmlSchemaContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaContentType_tCB95E5FCA55200D9C0AF534D6344518C0968E714, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaDatatypeVariety struct XmlSchemaDatatypeVariety_tC3E3DA50C51D19A6958479C5851FD90C59435E7B { public: // System.Int32 System.Xml.Schema.XmlSchemaDatatypeVariety::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaDatatypeVariety_tC3E3DA50C51D19A6958479C5851FD90C59435E7B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaDerivationMethod struct XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E { public: // System.Int32 System.Xml.Schema.XmlSchemaDerivationMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaForm struct XmlSchemaForm_tAFA037CC98C760F6686439643387677185EC9D91 { public: // System.Int32 System.Xml.Schema.XmlSchemaForm::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaForm_tAFA037CC98C760F6686439643387677185EC9D91, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaValidity struct XmlSchemaValidity_t89FC92B6FE84FBF210FA18A8F3ED13774FCED146 { public: // System.Int32 System.Xml.Schema.XmlSchemaValidity::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaValidity_t89FC92B6FE84FBF210FA18A8F3ED13774FCED146, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSchemaWhiteSpace struct XmlSchemaWhiteSpace_tD6D42C877E1ACEB662CAE5F737BA69A233479E3D { public: // System.Int32 System.Xml.Schema.XmlSchemaWhiteSpace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaWhiteSpace_tD6D42C877E1ACEB662CAE5F737BA69A233479E3D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlSeverityType struct XmlSeverityType_tF0C924049E29120AC681B4B2ECA491B70C902210 { public: // System.Int32 System.Xml.Schema.XmlSeverityType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSeverityType_tF0C924049E29120AC681B4B2ECA491B70C902210, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.XmlTokenizedType struct XmlTokenizedType_t920EB9FDDB3F1BF66147159D679D1BF84CB6ECD4 { public: // System.Int32 System.Xml.XmlTokenizedType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlTokenizedType_t920EB9FDDB3F1BF66147159D679D1BF84CB6ECD4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlTypeCode struct XmlTypeCode_t8BCC3C3572E95AA39A6F53864E90CE04AB3290E1 { public: // System.Int32 System.Xml.Schema.XmlTypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlTypeCode_t8BCC3C3572E95AA39A6F53864E90CE04AB3290E1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.NamespaceList/ListType struct ListType_tBCCE1790B6DF8C56EBFC60AD58C2A26063F9DBEC { public: // System.Int32 System.Xml.Schema.NamespaceList/ListType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ListType_tBCCE1790B6DF8C56EBFC60AD58C2A26063F9DBEC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.SchemaAttDef/Reserve struct Reserve_t5D2FAFDD811B5DDB9AC140445601545BDBBC45C8 { public: // System.Int32 System.Xml.Schema.SchemaAttDef/Reserve::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Reserve_t5D2FAFDD811B5DDB9AC140445601545BDBBC45C8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Xml.Schema.SchemaDeclBase/Use struct Use_t28B781655D907656D9A7781A78E59008C669F972 { public: // System.Int32 System.Xml.Schema.SchemaDeclBase/Use::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Use_t28B781655D907656D9A7781A78E59008C669F972, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Uri/Flags struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4 { public: // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlAtomicValue/Union struct Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Boolean System.Xml.Schema.XmlAtomicValue/Union::boolVal bool ___boolVal_0; }; #pragma pack(pop, tp) struct { bool ___boolVal_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Double System.Xml.Schema.XmlAtomicValue/Union::dblVal double ___dblVal_1; }; #pragma pack(pop, tp) struct { double ___dblVal_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Int64 System.Xml.Schema.XmlAtomicValue/Union::i64Val int64_t ___i64Val_2; }; #pragma pack(pop, tp) struct { int64_t ___i64Val_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Int32 System.Xml.Schema.XmlAtomicValue/Union::i32Val int32_t ___i32Val_3; }; #pragma pack(pop, tp) struct { int32_t ___i32Val_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.DateTime System.Xml.Schema.XmlAtomicValue/Union::dtVal DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4; }; #pragma pack(pop, tp) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4_forAlignmentOnly; }; }; }; uint8_t Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F__padding[8]; }; public: inline static int32_t get_offset_of_boolVal_0() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___boolVal_0)); } inline bool get_boolVal_0() const { return ___boolVal_0; } inline bool* get_address_of_boolVal_0() { return &___boolVal_0; } inline void set_boolVal_0(bool value) { ___boolVal_0 = value; } inline static int32_t get_offset_of_dblVal_1() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___dblVal_1)); } inline double get_dblVal_1() const { return ___dblVal_1; } inline double* get_address_of_dblVal_1() { return &___dblVal_1; } inline void set_dblVal_1(double value) { ___dblVal_1 = value; } inline static int32_t get_offset_of_i64Val_2() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___i64Val_2)); } inline int64_t get_i64Val_2() const { return ___i64Val_2; } inline int64_t* get_address_of_i64Val_2() { return &___i64Val_2; } inline void set_i64Val_2(int64_t value) { ___i64Val_2 = value; } inline static int32_t get_offset_of_i32Val_3() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___i32Val_3)); } inline int32_t get_i32Val_3() const { return ___i32Val_3; } inline int32_t* get_address_of_i32Val_3() { return &___i32Val_3; } inline void set_i32Val_3(int32_t value) { ___i32Val_3 = value; } inline static int32_t get_offset_of_dtVal_4() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___dtVal_4)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_dtVal_4() const { return ___dtVal_4; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_dtVal_4() { return &___dtVal_4; } inline void set_dtVal_4(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___dtVal_4 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.XmlAtomicValue/Union struct Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_pinvoke { union { struct { union { #pragma pack(push, tp, 1) struct { int32_t ___boolVal_0; }; #pragma pack(pop, tp) struct { int32_t ___boolVal_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { double ___dblVal_1; }; #pragma pack(pop, tp) struct { double ___dblVal_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int64_t ___i64Val_2; }; #pragma pack(pop, tp) struct { int64_t ___i64Val_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int32_t ___i32Val_3; }; #pragma pack(pop, tp) struct { int32_t ___i32Val_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4; }; #pragma pack(pop, tp) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4_forAlignmentOnly; }; }; }; uint8_t Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F__padding[8]; }; }; // Native definition for COM marshalling of System.Xml.Schema.XmlAtomicValue/Union struct Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_com { union { struct { union { #pragma pack(push, tp, 1) struct { int32_t ___boolVal_0; }; #pragma pack(pop, tp) struct { int32_t ___boolVal_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { double ___dblVal_1; }; #pragma pack(pop, tp) struct { double ___dblVal_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int64_t ___i64Val_2; }; #pragma pack(pop, tp) struct { int64_t ___i64Val_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int32_t ___i32Val_3; }; #pragma pack(pop, tp) struct { int32_t ___i32Val_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4; }; #pragma pack(pop, tp) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4_forAlignmentOnly; }; }; }; uint8_t Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F__padding[8]; }; }; // System.Xml.Schema.ContentValidator struct ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C : public RuntimeObject { public: // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.ContentValidator::contentType int32_t ___contentType_0; // System.Boolean System.Xml.Schema.ContentValidator::isOpen bool ___isOpen_1; // System.Boolean System.Xml.Schema.ContentValidator::isEmptiable bool ___isEmptiable_2; public: inline static int32_t get_offset_of_contentType_0() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C, ___contentType_0)); } inline int32_t get_contentType_0() const { return ___contentType_0; } inline int32_t* get_address_of_contentType_0() { return &___contentType_0; } inline void set_contentType_0(int32_t value) { ___contentType_0 = value; } inline static int32_t get_offset_of_isOpen_1() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C, ___isOpen_1)); } inline bool get_isOpen_1() const { return ___isOpen_1; } inline bool* get_address_of_isOpen_1() { return &___isOpen_1; } inline void set_isOpen_1(bool value) { ___isOpen_1 = value; } inline static int32_t get_offset_of_isEmptiable_2() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C, ___isEmptiable_2)); } inline bool get_isEmptiable_2() const { return ___isEmptiable_2; } inline bool* get_address_of_isEmptiable_2() { return &___isEmptiable_2; } inline void set_isEmptiable_2(bool value) { ___isEmptiable_2 = value; } }; // System.Xml.Schema.DatatypeImplementation struct DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 : public XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 { public: // System.Xml.Schema.XmlSchemaDatatypeVariety System.Xml.Schema.DatatypeImplementation::variety int32_t ___variety_0; // System.Xml.Schema.RestrictionFacets System.Xml.Schema.DatatypeImplementation::restriction RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * ___restriction_1; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::baseType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___baseType_2; // System.Xml.Schema.XmlValueConverter System.Xml.Schema.DatatypeImplementation::valueConverter XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___valueConverter_3; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.DatatypeImplementation::parentSchemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___parentSchemaType_4; public: inline static int32_t get_offset_of_variety_0() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___variety_0)); } inline int32_t get_variety_0() const { return ___variety_0; } inline int32_t* get_address_of_variety_0() { return &___variety_0; } inline void set_variety_0(int32_t value) { ___variety_0 = value; } inline static int32_t get_offset_of_restriction_1() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___restriction_1)); } inline RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * get_restriction_1() const { return ___restriction_1; } inline RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA ** get_address_of_restriction_1() { return &___restriction_1; } inline void set_restriction_1(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * value) { ___restriction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___restriction_1), (void*)value); } inline static int32_t get_offset_of_baseType_2() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___baseType_2)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_baseType_2() const { return ___baseType_2; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_baseType_2() { return &___baseType_2; } inline void set_baseType_2(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___baseType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseType_2), (void*)value); } inline static int32_t get_offset_of_valueConverter_3() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___valueConverter_3)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_valueConverter_3() const { return ___valueConverter_3; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_valueConverter_3() { return &___valueConverter_3; } inline void set_valueConverter_3(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___valueConverter_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___valueConverter_3), (void*)value); } inline static int32_t get_offset_of_parentSchemaType_4() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___parentSchemaType_4)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_parentSchemaType_4() const { return ___parentSchemaType_4; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_parentSchemaType_4() { return &___parentSchemaType_4; } inline void set_parentSchemaType_4(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___parentSchemaType_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___parentSchemaType_4), (void*)value); } }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.Xml.Schema.NamespaceList struct NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A : public RuntimeObject { public: // System.Xml.Schema.NamespaceList/ListType System.Xml.Schema.NamespaceList::type int32_t ___type_0; // System.Collections.Hashtable System.Xml.Schema.NamespaceList::set Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___set_1; // System.String System.Xml.Schema.NamespaceList::targetNamespace String_t* ___targetNamespace_2; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A, ___type_0)); } inline int32_t get_type_0() const { return ___type_0; } inline int32_t* get_address_of_type_0() { return &___type_0; } inline void set_type_0(int32_t value) { ___type_0 = value; } inline static int32_t get_offset_of_set_1() { return static_cast(offsetof(NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A, ___set_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_set_1() const { return ___set_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_set_1() { return &___set_1; } inline void set_set_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___set_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___set_1), (void*)value); } inline static int32_t get_offset_of_targetNamespace_2() { return static_cast(offsetof(NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A, ___targetNamespace_2)); } inline String_t* get_targetNamespace_2() const { return ___targetNamespace_2; } inline String_t** get_address_of_targetNamespace_2() { return &___targetNamespace_2; } inline void set_targetNamespace_2(String_t* value) { ___targetNamespace_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___targetNamespace_2), (void*)value); } }; // System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___marshalAs_6)); } inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * get_marshalAs_6() const { return ___marshalAs_6; } inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_pinvoke { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; char* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; }; // Native definition for COM marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_com { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; Il2CppChar* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; }; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_0; // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_2; // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_8; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_9; // System.String[] System.Text.RegularExpressions.Regex::capslist StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_10; // System.Int32 System.Text.RegularExpressions.Regex::capsize int32_t ___capsize_11; // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_12; // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_13; // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_14; // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized bool ___refsInitialized_15; public: inline static int32_t get_offset_of_pattern_0() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); } inline String_t* get_pattern_0() const { return ___pattern_0; } inline String_t** get_address_of_pattern_0() { return &___pattern_0; } inline void set_pattern_0(String_t* value) { ___pattern_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value); } inline static int32_t get_offset_of_factory_1() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; } inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value) { ___factory_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value); } inline static int32_t get_offset_of_roptions_2() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); } inline int32_t get_roptions_2() const { return ___roptions_2; } inline int32_t* get_address_of_roptions_2() { return &___roptions_2; } inline void set_roptions_2(int32_t value) { ___roptions_2 = value; } inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; } inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___internalMatchTimeout_5 = value; } inline static int32_t get_offset_of_caps_8() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_8() const { return ___caps_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_8() { return &___caps_8; } inline void set_caps_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___caps_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___caps_8), (void*)value); } inline static int32_t get_offset_of_capnames_9() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_9)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_9() const { return ___capnames_9; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_9() { return &___capnames_9; } inline void set_capnames_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___capnames_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___capnames_9), (void*)value); } inline static int32_t get_offset_of_capslist_10() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_10)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_10() const { return ___capslist_10; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_10() { return &___capslist_10; } inline void set_capslist_10(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___capslist_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___capslist_10), (void*)value); } inline static int32_t get_offset_of_capsize_11() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_11)); } inline int32_t get_capsize_11() const { return ___capsize_11; } inline int32_t* get_address_of_capsize_11() { return &___capsize_11; } inline void set_capsize_11(int32_t value) { ___capsize_11 = value; } inline static int32_t get_offset_of_runnerref_12() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_12)); } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_12() const { return ___runnerref_12; } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_12() { return &___runnerref_12; } inline void set_runnerref_12(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value) { ___runnerref_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___runnerref_12), (void*)value); } inline static int32_t get_offset_of_replref_13() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_13)); } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_13() const { return ___replref_13; } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_13() { return &___replref_13; } inline void set_replref_13(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value) { ___replref_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___replref_13), (void*)value); } inline static int32_t get_offset_of_code_14() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_14)); } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_14() const { return ___code_14; } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_14() { return &___code_14; } inline void set_code_14(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value) { ___code_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___code_14), (void*)value); } inline static int32_t get_offset_of_refsInitialized_15() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_15)); } inline bool get_refsInitialized_15() const { return ___refsInitialized_15; } inline bool* get_address_of_refsInitialized_15() { return &___refsInitialized_15; } inline void set_refsInitialized_15(bool value) { ___refsInitialized_15 = value; } }; // System.Xml.Schema.RestrictionFacets struct RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA : public RuntimeObject { public: // System.Int32 System.Xml.Schema.RestrictionFacets::Length int32_t ___Length_0; // System.Int32 System.Xml.Schema.RestrictionFacets::MinLength int32_t ___MinLength_1; // System.Int32 System.Xml.Schema.RestrictionFacets::MaxLength int32_t ___MaxLength_2; // System.Collections.ArrayList System.Xml.Schema.RestrictionFacets::Patterns ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___Patterns_3; // System.Collections.ArrayList System.Xml.Schema.RestrictionFacets::Enumeration ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___Enumeration_4; // System.Xml.Schema.XmlSchemaWhiteSpace System.Xml.Schema.RestrictionFacets::WhiteSpace int32_t ___WhiteSpace_5; // System.Object System.Xml.Schema.RestrictionFacets::MaxInclusive RuntimeObject * ___MaxInclusive_6; // System.Object System.Xml.Schema.RestrictionFacets::MaxExclusive RuntimeObject * ___MaxExclusive_7; // System.Object System.Xml.Schema.RestrictionFacets::MinInclusive RuntimeObject * ___MinInclusive_8; // System.Object System.Xml.Schema.RestrictionFacets::MinExclusive RuntimeObject * ___MinExclusive_9; // System.Int32 System.Xml.Schema.RestrictionFacets::TotalDigits int32_t ___TotalDigits_10; // System.Int32 System.Xml.Schema.RestrictionFacets::FractionDigits int32_t ___FractionDigits_11; // System.Xml.Schema.RestrictionFlags System.Xml.Schema.RestrictionFacets::Flags int32_t ___Flags_12; public: inline static int32_t get_offset_of_Length_0() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___Length_0)); } inline int32_t get_Length_0() const { return ___Length_0; } inline int32_t* get_address_of_Length_0() { return &___Length_0; } inline void set_Length_0(int32_t value) { ___Length_0 = value; } inline static int32_t get_offset_of_MinLength_1() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___MinLength_1)); } inline int32_t get_MinLength_1() const { return ___MinLength_1; } inline int32_t* get_address_of_MinLength_1() { return &___MinLength_1; } inline void set_MinLength_1(int32_t value) { ___MinLength_1 = value; } inline static int32_t get_offset_of_MaxLength_2() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___MaxLength_2)); } inline int32_t get_MaxLength_2() const { return ___MaxLength_2; } inline int32_t* get_address_of_MaxLength_2() { return &___MaxLength_2; } inline void set_MaxLength_2(int32_t value) { ___MaxLength_2 = value; } inline static int32_t get_offset_of_Patterns_3() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___Patterns_3)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_Patterns_3() const { return ___Patterns_3; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_Patterns_3() { return &___Patterns_3; } inline void set_Patterns_3(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___Patterns_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Patterns_3), (void*)value); } inline static int32_t get_offset_of_Enumeration_4() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___Enumeration_4)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_Enumeration_4() const { return ___Enumeration_4; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_Enumeration_4() { return &___Enumeration_4; } inline void set_Enumeration_4(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___Enumeration_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Enumeration_4), (void*)value); } inline static int32_t get_offset_of_WhiteSpace_5() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___WhiteSpace_5)); } inline int32_t get_WhiteSpace_5() const { return ___WhiteSpace_5; } inline int32_t* get_address_of_WhiteSpace_5() { return &___WhiteSpace_5; } inline void set_WhiteSpace_5(int32_t value) { ___WhiteSpace_5 = value; } inline static int32_t get_offset_of_MaxInclusive_6() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___MaxInclusive_6)); } inline RuntimeObject * get_MaxInclusive_6() const { return ___MaxInclusive_6; } inline RuntimeObject ** get_address_of_MaxInclusive_6() { return &___MaxInclusive_6; } inline void set_MaxInclusive_6(RuntimeObject * value) { ___MaxInclusive_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___MaxInclusive_6), (void*)value); } inline static int32_t get_offset_of_MaxExclusive_7() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___MaxExclusive_7)); } inline RuntimeObject * get_MaxExclusive_7() const { return ___MaxExclusive_7; } inline RuntimeObject ** get_address_of_MaxExclusive_7() { return &___MaxExclusive_7; } inline void set_MaxExclusive_7(RuntimeObject * value) { ___MaxExclusive_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___MaxExclusive_7), (void*)value); } inline static int32_t get_offset_of_MinInclusive_8() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___MinInclusive_8)); } inline RuntimeObject * get_MinInclusive_8() const { return ___MinInclusive_8; } inline RuntimeObject ** get_address_of_MinInclusive_8() { return &___MinInclusive_8; } inline void set_MinInclusive_8(RuntimeObject * value) { ___MinInclusive_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___MinInclusive_8), (void*)value); } inline static int32_t get_offset_of_MinExclusive_9() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___MinExclusive_9)); } inline RuntimeObject * get_MinExclusive_9() const { return ___MinExclusive_9; } inline RuntimeObject ** get_address_of_MinExclusive_9() { return &___MinExclusive_9; } inline void set_MinExclusive_9(RuntimeObject * value) { ___MinExclusive_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___MinExclusive_9), (void*)value); } inline static int32_t get_offset_of_TotalDigits_10() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___TotalDigits_10)); } inline int32_t get_TotalDigits_10() const { return ___TotalDigits_10; } inline int32_t* get_address_of_TotalDigits_10() { return &___TotalDigits_10; } inline void set_TotalDigits_10(int32_t value) { ___TotalDigits_10 = value; } inline static int32_t get_offset_of_FractionDigits_11() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___FractionDigits_11)); } inline int32_t get_FractionDigits_11() const { return ___FractionDigits_11; } inline int32_t* get_address_of_FractionDigits_11() { return &___FractionDigits_11; } inline void set_FractionDigits_11(int32_t value) { ___FractionDigits_11 = value; } inline static int32_t get_offset_of_Flags_12() { return static_cast(offsetof(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA, ___Flags_12)); } inline int32_t get_Flags_12() const { return ___Flags_12; } inline int32_t* get_address_of_Flags_12() { return &___Flags_12; } inline void set_Flags_12(int32_t value) { ___Flags_12 = value; } }; // System.Xml.Schema.SchemaDeclBase struct SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A : public RuntimeObject { public: // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::name XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name_0; // System.String System.Xml.Schema.SchemaDeclBase::prefix String_t* ___prefix_1; // System.Boolean System.Xml.Schema.SchemaDeclBase::isDeclaredInExternal bool ___isDeclaredInExternal_2; // System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::presence int32_t ___presence_3; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.SchemaDeclBase::schemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___schemaType_4; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::datatype XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype_5; // System.String System.Xml.Schema.SchemaDeclBase::defaultValueRaw String_t* ___defaultValueRaw_6; // System.Object System.Xml.Schema.SchemaDeclBase::defaultValueTyped RuntimeObject * ___defaultValueTyped_7; // System.Int64 System.Xml.Schema.SchemaDeclBase::maxLength int64_t ___maxLength_8; // System.Int64 System.Xml.Schema.SchemaDeclBase::minLength int64_t ___minLength_9; // System.Collections.Generic.List`1 System.Xml.Schema.SchemaDeclBase::values List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___values_10; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___name_0)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_name_0() const { return ___name_0; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_name_0() { return &___name_0; } inline void set_name_0(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_prefix_1() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___prefix_1)); } inline String_t* get_prefix_1() const { return ___prefix_1; } inline String_t** get_address_of_prefix_1() { return &___prefix_1; } inline void set_prefix_1(String_t* value) { ___prefix_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_1), (void*)value); } inline static int32_t get_offset_of_isDeclaredInExternal_2() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___isDeclaredInExternal_2)); } inline bool get_isDeclaredInExternal_2() const { return ___isDeclaredInExternal_2; } inline bool* get_address_of_isDeclaredInExternal_2() { return &___isDeclaredInExternal_2; } inline void set_isDeclaredInExternal_2(bool value) { ___isDeclaredInExternal_2 = value; } inline static int32_t get_offset_of_presence_3() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___presence_3)); } inline int32_t get_presence_3() const { return ___presence_3; } inline int32_t* get_address_of_presence_3() { return &___presence_3; } inline void set_presence_3(int32_t value) { ___presence_3 = value; } inline static int32_t get_offset_of_schemaType_4() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___schemaType_4)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_schemaType_4() const { return ___schemaType_4; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_schemaType_4() { return &___schemaType_4; } inline void set_schemaType_4(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___schemaType_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___schemaType_4), (void*)value); } inline static int32_t get_offset_of_datatype_5() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___datatype_5)); } inline XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * get_datatype_5() const { return ___datatype_5; } inline XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 ** get_address_of_datatype_5() { return &___datatype_5; } inline void set_datatype_5(XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * value) { ___datatype_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___datatype_5), (void*)value); } inline static int32_t get_offset_of_defaultValueRaw_6() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___defaultValueRaw_6)); } inline String_t* get_defaultValueRaw_6() const { return ___defaultValueRaw_6; } inline String_t** get_address_of_defaultValueRaw_6() { return &___defaultValueRaw_6; } inline void set_defaultValueRaw_6(String_t* value) { ___defaultValueRaw_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultValueRaw_6), (void*)value); } inline static int32_t get_offset_of_defaultValueTyped_7() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___defaultValueTyped_7)); } inline RuntimeObject * get_defaultValueTyped_7() const { return ___defaultValueTyped_7; } inline RuntimeObject ** get_address_of_defaultValueTyped_7() { return &___defaultValueTyped_7; } inline void set_defaultValueTyped_7(RuntimeObject * value) { ___defaultValueTyped_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultValueTyped_7), (void*)value); } inline static int32_t get_offset_of_maxLength_8() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___maxLength_8)); } inline int64_t get_maxLength_8() const { return ___maxLength_8; } inline int64_t* get_address_of_maxLength_8() { return &___maxLength_8; } inline void set_maxLength_8(int64_t value) { ___maxLength_8 = value; } inline static int32_t get_offset_of_minLength_9() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___minLength_9)); } inline int64_t get_minLength_9() const { return ___minLength_9; } inline int64_t* get_address_of_minLength_9() { return &___minLength_9; } inline void set_minLength_9(int64_t value) { ___minLength_9 = value; } inline static int32_t get_offset_of_values_10() { return static_cast(offsetof(SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A, ___values_10)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_values_10() const { return ___values_10; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_values_10() { return &___values_10; } inline void set_values_10(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___values_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_10), (void*)value); } }; // System.Xml.Schema.SchemaInfo struct SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::elementDecls Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * ___elementDecls_0; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::undeclaredElementDecls Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * ___undeclaredElementDecls_1; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::generalEntities Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * ___generalEntities_2; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::parameterEntities Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * ___parameterEntities_3; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaInfo::docTypeName XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___docTypeName_4; // System.String System.Xml.Schema.SchemaInfo::internalDtdSubset String_t* ___internalDtdSubset_5; // System.Boolean System.Xml.Schema.SchemaInfo::hasNonCDataAttributes bool ___hasNonCDataAttributes_6; // System.Boolean System.Xml.Schema.SchemaInfo::hasDefaultAttributes bool ___hasDefaultAttributes_7; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::targetNamespaces Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C * ___targetNamespaces_8; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::attributeDecls Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * ___attributeDecls_9; // System.Xml.Schema.SchemaType System.Xml.Schema.SchemaInfo::schemaType int32_t ___schemaType_10; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::elementDeclsByType Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * ___elementDeclsByType_11; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::notations Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * ___notations_12; public: inline static int32_t get_offset_of_elementDecls_0() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___elementDecls_0)); } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * get_elementDecls_0() const { return ___elementDecls_0; } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 ** get_address_of_elementDecls_0() { return &___elementDecls_0; } inline void set_elementDecls_0(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * value) { ___elementDecls_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___elementDecls_0), (void*)value); } inline static int32_t get_offset_of_undeclaredElementDecls_1() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___undeclaredElementDecls_1)); } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * get_undeclaredElementDecls_1() const { return ___undeclaredElementDecls_1; } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 ** get_address_of_undeclaredElementDecls_1() { return &___undeclaredElementDecls_1; } inline void set_undeclaredElementDecls_1(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * value) { ___undeclaredElementDecls_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___undeclaredElementDecls_1), (void*)value); } inline static int32_t get_offset_of_generalEntities_2() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___generalEntities_2)); } inline Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * get_generalEntities_2() const { return ___generalEntities_2; } inline Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 ** get_address_of_generalEntities_2() { return &___generalEntities_2; } inline void set_generalEntities_2(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * value) { ___generalEntities_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___generalEntities_2), (void*)value); } inline static int32_t get_offset_of_parameterEntities_3() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___parameterEntities_3)); } inline Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * get_parameterEntities_3() const { return ___parameterEntities_3; } inline Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 ** get_address_of_parameterEntities_3() { return &___parameterEntities_3; } inline void set_parameterEntities_3(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * value) { ___parameterEntities_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameterEntities_3), (void*)value); } inline static int32_t get_offset_of_docTypeName_4() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___docTypeName_4)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_docTypeName_4() const { return ___docTypeName_4; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_docTypeName_4() { return &___docTypeName_4; } inline void set_docTypeName_4(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___docTypeName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___docTypeName_4), (void*)value); } inline static int32_t get_offset_of_internalDtdSubset_5() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___internalDtdSubset_5)); } inline String_t* get_internalDtdSubset_5() const { return ___internalDtdSubset_5; } inline String_t** get_address_of_internalDtdSubset_5() { return &___internalDtdSubset_5; } inline void set_internalDtdSubset_5(String_t* value) { ___internalDtdSubset_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalDtdSubset_5), (void*)value); } inline static int32_t get_offset_of_hasNonCDataAttributes_6() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___hasNonCDataAttributes_6)); } inline bool get_hasNonCDataAttributes_6() const { return ___hasNonCDataAttributes_6; } inline bool* get_address_of_hasNonCDataAttributes_6() { return &___hasNonCDataAttributes_6; } inline void set_hasNonCDataAttributes_6(bool value) { ___hasNonCDataAttributes_6 = value; } inline static int32_t get_offset_of_hasDefaultAttributes_7() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___hasDefaultAttributes_7)); } inline bool get_hasDefaultAttributes_7() const { return ___hasDefaultAttributes_7; } inline bool* get_address_of_hasDefaultAttributes_7() { return &___hasDefaultAttributes_7; } inline void set_hasDefaultAttributes_7(bool value) { ___hasDefaultAttributes_7 = value; } inline static int32_t get_offset_of_targetNamespaces_8() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___targetNamespaces_8)); } inline Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C * get_targetNamespaces_8() const { return ___targetNamespaces_8; } inline Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C ** get_address_of_targetNamespaces_8() { return &___targetNamespaces_8; } inline void set_targetNamespaces_8(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C * value) { ___targetNamespaces_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___targetNamespaces_8), (void*)value); } inline static int32_t get_offset_of_attributeDecls_9() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___attributeDecls_9)); } inline Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * get_attributeDecls_9() const { return ___attributeDecls_9; } inline Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 ** get_address_of_attributeDecls_9() { return &___attributeDecls_9; } inline void set_attributeDecls_9(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * value) { ___attributeDecls_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributeDecls_9), (void*)value); } inline static int32_t get_offset_of_schemaType_10() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___schemaType_10)); } inline int32_t get_schemaType_10() const { return ___schemaType_10; } inline int32_t* get_address_of_schemaType_10() { return &___schemaType_10; } inline void set_schemaType_10(int32_t value) { ___schemaType_10 = value; } inline static int32_t get_offset_of_elementDeclsByType_11() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___elementDeclsByType_11)); } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * get_elementDeclsByType_11() const { return ___elementDeclsByType_11; } inline Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 ** get_address_of_elementDeclsByType_11() { return &___elementDeclsByType_11; } inline void set_elementDeclsByType_11(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * value) { ___elementDeclsByType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___elementDeclsByType_11), (void*)value); } inline static int32_t get_offset_of_notations_12() { return static_cast(offsetof(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5, ___notations_12)); } inline Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * get_notations_12() const { return ___notations_12; } inline Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 ** get_address_of_notations_12() { return &___notations_12; } inline void set_notations_12(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * value) { ___notations_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___notations_12), (void*)value); } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; // System.Xml.Serialization.TypeData struct TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 : public RuntimeObject { public: // System.Type System.Xml.Serialization.TypeData::type Type_t * ___type_0; // System.String System.Xml.Serialization.TypeData::elementName String_t* ___elementName_1; // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::sType int32_t ___sType_2; // System.Type System.Xml.Serialization.TypeData::listItemType Type_t * ___listItemType_3; // System.String System.Xml.Serialization.TypeData::typeName String_t* ___typeName_4; // System.String System.Xml.Serialization.TypeData::fullTypeName String_t* ___fullTypeName_5; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::listItemTypeData TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___listItemTypeData_6; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::mappedType TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___mappedType_7; // System.Xml.Schema.XmlSchemaPatternFacet System.Xml.Serialization.TypeData::facet XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * ___facet_8; // System.Reflection.MethodInfo System.Xml.Serialization.TypeData::typeConvertor MethodInfo_t * ___typeConvertor_9; // System.Boolean System.Xml.Serialization.TypeData::hasPublicConstructor bool ___hasPublicConstructor_10; // System.Boolean System.Xml.Serialization.TypeData::nullableOverride bool ___nullableOverride_11; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value); } inline static int32_t get_offset_of_elementName_1() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___elementName_1)); } inline String_t* get_elementName_1() const { return ___elementName_1; } inline String_t** get_address_of_elementName_1() { return &___elementName_1; } inline void set_elementName_1(String_t* value) { ___elementName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___elementName_1), (void*)value); } inline static int32_t get_offset_of_sType_2() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___sType_2)); } inline int32_t get_sType_2() const { return ___sType_2; } inline int32_t* get_address_of_sType_2() { return &___sType_2; } inline void set_sType_2(int32_t value) { ___sType_2 = value; } inline static int32_t get_offset_of_listItemType_3() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___listItemType_3)); } inline Type_t * get_listItemType_3() const { return ___listItemType_3; } inline Type_t ** get_address_of_listItemType_3() { return &___listItemType_3; } inline void set_listItemType_3(Type_t * value) { ___listItemType_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___listItemType_3), (void*)value); } inline static int32_t get_offset_of_typeName_4() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___typeName_4)); } inline String_t* get_typeName_4() const { return ___typeName_4; } inline String_t** get_address_of_typeName_4() { return &___typeName_4; } inline void set_typeName_4(String_t* value) { ___typeName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeName_4), (void*)value); } inline static int32_t get_offset_of_fullTypeName_5() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___fullTypeName_5)); } inline String_t* get_fullTypeName_5() const { return ___fullTypeName_5; } inline String_t** get_address_of_fullTypeName_5() { return &___fullTypeName_5; } inline void set_fullTypeName_5(String_t* value) { ___fullTypeName_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___fullTypeName_5), (void*)value); } inline static int32_t get_offset_of_listItemTypeData_6() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___listItemTypeData_6)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get_listItemTypeData_6() const { return ___listItemTypeData_6; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of_listItemTypeData_6() { return &___listItemTypeData_6; } inline void set_listItemTypeData_6(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ___listItemTypeData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___listItemTypeData_6), (void*)value); } inline static int32_t get_offset_of_mappedType_7() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___mappedType_7)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get_mappedType_7() const { return ___mappedType_7; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of_mappedType_7() { return &___mappedType_7; } inline void set_mappedType_7(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ___mappedType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___mappedType_7), (void*)value); } inline static int32_t get_offset_of_facet_8() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___facet_8)); } inline XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * get_facet_8() const { return ___facet_8; } inline XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 ** get_address_of_facet_8() { return &___facet_8; } inline void set_facet_8(XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * value) { ___facet_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___facet_8), (void*)value); } inline static int32_t get_offset_of_typeConvertor_9() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___typeConvertor_9)); } inline MethodInfo_t * get_typeConvertor_9() const { return ___typeConvertor_9; } inline MethodInfo_t ** get_address_of_typeConvertor_9() { return &___typeConvertor_9; } inline void set_typeConvertor_9(MethodInfo_t * value) { ___typeConvertor_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeConvertor_9), (void*)value); } inline static int32_t get_offset_of_hasPublicConstructor_10() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___hasPublicConstructor_10)); } inline bool get_hasPublicConstructor_10() const { return ___hasPublicConstructor_10; } inline bool* get_address_of_hasPublicConstructor_10() { return &___hasPublicConstructor_10; } inline void set_hasPublicConstructor_10(bool value) { ___hasPublicConstructor_10 = value; } inline static int32_t get_offset_of_nullableOverride_11() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___nullableOverride_11)); } inline bool get_nullableOverride_11() const { return ___nullableOverride_11; } inline bool* get_address_of_nullableOverride_11() { return &___nullableOverride_11; } inline void set_nullableOverride_11(bool value) { ___nullableOverride_11 = value; } }; // System.Xml.Schema.UpaException struct UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA : public Exception_t { public: // System.Object System.Xml.Schema.UpaException::particle1 RuntimeObject * ___particle1_17; // System.Object System.Xml.Schema.UpaException::particle2 RuntimeObject * ___particle2_18; public: inline static int32_t get_offset_of_particle1_17() { return static_cast(offsetof(UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA, ___particle1_17)); } inline RuntimeObject * get_particle1_17() const { return ___particle1_17; } inline RuntimeObject ** get_address_of_particle1_17() { return &___particle1_17; } inline void set_particle1_17(RuntimeObject * value) { ___particle1_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___particle1_17), (void*)value); } inline static int32_t get_offset_of_particle2_18() { return static_cast(offsetof(UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA, ___particle2_18)); } inline RuntimeObject * get_particle2_18() const { return ___particle2_18; } inline RuntimeObject ** get_address_of_particle2_18() { return &___particle2_18; } inline void set_particle2_18(RuntimeObject * value) { ___particle2_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___particle2_18), (void*)value); } }; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject { public: // 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_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___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_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_18; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_19; public: inline static int32_t get_offset_of_m_String_13() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_13)); } inline String_t* get_m_String_13() const { return ___m_String_13; } inline String_t** get_address_of_m_String_13() { return &___m_String_13; } inline void set_m_String_13(String_t* value) { ___m_String_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_13), (void*)value); } inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_14)); } inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; } inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; } inline void set_m_originalUnicodeString_14(String_t* value) { ___m_originalUnicodeString_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_14), (void*)value); } inline static int32_t get_offset_of_m_Syntax_15() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_15)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_15() const { return ___m_Syntax_15; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; } inline void set_m_Syntax_15(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___m_Syntax_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_15), (void*)value); } inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_16)); } inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; } inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; } inline void set_m_DnsSafeHost_16(String_t* value) { ___m_DnsSafeHost_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_16), (void*)value); } inline static int32_t get_offset_of_m_Flags_17() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_17)); } inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; } inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; } inline void set_m_Flags_17(uint64_t value) { ___m_Flags_17 = value; } inline static int32_t get_offset_of_m_Info_18() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_18)); } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_18() const { return ___m_Info_18; } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_18() { return &___m_Info_18; } inline void set_m_Info_18(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value) { ___m_Info_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Info_18), (void*)value); } inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_19)); } inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; } inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; } inline void set_m_iriParsing_19(bool value) { ___m_iriParsing_19 = value; } }; // System.Xml.Schema.ValidationEventArgs struct ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // System.Xml.Schema.XmlSchemaException System.Xml.Schema.ValidationEventArgs::ex XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * ___ex_1; // System.Xml.Schema.XmlSeverityType System.Xml.Schema.ValidationEventArgs::severity int32_t ___severity_2; public: inline static int32_t get_offset_of_ex_1() { return static_cast(offsetof(ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17, ___ex_1)); } inline XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * get_ex_1() const { return ___ex_1; } inline XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA ** get_address_of_ex_1() { return &___ex_1; } inline void set_ex_1(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * value) { ___ex_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ex_1), (void*)value); } inline static int32_t get_offset_of_severity_2() { return static_cast(offsetof(ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17, ___severity_2)); } inline int32_t get_severity_2() const { return ___severity_2; } inline int32_t* get_address_of_severity_2() { return &___severity_2; } inline void set_severity_2(int32_t value) { ___severity_2 = value; } }; // System.Xml.Schema.XmlAtomicValue struct XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C : public XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 { public: // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlAtomicValue::xmlType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType_0; // System.Object System.Xml.Schema.XmlAtomicValue::objVal RuntimeObject * ___objVal_1; // System.TypeCode System.Xml.Schema.XmlAtomicValue::clrType int32_t ___clrType_2; // System.Xml.Schema.XmlAtomicValue/Union System.Xml.Schema.XmlAtomicValue::unionVal Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F ___unionVal_3; // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName System.Xml.Schema.XmlAtomicValue::nsPrefix NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * ___nsPrefix_4; public: inline static int32_t get_offset_of_xmlType_0() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___xmlType_0)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_xmlType_0() const { return ___xmlType_0; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_xmlType_0() { return &___xmlType_0; } inline void set_xmlType_0(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___xmlType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlType_0), (void*)value); } inline static int32_t get_offset_of_objVal_1() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___objVal_1)); } inline RuntimeObject * get_objVal_1() const { return ___objVal_1; } inline RuntimeObject ** get_address_of_objVal_1() { return &___objVal_1; } inline void set_objVal_1(RuntimeObject * value) { ___objVal_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___objVal_1), (void*)value); } inline static int32_t get_offset_of_clrType_2() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___clrType_2)); } inline int32_t get_clrType_2() const { return ___clrType_2; } inline int32_t* get_address_of_clrType_2() { return &___clrType_2; } inline void set_clrType_2(int32_t value) { ___clrType_2 = value; } inline static int32_t get_offset_of_unionVal_3() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___unionVal_3)); } inline Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F get_unionVal_3() const { return ___unionVal_3; } inline Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F * get_address_of_unionVal_3() { return &___unionVal_3; } inline void set_unionVal_3(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F value) { ___unionVal_3 = value; } inline static int32_t get_offset_of_nsPrefix_4() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___nsPrefix_4)); } inline NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * get_nsPrefix_4() const { return ___nsPrefix_4; } inline NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 ** get_address_of_nsPrefix_4() { return &___nsPrefix_4; } inline void set_nsPrefix_4(NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * value) { ___nsPrefix_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___nsPrefix_4), (void*)value); } }; // System.Xml.Schema.XmlBaseConverter struct XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 : public XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 { public: // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlBaseConverter::schemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___schemaType_0; // System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlBaseConverter::typeCode int32_t ___typeCode_1; // System.Type System.Xml.Schema.XmlBaseConverter::clrTypeDefault Type_t * ___clrTypeDefault_2; public: inline static int32_t get_offset_of_schemaType_0() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55, ___schemaType_0)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_schemaType_0() const { return ___schemaType_0; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_schemaType_0() { return &___schemaType_0; } inline void set_schemaType_0(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___schemaType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___schemaType_0), (void*)value); } inline static int32_t get_offset_of_typeCode_1() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55, ___typeCode_1)); } inline int32_t get_typeCode_1() const { return ___typeCode_1; } inline int32_t* get_address_of_typeCode_1() { return &___typeCode_1; } inline void set_typeCode_1(int32_t value) { ___typeCode_1 = value; } inline static int32_t get_offset_of_clrTypeDefault_2() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55, ___clrTypeDefault_2)); } inline Type_t * get_clrTypeDefault_2() const { return ___clrTypeDefault_2; } inline Type_t ** get_address_of_clrTypeDefault_2() { return &___clrTypeDefault_2; } inline void set_clrTypeDefault_2(Type_t * value) { ___clrTypeDefault_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___clrTypeDefault_2), (void*)value); } }; // System.Xml.Serialization.XmlMapping struct XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 : public RuntimeObject { public: // System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::map ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * ___map_0; // System.Collections.ArrayList System.Xml.Serialization.XmlMapping::relatedMaps ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___relatedMaps_1; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::format int32_t ___format_2; // System.String System.Xml.Serialization.XmlMapping::_elementName String_t* ____elementName_3; // System.String System.Xml.Serialization.XmlMapping::_namespace String_t* ____namespace_4; // System.String System.Xml.Serialization.XmlMapping::key String_t* ___key_5; public: inline static int32_t get_offset_of_map_0() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___map_0)); } inline ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * get_map_0() const { return ___map_0; } inline ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C ** get_address_of_map_0() { return &___map_0; } inline void set_map_0(ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * value) { ___map_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___map_0), (void*)value); } inline static int32_t get_offset_of_relatedMaps_1() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___relatedMaps_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_relatedMaps_1() const { return ___relatedMaps_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_relatedMaps_1() { return &___relatedMaps_1; } inline void set_relatedMaps_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___relatedMaps_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___relatedMaps_1), (void*)value); } inline static int32_t get_offset_of_format_2() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___format_2)); } inline int32_t get_format_2() const { return ___format_2; } inline int32_t* get_address_of_format_2() { return &___format_2; } inline void set_format_2(int32_t value) { ___format_2 = value; } inline static int32_t get_offset_of__elementName_3() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ____elementName_3)); } inline String_t* get__elementName_3() const { return ____elementName_3; } inline String_t** get_address_of__elementName_3() { return &____elementName_3; } inline void set__elementName_3(String_t* value) { ____elementName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____elementName_3), (void*)value); } inline static int32_t get_offset_of__namespace_4() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ____namespace_4)); } inline String_t* get__namespace_4() const { return ____namespace_4; } inline String_t** get_address_of__namespace_4() { return &____namespace_4; } inline void set__namespace_4(String_t* value) { ____namespace_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____namespace_4), (void*)value); } inline static int32_t get_offset_of_key_5() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___key_5)); } inline String_t* get_key_5() const { return ___key_5; } inline String_t** get_address_of_key_5() { return &___key_5; } inline void set_key_5(String_t* value) { ___key_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_5), (void*)value); } }; // System.Xml.Schema.XmlSchemaAnyAttribute struct XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 : public XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 { public: // System.String System.Xml.Schema.XmlSchemaAnyAttribute::ns String_t* ___ns_0; // System.Xml.Schema.XmlSchemaContentProcessing System.Xml.Schema.XmlSchemaAnyAttribute::processContents int32_t ___processContents_1; // System.Xml.Schema.NamespaceList System.Xml.Schema.XmlSchemaAnyAttribute::namespaceList NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___namespaceList_2; public: inline static int32_t get_offset_of_ns_0() { return static_cast(offsetof(XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80, ___ns_0)); } inline String_t* get_ns_0() const { return ___ns_0; } inline String_t** get_address_of_ns_0() { return &___ns_0; } inline void set_ns_0(String_t* value) { ___ns_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_0), (void*)value); } inline static int32_t get_offset_of_processContents_1() { return static_cast(offsetof(XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80, ___processContents_1)); } inline int32_t get_processContents_1() const { return ___processContents_1; } inline int32_t* get_address_of_processContents_1() { return &___processContents_1; } inline void set_processContents_1(int32_t value) { ___processContents_1 = value; } inline static int32_t get_offset_of_namespaceList_2() { return static_cast(offsetof(XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80, ___namespaceList_2)); } inline NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * get_namespaceList_2() const { return ___namespaceList_2; } inline NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A ** get_address_of_namespaceList_2() { return &___namespaceList_2; } inline void set_namespaceList_2(NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * value) { ___namespaceList_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceList_2), (void*)value); } }; // System.Xml.Schema.XmlSchemaFacet struct XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F : public XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 { public: // System.String System.Xml.Schema.XmlSchemaFacet::value String_t* ___value_0; // System.Xml.Schema.FacetType System.Xml.Schema.XmlSchemaFacet::facetType int32_t ___facetType_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F, ___value_0)); } inline String_t* get_value_0() const { return ___value_0; } inline String_t** get_address_of_value_0() { return &___value_0; } inline void set_value_0(String_t* value) { ___value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value); } inline static int32_t get_offset_of_facetType_1() { return static_cast(offsetof(XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F, ___facetType_1)); } inline int32_t get_facetType_1() const { return ___facetType_1; } inline int32_t* get_address_of_facetType_1() { return &___facetType_1; } inline void set_facetType_1(int32_t value) { ___facetType_1 = value; } }; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA : public XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 { public: // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::final int32_t ___final_0; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::derivedBy int32_t ___derivedBy_1; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::baseSchemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___baseSchemaType_2; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::datatype XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype_3; // System.Xml.Schema.SchemaElementDecl modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::elementDecl SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * ___elementDecl_4; // System.Xml.XmlQualifiedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::qname XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname_5; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaType::contentType int32_t ___contentType_6; public: inline static int32_t get_offset_of_final_0() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___final_0)); } inline int32_t get_final_0() const { return ___final_0; } inline int32_t* get_address_of_final_0() { return &___final_0; } inline void set_final_0(int32_t value) { ___final_0 = value; } inline static int32_t get_offset_of_derivedBy_1() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___derivedBy_1)); } inline int32_t get_derivedBy_1() const { return ___derivedBy_1; } inline int32_t* get_address_of_derivedBy_1() { return &___derivedBy_1; } inline void set_derivedBy_1(int32_t value) { ___derivedBy_1 = value; } inline static int32_t get_offset_of_baseSchemaType_2() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___baseSchemaType_2)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_baseSchemaType_2() const { return ___baseSchemaType_2; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_baseSchemaType_2() { return &___baseSchemaType_2; } inline void set_baseSchemaType_2(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___baseSchemaType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseSchemaType_2), (void*)value); } inline static int32_t get_offset_of_datatype_3() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___datatype_3)); } inline XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * get_datatype_3() const { return ___datatype_3; } inline XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 ** get_address_of_datatype_3() { return &___datatype_3; } inline void set_datatype_3(XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * value) { ___datatype_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___datatype_3), (void*)value); } inline static int32_t get_offset_of_elementDecl_4() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___elementDecl_4)); } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * get_elementDecl_4() const { return ___elementDecl_4; } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B ** get_address_of_elementDecl_4() { return &___elementDecl_4; } inline void set_elementDecl_4(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * value) { ___elementDecl_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___elementDecl_4), (void*)value); } inline static int32_t get_offset_of_qname_5() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___qname_5)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_qname_5() const { return ___qname_5; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_qname_5() { return &___qname_5; } inline void set_qname_5(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___qname_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___qname_5), (void*)value); } inline static int32_t get_offset_of_contentType_6() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___contentType_6)); } inline int32_t get_contentType_6() const { return ___contentType_6; } inline int32_t* get_address_of_contentType_6() { return &___contentType_6; } inline void set_contentType_6(int32_t value) { ___contentType_6 = value; } }; // System.Xml.Serialization.XmlTypeMapElementInfo struct XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A : public RuntimeObject { public: // System.String System.Xml.Serialization.XmlTypeMapElementInfo::_elementName String_t* ____elementName_0; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::_namespace String_t* ____namespace_1; // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::_form int32_t ____form_2; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::_member XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * ____member_3; // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::_choiceValue RuntimeObject * ____choiceValue_4; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_isNullable bool ____isNullable_5; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_nestingLevel int32_t ____nestingLevel_6; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::_mappedType XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ____mappedType_7; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::_type TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ____type_8; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_wrappedElement bool ____wrappedElement_9; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_explicitOrder int32_t ____explicitOrder_10; public: inline static int32_t get_offset_of__elementName_0() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____elementName_0)); } inline String_t* get__elementName_0() const { return ____elementName_0; } inline String_t** get_address_of__elementName_0() { return &____elementName_0; } inline void set__elementName_0(String_t* value) { ____elementName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____elementName_0), (void*)value); } inline static int32_t get_offset_of__namespace_1() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____namespace_1)); } inline String_t* get__namespace_1() const { return ____namespace_1; } inline String_t** get_address_of__namespace_1() { return &____namespace_1; } inline void set__namespace_1(String_t* value) { ____namespace_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____namespace_1), (void*)value); } inline static int32_t get_offset_of__form_2() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____form_2)); } inline int32_t get__form_2() const { return ____form_2; } inline int32_t* get_address_of__form_2() { return &____form_2; } inline void set__form_2(int32_t value) { ____form_2 = value; } inline static int32_t get_offset_of__member_3() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____member_3)); } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * get__member_3() const { return ____member_3; } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC ** get_address_of__member_3() { return &____member_3; } inline void set__member_3(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * value) { ____member_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____member_3), (void*)value); } inline static int32_t get_offset_of__choiceValue_4() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____choiceValue_4)); } inline RuntimeObject * get__choiceValue_4() const { return ____choiceValue_4; } inline RuntimeObject ** get_address_of__choiceValue_4() { return &____choiceValue_4; } inline void set__choiceValue_4(RuntimeObject * value) { ____choiceValue_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____choiceValue_4), (void*)value); } inline static int32_t get_offset_of__isNullable_5() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____isNullable_5)); } inline bool get__isNullable_5() const { return ____isNullable_5; } inline bool* get_address_of__isNullable_5() { return &____isNullable_5; } inline void set__isNullable_5(bool value) { ____isNullable_5 = value; } inline static int32_t get_offset_of__nestingLevel_6() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____nestingLevel_6)); } inline int32_t get__nestingLevel_6() const { return ____nestingLevel_6; } inline int32_t* get_address_of__nestingLevel_6() { return &____nestingLevel_6; } inline void set__nestingLevel_6(int32_t value) { ____nestingLevel_6 = value; } inline static int32_t get_offset_of__mappedType_7() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____mappedType_7)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get__mappedType_7() const { return ____mappedType_7; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of__mappedType_7() { return &____mappedType_7; } inline void set__mappedType_7(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ____mappedType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____mappedType_7), (void*)value); } inline static int32_t get_offset_of__type_8() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____type_8)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get__type_8() const { return ____type_8; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of__type_8() { return &____type_8; } inline void set__type_8(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ____type_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____type_8), (void*)value); } inline static int32_t get_offset_of__wrappedElement_9() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____wrappedElement_9)); } inline bool get__wrappedElement_9() const { return ____wrappedElement_9; } inline bool* get_address_of__wrappedElement_9() { return &____wrappedElement_9; } inline void set__wrappedElement_9(bool value) { ____wrappedElement_9 = value; } inline static int32_t get_offset_of__explicitOrder_10() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____explicitOrder_10)); } inline int32_t get__explicitOrder_10() const { return ____explicitOrder_10; } inline int32_t* get_address_of__explicitOrder_10() { return &____explicitOrder_10; } inline void set__explicitOrder_10(int32_t value) { ____explicitOrder_10 = value; } }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // System.Xml.Schema.DfaContentValidator struct DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73 : public ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C { public: // System.Int32[][] System.Xml.Schema.DfaContentValidator::transitionTable Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ___transitionTable_7; // System.Xml.Schema.SymbolsDictionary System.Xml.Schema.DfaContentValidator::symbols SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols_8; public: inline static int32_t get_offset_of_transitionTable_7() { return static_cast(offsetof(DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73, ___transitionTable_7)); } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* get_transitionTable_7() const { return ___transitionTable_7; } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF** get_address_of_transitionTable_7() { return &___transitionTable_7; } inline void set_transitionTable_7(Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* value) { ___transitionTable_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___transitionTable_7), (void*)value); } inline static int32_t get_offset_of_symbols_8() { return static_cast(offsetof(DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73, ___symbols_8)); } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * get_symbols_8() const { return ___symbols_8; } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF ** get_address_of_symbols_8() { return &___symbols_8; } inline void set_symbols_8(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * value) { ___symbols_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___symbols_8), (void*)value); } }; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Xml.Schema.NfaContentValidator struct NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC : public ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C { public: // System.Xml.Schema.BitSet System.Xml.Schema.NfaContentValidator::firstpos BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_7; // System.Xml.Schema.BitSet[] System.Xml.Schema.NfaContentValidator::followpos BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos_8; // System.Xml.Schema.SymbolsDictionary System.Xml.Schema.NfaContentValidator::symbols SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols_9; // System.Xml.Schema.Positions System.Xml.Schema.NfaContentValidator::positions Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions_10; // System.Int32 System.Xml.Schema.NfaContentValidator::endMarkerPos int32_t ___endMarkerPos_11; public: inline static int32_t get_offset_of_firstpos_7() { return static_cast(offsetof(NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC, ___firstpos_7)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstpos_7() const { return ___firstpos_7; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstpos_7() { return &___firstpos_7; } inline void set_firstpos_7(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___firstpos_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstpos_7), (void*)value); } inline static int32_t get_offset_of_followpos_8() { return static_cast(offsetof(NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC, ___followpos_8)); } inline BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* get_followpos_8() const { return ___followpos_8; } inline BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD** get_address_of_followpos_8() { return &___followpos_8; } inline void set_followpos_8(BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* value) { ___followpos_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___followpos_8), (void*)value); } inline static int32_t get_offset_of_symbols_9() { return static_cast(offsetof(NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC, ___symbols_9)); } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * get_symbols_9() const { return ___symbols_9; } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF ** get_address_of_symbols_9() { return &___symbols_9; } inline void set_symbols_9(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * value) { ___symbols_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___symbols_9), (void*)value); } inline static int32_t get_offset_of_positions_10() { return static_cast(offsetof(NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC, ___positions_10)); } inline Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * get_positions_10() const { return ___positions_10; } inline Positions_t577D66E21F674149C5A3E68851CE88B94C37248F ** get_address_of_positions_10() { return &___positions_10; } inline void set_positions_10(Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * value) { ___positions_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___positions_10), (void*)value); } inline static int32_t get_offset_of_endMarkerPos_11() { return static_cast(offsetof(NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC, ___endMarkerPos_11)); } inline int32_t get_endMarkerPos_11() const { return ___endMarkerPos_11; } inline int32_t* get_address_of_endMarkerPos_11() { return &___endMarkerPos_11; } inline void set_endMarkerPos_11(int32_t value) { ___endMarkerPos_11 = value; } }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Xml.Schema.ParticleContentValidator struct ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 : public ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C { public: // System.Xml.Schema.SymbolsDictionary System.Xml.Schema.ParticleContentValidator::symbols SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols_7; // System.Xml.Schema.Positions System.Xml.Schema.ParticleContentValidator::positions Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions_8; // System.Collections.Stack System.Xml.Schema.ParticleContentValidator::stack Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * ___stack_9; // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.ParticleContentValidator::contentNode SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___contentNode_10; // System.Boolean System.Xml.Schema.ParticleContentValidator::isPartial bool ___isPartial_11; // System.Int32 System.Xml.Schema.ParticleContentValidator::minMaxNodesCount int32_t ___minMaxNodesCount_12; // System.Boolean System.Xml.Schema.ParticleContentValidator::enableUpaCheck bool ___enableUpaCheck_13; public: inline static int32_t get_offset_of_symbols_7() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___symbols_7)); } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * get_symbols_7() const { return ___symbols_7; } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF ** get_address_of_symbols_7() { return &___symbols_7; } inline void set_symbols_7(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * value) { ___symbols_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___symbols_7), (void*)value); } inline static int32_t get_offset_of_positions_8() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___positions_8)); } inline Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * get_positions_8() const { return ___positions_8; } inline Positions_t577D66E21F674149C5A3E68851CE88B94C37248F ** get_address_of_positions_8() { return &___positions_8; } inline void set_positions_8(Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * value) { ___positions_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___positions_8), (void*)value); } inline static int32_t get_offset_of_stack_9() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___stack_9)); } inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * get_stack_9() const { return ___stack_9; } inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 ** get_address_of_stack_9() { return &___stack_9; } inline void set_stack_9(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * value) { ___stack_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___stack_9), (void*)value); } inline static int32_t get_offset_of_contentNode_10() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___contentNode_10)); } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * get_contentNode_10() const { return ___contentNode_10; } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 ** get_address_of_contentNode_10() { return &___contentNode_10; } inline void set_contentNode_10(SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * value) { ___contentNode_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentNode_10), (void*)value); } inline static int32_t get_offset_of_isPartial_11() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___isPartial_11)); } inline bool get_isPartial_11() const { return ___isPartial_11; } inline bool* get_address_of_isPartial_11() { return &___isPartial_11; } inline void set_isPartial_11(bool value) { ___isPartial_11 = value; } inline static int32_t get_offset_of_minMaxNodesCount_12() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___minMaxNodesCount_12)); } inline int32_t get_minMaxNodesCount_12() const { return ___minMaxNodesCount_12; } inline int32_t* get_address_of_minMaxNodesCount_12() { return &___minMaxNodesCount_12; } inline void set_minMaxNodesCount_12(int32_t value) { ___minMaxNodesCount_12 = value; } inline static int32_t get_offset_of_enableUpaCheck_13() { return static_cast(offsetof(ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8, ___enableUpaCheck_13)); } inline bool get_enableUpaCheck_13() const { return ___enableUpaCheck_13; } inline bool* get_address_of_enableUpaCheck_13() { return &___enableUpaCheck_13; } inline void set_enableUpaCheck_13(bool value) { ___enableUpaCheck_13 = value; } }; // System.Xml.Schema.RangeContentValidator struct RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52 : public ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C { public: // System.Xml.Schema.BitSet System.Xml.Schema.RangeContentValidator::firstpos BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_7; // System.Xml.Schema.BitSet[] System.Xml.Schema.RangeContentValidator::followpos BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos_8; // System.Xml.Schema.BitSet System.Xml.Schema.RangeContentValidator::positionsWithRangeTerminals BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___positionsWithRangeTerminals_9; // System.Xml.Schema.SymbolsDictionary System.Xml.Schema.RangeContentValidator::symbols SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols_10; // System.Xml.Schema.Positions System.Xml.Schema.RangeContentValidator::positions Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions_11; // System.Int32 System.Xml.Schema.RangeContentValidator::minMaxNodesCount int32_t ___minMaxNodesCount_12; // System.Int32 System.Xml.Schema.RangeContentValidator::endMarkerPos int32_t ___endMarkerPos_13; public: inline static int32_t get_offset_of_firstpos_7() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___firstpos_7)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstpos_7() const { return ___firstpos_7; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstpos_7() { return &___firstpos_7; } inline void set_firstpos_7(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___firstpos_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstpos_7), (void*)value); } inline static int32_t get_offset_of_followpos_8() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___followpos_8)); } inline BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* get_followpos_8() const { return ___followpos_8; } inline BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD** get_address_of_followpos_8() { return &___followpos_8; } inline void set_followpos_8(BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* value) { ___followpos_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___followpos_8), (void*)value); } inline static int32_t get_offset_of_positionsWithRangeTerminals_9() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___positionsWithRangeTerminals_9)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_positionsWithRangeTerminals_9() const { return ___positionsWithRangeTerminals_9; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_positionsWithRangeTerminals_9() { return &___positionsWithRangeTerminals_9; } inline void set_positionsWithRangeTerminals_9(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___positionsWithRangeTerminals_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___positionsWithRangeTerminals_9), (void*)value); } inline static int32_t get_offset_of_symbols_10() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___symbols_10)); } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * get_symbols_10() const { return ___symbols_10; } inline SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF ** get_address_of_symbols_10() { return &___symbols_10; } inline void set_symbols_10(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * value) { ___symbols_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___symbols_10), (void*)value); } inline static int32_t get_offset_of_positions_11() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___positions_11)); } inline Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * get_positions_11() const { return ___positions_11; } inline Positions_t577D66E21F674149C5A3E68851CE88B94C37248F ** get_address_of_positions_11() { return &___positions_11; } inline void set_positions_11(Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * value) { ___positions_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___positions_11), (void*)value); } inline static int32_t get_offset_of_minMaxNodesCount_12() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___minMaxNodesCount_12)); } inline int32_t get_minMaxNodesCount_12() const { return ___minMaxNodesCount_12; } inline int32_t* get_address_of_minMaxNodesCount_12() { return &___minMaxNodesCount_12; } inline void set_minMaxNodesCount_12(int32_t value) { ___minMaxNodesCount_12 = value; } inline static int32_t get_offset_of_endMarkerPos_13() { return static_cast(offsetof(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52, ___endMarkerPos_13)); } inline int32_t get_endMarkerPos_13() const { return ___endMarkerPos_13; } inline int32_t* get_address_of_endMarkerPos_13() { return &___endMarkerPos_13; } inline void set_endMarkerPos_13(int32_t value) { ___endMarkerPos_13 = value; } }; // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 : public SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A { public: // System.String System.Xml.Schema.SchemaAttDef::defExpanded String_t* ___defExpanded_11; // System.Int32 System.Xml.Schema.SchemaAttDef::lineNum int32_t ___lineNum_12; // System.Int32 System.Xml.Schema.SchemaAttDef::linePos int32_t ___linePos_13; // System.Int32 System.Xml.Schema.SchemaAttDef::valueLineNum int32_t ___valueLineNum_14; // System.Int32 System.Xml.Schema.SchemaAttDef::valueLinePos int32_t ___valueLinePos_15; // System.Xml.Schema.SchemaAttDef/Reserve System.Xml.Schema.SchemaAttDef::reserved int32_t ___reserved_16; public: inline static int32_t get_offset_of_defExpanded_11() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68, ___defExpanded_11)); } inline String_t* get_defExpanded_11() const { return ___defExpanded_11; } inline String_t** get_address_of_defExpanded_11() { return &___defExpanded_11; } inline void set_defExpanded_11(String_t* value) { ___defExpanded_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___defExpanded_11), (void*)value); } inline static int32_t get_offset_of_lineNum_12() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68, ___lineNum_12)); } inline int32_t get_lineNum_12() const { return ___lineNum_12; } inline int32_t* get_address_of_lineNum_12() { return &___lineNum_12; } inline void set_lineNum_12(int32_t value) { ___lineNum_12 = value; } inline static int32_t get_offset_of_linePos_13() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68, ___linePos_13)); } inline int32_t get_linePos_13() const { return ___linePos_13; } inline int32_t* get_address_of_linePos_13() { return &___linePos_13; } inline void set_linePos_13(int32_t value) { ___linePos_13 = value; } inline static int32_t get_offset_of_valueLineNum_14() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68, ___valueLineNum_14)); } inline int32_t get_valueLineNum_14() const { return ___valueLineNum_14; } inline int32_t* get_address_of_valueLineNum_14() { return &___valueLineNum_14; } inline void set_valueLineNum_14(int32_t value) { ___valueLineNum_14 = value; } inline static int32_t get_offset_of_valueLinePos_15() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68, ___valueLinePos_15)); } inline int32_t get_valueLinePos_15() const { return ___valueLinePos_15; } inline int32_t* get_address_of_valueLinePos_15() { return &___valueLinePos_15; } inline void set_valueLinePos_15(int32_t value) { ___valueLinePos_15 = value; } inline static int32_t get_offset_of_reserved_16() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68, ___reserved_16)); } inline int32_t get_reserved_16() const { return ___reserved_16; } inline int32_t* get_address_of_reserved_16() { return &___reserved_16; } inline void set_reserved_16(int32_t value) { ___reserved_16 = value; } }; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B : public SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A { public: // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaElementDecl::attdefs Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * ___attdefs_11; // System.Collections.Generic.List`1 System.Xml.Schema.SchemaElementDecl::defaultAttdefs List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * ___defaultAttdefs_12; // System.Boolean System.Xml.Schema.SchemaElementDecl::isIdDeclared bool ___isIdDeclared_13; // System.Boolean System.Xml.Schema.SchemaElementDecl::hasNonCDataAttribute bool ___hasNonCDataAttribute_14; // System.Boolean System.Xml.Schema.SchemaElementDecl::hasRequiredAttribute bool ___hasRequiredAttribute_15; // System.Boolean System.Xml.Schema.SchemaElementDecl::isNotationDeclared bool ___isNotationDeclared_16; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaElementDecl::prohibitedAttributes Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * ___prohibitedAttributes_17; // System.Xml.Schema.ContentValidator System.Xml.Schema.SchemaElementDecl::contentValidator ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ___contentValidator_18; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.SchemaElementDecl::anyAttribute XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 * ___anyAttribute_19; public: inline static int32_t get_offset_of_attdefs_11() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___attdefs_11)); } inline Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * get_attdefs_11() const { return ___attdefs_11; } inline Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 ** get_address_of_attdefs_11() { return &___attdefs_11; } inline void set_attdefs_11(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * value) { ___attdefs_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___attdefs_11), (void*)value); } inline static int32_t get_offset_of_defaultAttdefs_12() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___defaultAttdefs_12)); } inline List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * get_defaultAttdefs_12() const { return ___defaultAttdefs_12; } inline List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 ** get_address_of_defaultAttdefs_12() { return &___defaultAttdefs_12; } inline void set_defaultAttdefs_12(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * value) { ___defaultAttdefs_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultAttdefs_12), (void*)value); } inline static int32_t get_offset_of_isIdDeclared_13() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___isIdDeclared_13)); } inline bool get_isIdDeclared_13() const { return ___isIdDeclared_13; } inline bool* get_address_of_isIdDeclared_13() { return &___isIdDeclared_13; } inline void set_isIdDeclared_13(bool value) { ___isIdDeclared_13 = value; } inline static int32_t get_offset_of_hasNonCDataAttribute_14() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___hasNonCDataAttribute_14)); } inline bool get_hasNonCDataAttribute_14() const { return ___hasNonCDataAttribute_14; } inline bool* get_address_of_hasNonCDataAttribute_14() { return &___hasNonCDataAttribute_14; } inline void set_hasNonCDataAttribute_14(bool value) { ___hasNonCDataAttribute_14 = value; } inline static int32_t get_offset_of_hasRequiredAttribute_15() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___hasRequiredAttribute_15)); } inline bool get_hasRequiredAttribute_15() const { return ___hasRequiredAttribute_15; } inline bool* get_address_of_hasRequiredAttribute_15() { return &___hasRequiredAttribute_15; } inline void set_hasRequiredAttribute_15(bool value) { ___hasRequiredAttribute_15 = value; } inline static int32_t get_offset_of_isNotationDeclared_16() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___isNotationDeclared_16)); } inline bool get_isNotationDeclared_16() const { return ___isNotationDeclared_16; } inline bool* get_address_of_isNotationDeclared_16() { return &___isNotationDeclared_16; } inline void set_isNotationDeclared_16(bool value) { ___isNotationDeclared_16 = value; } inline static int32_t get_offset_of_prohibitedAttributes_17() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___prohibitedAttributes_17)); } inline Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * get_prohibitedAttributes_17() const { return ___prohibitedAttributes_17; } inline Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 ** get_address_of_prohibitedAttributes_17() { return &___prohibitedAttributes_17; } inline void set_prohibitedAttributes_17(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * value) { ___prohibitedAttributes_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___prohibitedAttributes_17), (void*)value); } inline static int32_t get_offset_of_contentValidator_18() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___contentValidator_18)); } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * get_contentValidator_18() const { return ___contentValidator_18; } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C ** get_address_of_contentValidator_18() { return &___contentValidator_18; } inline void set_contentValidator_18(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * value) { ___contentValidator_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentValidator_18), (void*)value); } inline static int32_t get_offset_of_anyAttribute_19() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B, ___anyAttribute_19)); } inline XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 * get_anyAttribute_19() const { return ___anyAttribute_19; } inline XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 ** get_address_of_anyAttribute_19() { return &___anyAttribute_19; } inline void set_anyAttribute_19(XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 * value) { ___anyAttribute_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___anyAttribute_19), (void*)value); } }; // System.Xml.Serialization.UnreferencedObjectEventHandler struct UnreferencedObjectEventHandler_t8C7AD11596BB1575262B62EE1128DABB07434988 : public MulticastDelegate_t { public: public: }; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_tE0F1666DEE5D41D7A2A1D78B8E6B07EC830ACE3C : public MulticastDelegate_t { public: public: }; // System.Xml.Schema.XmlAnyConverter struct XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB : public XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 { public: public: }; // System.Xml.XmlException struct XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.Xml.XmlException::res String_t* ___res_17; // System.String[] System.Xml.XmlException::args StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___args_18; // System.Int32 System.Xml.XmlException::lineNumber int32_t ___lineNumber_19; // System.Int32 System.Xml.XmlException::linePosition int32_t ___linePosition_20; // System.String System.Xml.XmlException::sourceUri String_t* ___sourceUri_21; // System.String System.Xml.XmlException::message String_t* ___message_22; public: inline static int32_t get_offset_of_res_17() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___res_17)); } inline String_t* get_res_17() const { return ___res_17; } inline String_t** get_address_of_res_17() { return &___res_17; } inline void set_res_17(String_t* value) { ___res_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___res_17), (void*)value); } inline static int32_t get_offset_of_args_18() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___args_18)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_args_18() const { return ___args_18; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_args_18() { return &___args_18; } inline void set_args_18(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___args_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___args_18), (void*)value); } inline static int32_t get_offset_of_lineNumber_19() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___lineNumber_19)); } inline int32_t get_lineNumber_19() const { return ___lineNumber_19; } inline int32_t* get_address_of_lineNumber_19() { return &___lineNumber_19; } inline void set_lineNumber_19(int32_t value) { ___lineNumber_19 = value; } inline static int32_t get_offset_of_linePosition_20() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___linePosition_20)); } inline int32_t get_linePosition_20() const { return ___linePosition_20; } inline int32_t* get_address_of_linePosition_20() { return &___linePosition_20; } inline void set_linePosition_20(int32_t value) { ___linePosition_20 = value; } inline static int32_t get_offset_of_sourceUri_21() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___sourceUri_21)); } inline String_t* get_sourceUri_21() const { return ___sourceUri_21; } inline String_t** get_address_of_sourceUri_21() { return &___sourceUri_21; } inline void set_sourceUri_21(String_t* value) { ___sourceUri_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceUri_21), (void*)value); } inline static int32_t get_offset_of_message_22() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___message_22)); } inline String_t* get_message_22() const { return ___message_22; } inline String_t** get_address_of_message_22() { return &___message_22; } inline void set_message_22(String_t* value) { ___message_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___message_22), (void*)value); } }; // System.Xml.Schema.XmlListConverter struct XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D : public XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 { public: // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlListConverter::atomicConverter XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___atomicConverter_32; public: inline static int32_t get_offset_of_atomicConverter_32() { return static_cast(offsetof(XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D, ___atomicConverter_32)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_atomicConverter_32() const { return ___atomicConverter_32; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_atomicConverter_32() { return &___atomicConverter_32; } inline void set_atomicConverter_32(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___atomicConverter_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___atomicConverter_32), (void*)value); } }; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.Xml.Schema.XmlSchemaException::res String_t* ___res_17; // System.String[] System.Xml.Schema.XmlSchemaException::args StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___args_18; // System.String System.Xml.Schema.XmlSchemaException::sourceUri String_t* ___sourceUri_19; // System.Int32 System.Xml.Schema.XmlSchemaException::lineNumber int32_t ___lineNumber_20; // System.Int32 System.Xml.Schema.XmlSchemaException::linePosition int32_t ___linePosition_21; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaException::sourceSchemaObject XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * ___sourceSchemaObject_22; // System.String System.Xml.Schema.XmlSchemaException::message String_t* ___message_23; public: inline static int32_t get_offset_of_res_17() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___res_17)); } inline String_t* get_res_17() const { return ___res_17; } inline String_t** get_address_of_res_17() { return &___res_17; } inline void set_res_17(String_t* value) { ___res_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___res_17), (void*)value); } inline static int32_t get_offset_of_args_18() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___args_18)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_args_18() const { return ___args_18; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_args_18() { return &___args_18; } inline void set_args_18(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___args_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___args_18), (void*)value); } inline static int32_t get_offset_of_sourceUri_19() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___sourceUri_19)); } inline String_t* get_sourceUri_19() const { return ___sourceUri_19; } inline String_t** get_address_of_sourceUri_19() { return &___sourceUri_19; } inline void set_sourceUri_19(String_t* value) { ___sourceUri_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceUri_19), (void*)value); } inline static int32_t get_offset_of_lineNumber_20() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___lineNumber_20)); } inline int32_t get_lineNumber_20() const { return ___lineNumber_20; } inline int32_t* get_address_of_lineNumber_20() { return &___lineNumber_20; } inline void set_lineNumber_20(int32_t value) { ___lineNumber_20 = value; } inline static int32_t get_offset_of_linePosition_21() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___linePosition_21)); } inline int32_t get_linePosition_21() const { return ___linePosition_21; } inline int32_t* get_address_of_linePosition_21() { return &___linePosition_21; } inline void set_linePosition_21(int32_t value) { ___linePosition_21 = value; } inline static int32_t get_offset_of_sourceSchemaObject_22() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___sourceSchemaObject_22)); } inline XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * get_sourceSchemaObject_22() const { return ___sourceSchemaObject_22; } inline XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 ** get_address_of_sourceSchemaObject_22() { return &___sourceSchemaObject_22; } inline void set_sourceSchemaObject_22(XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * value) { ___sourceSchemaObject_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceSchemaObject_22), (void*)value); } inline static int32_t get_offset_of_message_23() { return static_cast(offsetof(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA, ___message_23)); } inline String_t* get_message_23() const { return ___message_23; } inline String_t** get_address_of_message_23() { return &___message_23; } inline void set_message_23(String_t* value) { ___message_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___message_23), (void*)value); } }; // System.Xml.Schema.XmlSchemaPatternFacet struct XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 : public XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F { public: public: }; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C : public XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA { public: // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::content XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 * ___content_7; public: inline static int32_t get_offset_of_content_7() { return static_cast(offsetof(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C, ___content_7)); } inline XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 * get_content_7() const { return ___content_7; } inline XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 ** get_address_of_content_7() { return &___content_7; } inline void set_content_7(XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 * value) { ___content_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___content_7), (void*)value); } }; // System.Xml.Serialization.XmlTypeMapping struct XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 : public XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 { public: // System.String System.Xml.Serialization.XmlTypeMapping::xmlType String_t* ___xmlType_6; // System.String System.Xml.Serialization.XmlTypeMapping::xmlTypeNamespace String_t* ___xmlTypeNamespace_7; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::type TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___type_8; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::baseMap XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___baseMap_9; // System.Boolean System.Xml.Serialization.XmlTypeMapping::multiReferenceType bool ___multiReferenceType_10; // System.Boolean System.Xml.Serialization.XmlTypeMapping::includeInSchema bool ___includeInSchema_11; // System.Boolean System.Xml.Serialization.XmlTypeMapping::isNullable bool ___isNullable_12; // System.Boolean System.Xml.Serialization.XmlTypeMapping::isAny bool ___isAny_13; // System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::_derivedTypes ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____derivedTypes_14; public: inline static int32_t get_offset_of_xmlType_6() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___xmlType_6)); } inline String_t* get_xmlType_6() const { return ___xmlType_6; } inline String_t** get_address_of_xmlType_6() { return &___xmlType_6; } inline void set_xmlType_6(String_t* value) { ___xmlType_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlType_6), (void*)value); } inline static int32_t get_offset_of_xmlTypeNamespace_7() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___xmlTypeNamespace_7)); } inline String_t* get_xmlTypeNamespace_7() const { return ___xmlTypeNamespace_7; } inline String_t** get_address_of_xmlTypeNamespace_7() { return &___xmlTypeNamespace_7; } inline void set_xmlTypeNamespace_7(String_t* value) { ___xmlTypeNamespace_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlTypeNamespace_7), (void*)value); } inline static int32_t get_offset_of_type_8() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___type_8)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get_type_8() const { return ___type_8; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of_type_8() { return &___type_8; } inline void set_type_8(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ___type_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_8), (void*)value); } inline static int32_t get_offset_of_baseMap_9() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___baseMap_9)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get_baseMap_9() const { return ___baseMap_9; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of_baseMap_9() { return &___baseMap_9; } inline void set_baseMap_9(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ___baseMap_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseMap_9), (void*)value); } inline static int32_t get_offset_of_multiReferenceType_10() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___multiReferenceType_10)); } inline bool get_multiReferenceType_10() const { return ___multiReferenceType_10; } inline bool* get_address_of_multiReferenceType_10() { return &___multiReferenceType_10; } inline void set_multiReferenceType_10(bool value) { ___multiReferenceType_10 = value; } inline static int32_t get_offset_of_includeInSchema_11() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___includeInSchema_11)); } inline bool get_includeInSchema_11() const { return ___includeInSchema_11; } inline bool* get_address_of_includeInSchema_11() { return &___includeInSchema_11; } inline void set_includeInSchema_11(bool value) { ___includeInSchema_11 = value; } inline static int32_t get_offset_of_isNullable_12() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___isNullable_12)); } inline bool get_isNullable_12() const { return ___isNullable_12; } inline bool* get_address_of_isNullable_12() { return &___isNullable_12; } inline void set_isNullable_12(bool value) { ___isNullable_12 = value; } inline static int32_t get_offset_of_isAny_13() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___isAny_13)); } inline bool get_isAny_13() const { return ___isAny_13; } inline bool* get_address_of_isAny_13() { return &___isAny_13; } inline void set_isAny_13(bool value) { ___isAny_13 = value; } inline static int32_t get_offset_of__derivedTypes_14() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ____derivedTypes_14)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__derivedTypes_14() const { return ____derivedTypes_14; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__derivedTypes_14() { return &____derivedTypes_14; } inline void set__derivedTypes_14(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____derivedTypes_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____derivedTypes_14), (void*)value); } }; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 : public MulticastDelegate_t { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.OverflowException struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 : public ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 { public: public: }; // System.Xml.Schema.XmlUntypedConverter struct XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF : public XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D { public: // System.Boolean System.Xml.Schema.XmlUntypedConverter::allowListToList bool ___allowListToList_33; public: inline static int32_t get_offset_of_allowListToList_33() { return static_cast(offsetof(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF, ___allowListToList_33)); } inline bool get_allowListToList_33() const { return ___allowListToList_33; } inline bool* get_address_of_allowListToList_33() { return &___allowListToList_33; } inline void set_allowListToList_33(bool value) { ___allowListToList_33 = value; } }; // System.Object // System.Object // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.List`1 struct List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75_StaticFields, ____emptyArray_5)); } inline IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0* get__emptyArray_5() const { return ____emptyArray_5; } inline IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(IDtdDefaultAttributeInfoU5BU5D_tA0758079FA8B26D55E0809378AB600A695ACFEC0* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.Generic.Dictionary`2/ValueCollection struct Il2CppArrayBounds; // System.Array struct Il2CppArrayBounds; // System.Array // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields { public: // System.Object[] System.Collections.ArrayList::emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___emptyArray_4; public: inline static int32_t get_offset_of_emptyArray_4() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields, ___emptyArray_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_emptyArray_4() const { return ___emptyArray_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_emptyArray_4() { return &___emptyArray_4; } inline void set_emptyArray_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___emptyArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value); } }; // System.Collections.ArrayList // System.Attribute // System.Attribute // System.Xml.Schema.BaseValidator // System.Xml.Schema.BaseValidator // System.Reflection.Binder // System.Reflection.Binder // System.BitConverter struct BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields { public: // System.Boolean System.BitConverter::IsLittleEndian bool ___IsLittleEndian_0; public: inline static int32_t get_offset_of_IsLittleEndian_0() { return static_cast(offsetof(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields, ___IsLittleEndian_0)); } inline bool get_IsLittleEndian_0() const { return ___IsLittleEndian_0; } inline bool* get_address_of_IsLittleEndian_0() { return &___IsLittleEndian_0; } inline void set_IsLittleEndian_0(bool value) { ___IsLittleEndian_0 = value; } }; // System.BitConverter // System.Xml.Schema.BitSet // System.Xml.Schema.BitSet // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___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_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_number Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // System.Globalization.CultureInfo // System.Text.Decoder // System.Text.Decoder // System.Xml.EmptyEnumerator // System.Xml.EmptyEnumerator // System.Text.Encoder // System.Text.Encoder // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.Encoding // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast(offsetof(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields, ___Empty_0)); } inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * get_Empty_0() const { return ___Empty_0; } inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value); } }; // System.EventArgs // System.Xml.Schema.FacetsChecker // System.Xml.Schema.FacetsChecker // System.Xml.IncrementalReadDecoder // System.Xml.IncrementalReadDecoder // System.Reflection.MemberInfo // System.Reflection.MemberInfo // System.Xml.Serialization.ObjectMap // System.Xml.Serialization.ObjectMap // System.Xml.OpenedHost // System.Xml.OpenedHost // System.Xml.Schema.Positions // System.Xml.Schema.Positions // System.Collections.Queue // System.Collections.Queue // System.Xml.Ref // System.Xml.Ref // System.Xml.Serialization.ReflectionHelper struct ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_StaticFields { public: // System.Reflection.ParameterModifier[] System.Xml.Serialization.ReflectionHelper::empty_modifiers ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___empty_modifiers_2; public: inline static int32_t get_offset_of_empty_modifiers_2() { return static_cast(offsetof(ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_StaticFields, ___empty_modifiers_2)); } inline ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* get_empty_modifiers_2() const { return ___empty_modifiers_2; } inline ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B** get_address_of_empty_modifiers_2() { return &___empty_modifiers_2; } inline void set_empty_modifiers_2(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* value) { ___empty_modifiers_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___empty_modifiers_2), (void*)value); } }; // System.Xml.Serialization.ReflectionHelper // System.Xml.Res // System.Xml.Res // SR // SR // System.Xml.Schema.SchemaEntity // System.Xml.Schema.SchemaEntity // System.Xml.Schema.SchemaNotation // System.Xml.Schema.SchemaNotation // System.Xml.SecureStringHasher struct SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields { public: // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::hashCodeDelegate HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * ___hashCodeDelegate_0; public: inline static int32_t get_offset_of_hashCodeDelegate_0() { return static_cast(offsetof(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields, ___hashCodeDelegate_0)); } inline HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * get_hashCodeDelegate_0() const { return ___hashCodeDelegate_0; } inline HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 ** get_address_of_hashCodeDelegate_0() { return &___hashCodeDelegate_0; } inline void set_hashCodeDelegate_0(HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * value) { ___hashCodeDelegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashCodeDelegate_0), (void*)value); } }; // System.Xml.SecureStringHasher // System.Collections.Stack // System.Collections.Stack // System.String struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.String // System.Text.StringBuilder // System.Text.StringBuilder // System.Xml.Schema.SymbolsDictionary // System.Xml.Schema.SymbolsDictionary // System.Xml.Schema.SyntaxTreeNode // System.Xml.Schema.SyntaxTreeNode // System.Xml.Serialization.TypeMember // System.Xml.Serialization.TypeMember // System.Xml.Serialization.TypeTranslator struct TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields { public: // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::nameCache Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___nameCache_0; // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::primitiveTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___primitiveTypes_1; // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::primitiveArrayTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___primitiveArrayTypes_2; // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::nullableTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___nullableTypes_3; public: inline static int32_t get_offset_of_nameCache_0() { return static_cast(offsetof(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields, ___nameCache_0)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_nameCache_0() const { return ___nameCache_0; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_nameCache_0() { return &___nameCache_0; } inline void set_nameCache_0(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___nameCache_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameCache_0), (void*)value); } inline static int32_t get_offset_of_primitiveTypes_1() { return static_cast(offsetof(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields, ___primitiveTypes_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_primitiveTypes_1() const { return ___primitiveTypes_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_primitiveTypes_1() { return &___primitiveTypes_1; } inline void set_primitiveTypes_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___primitiveTypes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___primitiveTypes_1), (void*)value); } inline static int32_t get_offset_of_primitiveArrayTypes_2() { return static_cast(offsetof(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields, ___primitiveArrayTypes_2)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_primitiveArrayTypes_2() const { return ___primitiveArrayTypes_2; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_primitiveArrayTypes_2() { return &___primitiveArrayTypes_2; } inline void set_primitiveArrayTypes_2(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___primitiveArrayTypes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___primitiveArrayTypes_2), (void*)value); } inline static int32_t get_offset_of_nullableTypes_3() { return static_cast(offsetof(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields, ___nullableTypes_3)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_nullableTypes_3() const { return ___nullableTypes_3; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_nullableTypes_3() { return &___nullableTypes_3; } inline void set_nullableTypes_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___nullableTypes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___nullableTypes_3), (void*)value); } }; // System.Xml.Serialization.TypeTranslator // System.ValueType // System.ValueType // System.Xml.XPath.XPathDocument // System.Xml.XPath.XPathDocument // System.Xml.XPath.XPathItem // System.Xml.XPath.XPathItem // System.Xml.XPath.XPathNavigatorKeyComparer // System.Xml.XPath.XPathNavigatorKeyComparer // MS.Internal.Xml.Cache.XPathNodeHelper // MS.Internal.Xml.Cache.XPathNodeHelper // MS.Internal.Xml.Cache.XPathNodeInfoAtom // MS.Internal.Xml.Cache.XPathNodeInfoAtom // MS.Internal.Xml.Cache.XPathNodePageInfo // MS.Internal.Xml.Cache.XPathNodePageInfo // System.Xml.XmlNameTable // System.Xml.XmlNameTable // System.Xml.XmlNamespaceManager // System.Xml.XmlNamespaceManager // System.Xml.XmlQualifiedName struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields { public: // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate System.Xml.XmlQualifiedName::hashCodeDelegate HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * ___hashCodeDelegate_0; // System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___Empty_4; public: inline static int32_t get_offset_of_hashCodeDelegate_0() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields, ___hashCodeDelegate_0)); } inline HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * get_hashCodeDelegate_0() const { return ___hashCodeDelegate_0; } inline HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E ** get_address_of_hashCodeDelegate_0() { return &___hashCodeDelegate_0; } inline void set_hashCodeDelegate_0(HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * value) { ___hashCodeDelegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashCodeDelegate_0), (void*)value); } inline static int32_t get_offset_of_Empty_4() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields, ___Empty_4)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_Empty_4() const { return ___Empty_4; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_Empty_4() { return &___Empty_4; } inline void set_Empty_4(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___Empty_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_4), (void*)value); } }; // System.Xml.XmlQualifiedName // System.Xml.Schema.XmlSchemaDatatype // System.Xml.Schema.XmlSchemaDatatype // System.Xml.Schema.XmlSchemaObject // System.Xml.Schema.XmlSchemaObject // System.Xml.Schema.XmlValueConverter // System.Xml.Schema.XmlValueConverter // System.Xml.Serialization.EnumMap/EnumMapMember // System.Xml.Serialization.EnumMap/EnumMapMember // System.Xml.NameTable/Entry // System.Xml.NameTable/Entry // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Boolean // System.Byte // System.Byte // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Char // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MaxValue_32 = value; } }; // System.DateTime // System.Decimal struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___NearPositiveZero_13 = value; } }; // System.Decimal // System.Collections.DictionaryEntry // System.Collections.DictionaryEntry // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Double // System.Xml.Schema.DtdValidator struct DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3_StaticFields { public: // System.Xml.Schema.DtdValidator/NamespaceManager System.Xml.Schema.DtdValidator::namespaceManager NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * ___namespaceManager_0; public: inline static int32_t get_offset_of_namespaceManager_0() { return static_cast(offsetof(DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3_StaticFields, ___namespaceManager_0)); } inline NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * get_namespaceManager_0() const { return ___namespaceManager_0; } inline NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B ** get_address_of_namespaceManager_0() { return &___namespaceManager_0; } inline void set_namespaceManager_0(NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * value) { ___namespaceManager_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceManager_0), (void*)value); } }; // System.Xml.Schema.DtdValidator // System.Xml.Schema.DurationFacetsChecker // System.Xml.Schema.DurationFacetsChecker // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // System.Enum // System.Xml.Serialization.EnumMap // System.Xml.Serialization.EnumMap // System.Xml.IncrementalReadDummyDecoder // System.Xml.IncrementalReadDummyDecoder // System.Int16 // System.Int16 // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.IntPtr // System.Xml.Schema.InteriorNode // System.Xml.Schema.InteriorNode // System.Xml.Schema.LeafNode // System.Xml.Schema.LeafNode // System.Xml.LineInfo // System.Xml.LineInfo // System.Xml.Schema.ListFacetsChecker // System.Xml.Schema.ListFacetsChecker // System.Xml.Serialization.ListMap // System.Xml.Serialization.ListMap // System.Reflection.MethodBase // System.Reflection.MethodBase // System.Xml.Schema.MiscFacetsChecker // System.Xml.Schema.MiscFacetsChecker // System.MonoTODOAttribute // System.MonoTODOAttribute // System.Xml.NameTable // System.Xml.NameTable // System.Xml.Schema.NamespaceListNode // System.Xml.Schema.NamespaceListNode // System.Xml.Schema.Numeric2FacetsChecker // System.Xml.Schema.Numeric2FacetsChecker // System.Reflection.ParameterModifier // System.Reflection.ParameterModifier // System.Xml.Schema.Position // System.Xml.Schema.Position // System.Reflection.PropertyInfo // System.Reflection.PropertyInfo // System.Xml.Schema.QNameFacetsChecker // System.Xml.Schema.QNameFacetsChecker // System.Xml.SafeAsciiDecoder // System.Xml.SafeAsciiDecoder // System.Single // System.Single // System.Xml.Schema.StringFacetsChecker struct StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_StaticFields { public: // System.Text.RegularExpressions.Regex System.Xml.Schema.StringFacetsChecker::languagePattern Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___languagePattern_0; public: inline static int32_t get_offset_of_languagePattern_0() { return static_cast(offsetof(StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_StaticFields, ___languagePattern_0)); } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_languagePattern_0() const { return ___languagePattern_0; } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_languagePattern_0() { return &___languagePattern_0; } inline void set_languagePattern_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value) { ___languagePattern_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___languagePattern_0), (void*)value); } }; // System.Xml.Schema.StringFacetsChecker // System.UInt16 // System.UInt16 // System.UInt32 // System.UInt32 // System.Xml.UTF16Decoder // System.Xml.UTF16Decoder // System.Xml.Ucs4Decoder // System.Xml.Ucs4Decoder // System.Xml.Ucs4Encoding // System.Xml.Ucs4Encoding // System.Xml.Schema.UnionFacetsChecker // System.Xml.Schema.UnionFacetsChecker // System.Xml.Serialization.UnreferencedObjectEventArgs // System.Xml.Serialization.UnreferencedObjectEventArgs // System.Void // System.Void // System.Xml.XPath.XPathNavigator struct XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields { public: // System.Xml.XPath.XPathNavigatorKeyComparer System.Xml.XPath.XPathNavigator::comparer XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * ___comparer_0; // System.Char[] System.Xml.XPath.XPathNavigator::NodeTypeLetter CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___NodeTypeLetter_1; // System.Char[] System.Xml.XPath.XPathNavigator::UniqueIdTbl CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___UniqueIdTbl_2; // System.Int32[] System.Xml.XPath.XPathNavigator::ContentKindMasks Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ContentKindMasks_3; public: inline static int32_t get_offset_of_comparer_0() { return static_cast(offsetof(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields, ___comparer_0)); } inline XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * get_comparer_0() const { return ___comparer_0; } inline XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A ** get_address_of_comparer_0() { return &___comparer_0; } inline void set_comparer_0(XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * value) { ___comparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_0), (void*)value); } inline static int32_t get_offset_of_NodeTypeLetter_1() { return static_cast(offsetof(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields, ___NodeTypeLetter_1)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_NodeTypeLetter_1() const { return ___NodeTypeLetter_1; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_NodeTypeLetter_1() { return &___NodeTypeLetter_1; } inline void set_NodeTypeLetter_1(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___NodeTypeLetter_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___NodeTypeLetter_1), (void*)value); } inline static int32_t get_offset_of_UniqueIdTbl_2() { return static_cast(offsetof(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields, ___UniqueIdTbl_2)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_UniqueIdTbl_2() const { return ___UniqueIdTbl_2; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_UniqueIdTbl_2() { return &___UniqueIdTbl_2; } inline void set_UniqueIdTbl_2(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___UniqueIdTbl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UniqueIdTbl_2), (void*)value); } inline static int32_t get_offset_of_ContentKindMasks_3() { return static_cast(offsetof(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields, ___ContentKindMasks_3)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ContentKindMasks_3() const { return ___ContentKindMasks_3; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ContentKindMasks_3() { return &___ContentKindMasks_3; } inline void set_ContentKindMasks_3(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ContentKindMasks_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___ContentKindMasks_3), (void*)value); } }; // System.Xml.XPath.XPathNavigator // MS.Internal.Xml.Cache.XPathNode // MS.Internal.Xml.Cache.XPathNode // MS.Internal.Xml.Cache.XPathNodeRef // MS.Internal.Xml.Cache.XPathNodeRef // System.Xml.Serialization.XmlAnyAttributeAttribute // System.Xml.Serialization.XmlAnyAttributeAttribute // System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_StaticFields { public: // System.Object System.Xml.XmlCharType::s_Lock RuntimeObject * ___s_Lock_0; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlCharType::s_CharProperties ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_CharProperties_1; public: inline static int32_t get_offset_of_s_Lock_0() { return static_cast(offsetof(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_StaticFields, ___s_Lock_0)); } inline RuntimeObject * get_s_Lock_0() const { return ___s_Lock_0; } inline RuntimeObject ** get_address_of_s_Lock_0() { return &___s_Lock_0; } inline void set_s_Lock_0(RuntimeObject * value) { ___s_Lock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Lock_0), (void*)value); } inline static int32_t get_offset_of_s_CharProperties_1() { return static_cast(offsetof(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_StaticFields, ___s_CharProperties_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_CharProperties_1() const { return ___s_CharProperties_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_CharProperties_1() { return &___s_CharProperties_1; } inline void set_s_CharProperties_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___s_CharProperties_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_CharProperties_1), (void*)value); } }; // System.Xml.XmlCharType // System.Xml.Schema.XmlSchemaAnnotated // System.Xml.Schema.XmlSchemaAnnotated // System.Xml.Serialization.XmlTypeConvertorAttribute // System.Xml.Serialization.XmlTypeConvertorAttribute // System.Xml.Serialization.XmlTypeMapElementInfoList // System.Xml.Serialization.XmlTypeMapElementInfoList // /__StaticArrayInitTypeSize=20 // /__StaticArrayInitTypeSize=20 // /__StaticArrayInitTypeSize=28 // /__StaticArrayInitTypeSize=28 // /__StaticArrayInitTypeSize=32 // /__StaticArrayInitTypeSize=32 // /__StaticArrayInitTypeSize=40 // /__StaticArrayInitTypeSize=40 // /__StaticArrayInitTypeSize=416 // /__StaticArrayInitTypeSize=416 // /__StaticArrayInitTypeSize=6 // /__StaticArrayInitTypeSize=6 // /__StaticArrayInitTypeSize=64 // /__StaticArrayInitTypeSize=64 // System.Xml.Schema.DtdValidator/NamespaceManager // System.Xml.Schema.DtdValidator/NamespaceManager // System.Xml.Schema.SequenceNode/SequenceConstructPosContext // System.Xml.Schema.SequenceNode/SequenceConstructPosContext // struct U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields { public: // /__StaticArrayInitTypeSize=6 ::5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98 __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; // /__StaticArrayInitTypeSize=416 ::6A0D50D692745A6663128CD315B71079584F3E59 __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 ___6A0D50D692745A6663128CD315B71079584F3E59_1; // /__StaticArrayInitTypeSize=32 ::7A32E1A19C182315E4263A65A72066492550D8CD __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 ___7A32E1A19C182315E4263A65A72066492550D8CD_2; // /__StaticArrayInitTypeSize=28 ::9E31F24F64765FCAA589F589324D17C9FCF6A06D __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3; // /__StaticArrayInitTypeSize=416 ::B368804F0C6DAB083B253A6B106D0783D5C32E90 __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4; // /__StaticArrayInitTypeSize=40 ::B9F0004E3873FDDCABFDA6174EA18F0859B637B4 __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5; // /__StaticArrayInitTypeSize=20 ::BAD037B714E1CD1052149B51238A3D4351DD10B5 __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6; // System.Int64 ::EBC658B067B5C785A3F0BB67D73755F6FEE7F70C int64_t ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7; // /__StaticArrayInitTypeSize=64 ::EE3413A2C088FF9432054D6E60A7CB6A498D25F0 __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8; public: inline static int32_t get_offset_of_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0)); } inline __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB get_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() const { return ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; } inline __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB * get_address_of_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() { return &___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; } inline void set_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0(__StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB value) { ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0 = value; } inline static int32_t get_offset_of_U36A0D50D692745A6663128CD315B71079584F3E59_1() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___6A0D50D692745A6663128CD315B71079584F3E59_1)); } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 get_U36A0D50D692745A6663128CD315B71079584F3E59_1() const { return ___6A0D50D692745A6663128CD315B71079584F3E59_1; } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 * get_address_of_U36A0D50D692745A6663128CD315B71079584F3E59_1() { return &___6A0D50D692745A6663128CD315B71079584F3E59_1; } inline void set_U36A0D50D692745A6663128CD315B71079584F3E59_1(__StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 value) { ___6A0D50D692745A6663128CD315B71079584F3E59_1 = value; } inline static int32_t get_offset_of_U37A32E1A19C182315E4263A65A72066492550D8CD_2() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___7A32E1A19C182315E4263A65A72066492550D8CD_2)); } inline __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 get_U37A32E1A19C182315E4263A65A72066492550D8CD_2() const { return ___7A32E1A19C182315E4263A65A72066492550D8CD_2; } inline __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 * get_address_of_U37A32E1A19C182315E4263A65A72066492550D8CD_2() { return &___7A32E1A19C182315E4263A65A72066492550D8CD_2; } inline void set_U37A32E1A19C182315E4263A65A72066492550D8CD_2(__StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 value) { ___7A32E1A19C182315E4263A65A72066492550D8CD_2 = value; } inline static int32_t get_offset_of_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3)); } inline __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E get_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3() const { return ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3; } inline __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E * get_address_of_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3() { return &___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3; } inline void set_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3(__StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E value) { ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3 = value; } inline static int32_t get_offset_of_B368804F0C6DAB083B253A6B106D0783D5C32E90_4() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4)); } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 get_B368804F0C6DAB083B253A6B106D0783D5C32E90_4() const { return ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4; } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 * get_address_of_B368804F0C6DAB083B253A6B106D0783D5C32E90_4() { return &___B368804F0C6DAB083B253A6B106D0783D5C32E90_4; } inline void set_B368804F0C6DAB083B253A6B106D0783D5C32E90_4(__StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 value) { ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4 = value; } inline static int32_t get_offset_of_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5)); } inline __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 get_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5() const { return ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5; } inline __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 * get_address_of_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5() { return &___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5; } inline void set_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5(__StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 value) { ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5 = value; } inline static int32_t get_offset_of_BAD037B714E1CD1052149B51238A3D4351DD10B5_6() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6)); } inline __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 get_BAD037B714E1CD1052149B51238A3D4351DD10B5_6() const { return ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6; } inline __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 * get_address_of_BAD037B714E1CD1052149B51238A3D4351DD10B5_6() { return &___BAD037B714E1CD1052149B51238A3D4351DD10B5_6; } inline void set_BAD037B714E1CD1052149B51238A3D4351DD10B5_6(__StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 value) { ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6 = value; } inline static int32_t get_offset_of_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7)); } inline int64_t get_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7() const { return ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7; } inline int64_t* get_address_of_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7() { return &___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7; } inline void set_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7(int64_t value) { ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7 = value; } inline static int32_t get_offset_of_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8)); } inline __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD get_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8() const { return ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8; } inline __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD * get_address_of_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8() { return &___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8; } inline void set_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8(__StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD value) { ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8 = value; } }; // // System.Reflection.BindingFlags // System.Reflection.BindingFlags // System.Xml.Schema.ChoiceNode // System.Xml.Schema.ChoiceNode // System.Reflection.ConstructorInfo struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields { public: // System.String System.Reflection.ConstructorInfo::ConstructorName String_t* ___ConstructorName_0; // System.String System.Reflection.ConstructorInfo::TypeConstructorName String_t* ___TypeConstructorName_1; public: inline static int32_t get_offset_of_ConstructorName_0() { return static_cast(offsetof(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields, ___ConstructorName_0)); } inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; } inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; } inline void set_ConstructorName_0(String_t* value) { ___ConstructorName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value); } inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast(offsetof(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields, ___TypeConstructorName_1)); } inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; } inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; } inline void set_TypeConstructorName_1(String_t* value) { ___TypeConstructorName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value); } }; // System.Reflection.ConstructorInfo // System.DateTimeOffset struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MaxValue_1; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MinValue_0)); } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MinValue_0() const { return ___MinValue_0; } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MaxValue_1)); } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MaxValue_1() const { return ___MaxValue_1; } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value) { ___MaxValue_1 = value; } }; // System.DateTimeOffset // System.Delegate // System.Delegate // System.Xml.DtdProcessing // System.Xml.DtdProcessing // System.Xml.EntityHandling // System.Xml.EntityHandling // System.Exception struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // System.Exception // System.Xml.ExceptionType // System.Xml.ExceptionType // System.Xml.Schema.FacetType // System.Xml.Schema.FacetType // System.Xml.Formatting // System.Xml.Formatting // System.Collections.Hashtable // System.Collections.Hashtable // System.Xml.Schema.LeafRangeNode // System.Xml.Schema.LeafRangeNode // System.Reflection.MethodInfo // System.Reflection.MethodInfo // System.Xml.Schema.Numeric10FacetsChecker struct Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5_StaticFields { public: // System.Char[] System.Xml.Schema.Numeric10FacetsChecker::signs CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___signs_0; public: inline static int32_t get_offset_of_signs_0() { return static_cast(offsetof(Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5_StaticFields, ___signs_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_signs_0() const { return ___signs_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_signs_0() { return &___signs_0; } inline void set_signs_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___signs_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___signs_0), (void*)value); } }; // System.Xml.Schema.Numeric10FacetsChecker // System.Reflection.ParameterAttributes // System.Reflection.ParameterAttributes // System.Xml.Schema.PlusNode // System.Xml.Schema.PlusNode // System.Xml.Schema.QmarkNode // System.Xml.Schema.QmarkNode // System.Xml.ReadState // System.Xml.ReadState // System.Text.RegularExpressions.RegexOptions // System.Text.RegularExpressions.RegexOptions // System.Xml.Schema.RestrictionFlags // System.Xml.Schema.RestrictionFlags // System.RuntimeFieldHandle // System.RuntimeFieldHandle // System.RuntimeTypeHandle // System.RuntimeTypeHandle // System.Xml.Schema.SchemaType // System.Xml.Schema.SchemaType // System.Xml.Serialization.SchemaTypes // System.Xml.Serialization.SchemaTypes // System.Xml.Schema.SequenceNode // System.Xml.Schema.SequenceNode // System.Xml.Serialization.SerializationFormat // System.Xml.Serialization.SerializationFormat // System.Xml.Schema.StarNode // System.Xml.Schema.StarNode // System.StringComparison // System.StringComparison // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.TimeSpan // System.TypeCode // System.TypeCode // System.Xml.Ucs4Decoder1234 // System.Xml.Ucs4Decoder1234 // System.Xml.Ucs4Decoder2143 // System.Xml.Ucs4Decoder2143 // System.Xml.Ucs4Decoder3412 // System.Xml.Ucs4Decoder3412 // System.Xml.Ucs4Decoder4321 // System.Xml.Ucs4Decoder4321 // System.Xml.Ucs4Encoding1234 // System.Xml.Ucs4Encoding1234 // System.Xml.Ucs4Encoding2143 // System.Xml.Ucs4Encoding2143 // System.Xml.Ucs4Encoding3412 // System.Xml.Ucs4Encoding3412 // System.Xml.Ucs4Encoding4321 // System.Xml.Ucs4Encoding4321 // System.UriIdnScope // System.UriIdnScope // System.Xml.ValidateNames struct ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields { public: // System.Xml.XmlCharType System.Xml.ValidateNames::xmlCharType XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA ___xmlCharType_0; public: inline static int32_t get_offset_of_xmlCharType_0() { return static_cast(offsetof(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields, ___xmlCharType_0)); } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA get_xmlCharType_0() const { return ___xmlCharType_0; } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * get_address_of_xmlCharType_0() { return &___xmlCharType_0; } inline void set_xmlCharType_0(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA value) { ___xmlCharType_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___xmlCharType_0))->___charProperties_2), (void*)NULL); } }; // System.Xml.ValidateNames // System.Xml.ValidationType // System.Xml.ValidationType // System.Xml.WhitespaceHandling // System.Xml.WhitespaceHandling // System.Xml.WriteState // System.Xml.WriteState // MS.Internal.Xml.Cache.XPathDocumentNavigator // MS.Internal.Xml.Cache.XPathDocumentNavigator // System.Xml.XPath.XPathNamespaceScope // System.Xml.XPath.XPathNamespaceScope // System.Xml.XPath.XPathNodeType // System.Xml.XPath.XPathNodeType // System.Xml.Schema.XmlSchemaContentProcessing // System.Xml.Schema.XmlSchemaContentProcessing // System.Xml.Schema.XmlSchemaContentType // System.Xml.Schema.XmlSchemaContentType // System.Xml.Schema.XmlSchemaDatatypeVariety // System.Xml.Schema.XmlSchemaDatatypeVariety // System.Xml.Schema.XmlSchemaDerivationMethod // System.Xml.Schema.XmlSchemaDerivationMethod // System.Xml.Schema.XmlSchemaForm // System.Xml.Schema.XmlSchemaForm // System.Xml.Schema.XmlSchemaValidity // System.Xml.Schema.XmlSchemaValidity // System.Xml.Schema.XmlSchemaWhiteSpace // System.Xml.Schema.XmlSchemaWhiteSpace // System.Xml.Schema.XmlSeverityType // System.Xml.Schema.XmlSeverityType // System.Xml.XmlTokenizedType // System.Xml.XmlTokenizedType // System.Xml.Schema.XmlTypeCode // System.Xml.Schema.XmlTypeCode // System.Xml.Schema.NamespaceList/ListType // System.Xml.Schema.NamespaceList/ListType // System.Xml.Schema.SchemaAttDef/Reserve // System.Xml.Schema.SchemaAttDef/Reserve // System.Xml.Schema.SchemaDeclBase/Use // System.Xml.Schema.SchemaDeclBase/Use // System.Uri/Flags // System.Uri/Flags // System.Xml.Schema.XmlAtomicValue/Union // System.Xml.Schema.XmlAtomicValue/Union // System.Xml.Schema.ContentValidator struct ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields { public: // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::Empty ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ___Empty_3; // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::TextOnly ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ___TextOnly_4; // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::Mixed ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ___Mixed_5; // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::Any ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ___Any_6; public: inline static int32_t get_offset_of_Empty_3() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields, ___Empty_3)); } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * get_Empty_3() const { return ___Empty_3; } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C ** get_address_of_Empty_3() { return &___Empty_3; } inline void set_Empty_3(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * value) { ___Empty_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_3), (void*)value); } inline static int32_t get_offset_of_TextOnly_4() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields, ___TextOnly_4)); } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * get_TextOnly_4() const { return ___TextOnly_4; } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C ** get_address_of_TextOnly_4() { return &___TextOnly_4; } inline void set_TextOnly_4(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * value) { ___TextOnly_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___TextOnly_4), (void*)value); } inline static int32_t get_offset_of_Mixed_5() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields, ___Mixed_5)); } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * get_Mixed_5() const { return ___Mixed_5; } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C ** get_address_of_Mixed_5() { return &___Mixed_5; } inline void set_Mixed_5(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * value) { ___Mixed_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Mixed_5), (void*)value); } inline static int32_t get_offset_of_Any_6() { return static_cast(offsetof(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields, ___Any_6)); } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * get_Any_6() const { return ___Any_6; } inline ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C ** get_address_of_Any_6() { return &___Any_6; } inline void set_Any_6(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * value) { ___Any_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Any_6), (void*)value); } }; // System.Xml.Schema.ContentValidator // System.Xml.Schema.DatatypeImplementation struct DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields { public: // System.Collections.Hashtable System.Xml.Schema.DatatypeImplementation::builtinTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___builtinTypes_5; // System.Xml.Schema.XmlSchemaSimpleType[] System.Xml.Schema.DatatypeImplementation::enumToTypeCode XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21* ___enumToTypeCode_6; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::anySimpleType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___anySimpleType_7; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::anyAtomicType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___anyAtomicType_8; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::untypedAtomicType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___untypedAtomicType_9; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::yearMonthDurationType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___yearMonthDurationType_10; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::dayTimeDurationType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___dayTimeDurationType_11; // System.Xml.XmlQualifiedName System.Xml.Schema.DatatypeImplementation::QnAnySimpleType XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___QnAnySimpleType_12; // System.Xml.XmlQualifiedName System.Xml.Schema.DatatypeImplementation::QnAnyType XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___QnAnyType_13; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::stringFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___stringFacetsChecker_14; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::miscFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___miscFacetsChecker_15; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::numeric2FacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___numeric2FacetsChecker_16; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::binaryFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___binaryFacetsChecker_17; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::dateTimeFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___dateTimeFacetsChecker_18; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::durationFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___durationFacetsChecker_19; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::listFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___listFacetsChecker_20; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::qnameFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___qnameFacetsChecker_21; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::unionFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___unionFacetsChecker_22; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_anySimpleType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_anySimpleType_23; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_anyURI DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_anyURI_24; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_base64Binary DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_base64Binary_25; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_boolean DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_boolean_26; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_byte DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_byte_27; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_char DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_char_28; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_date DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_date_29; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dateTime DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dateTime_30; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dateTimeNoTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dateTimeNoTz_31; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dateTimeTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dateTimeTz_32; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_day DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_day_33; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_decimal DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_decimal_34; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_double DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_double_35; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_doubleXdr DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_doubleXdr_36; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_duration DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_duration_37; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ENTITY DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ENTITY_38; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ENTITIES DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ENTITIES_39; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ENUMERATION DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ENUMERATION_40; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_fixed DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_fixed_41; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_float DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_float_42; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_floatXdr DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_floatXdr_43; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_hexBinary DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_hexBinary_44; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ID DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ID_45; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_IDREF DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_IDREF_46; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_IDREFS DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_IDREFS_47; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_int DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_int_48; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_integer DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_integer_49; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_language DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_language_50; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_long DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_long_51; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_month DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_month_52; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_monthDay DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_monthDay_53; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_Name DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_Name_54; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NCName DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NCName_55; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_negativeInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_negativeInteger_56; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NMTOKEN DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NMTOKEN_57; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NMTOKENS DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NMTOKENS_58; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_nonNegativeInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_nonNegativeInteger_59; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_nonPositiveInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_nonPositiveInteger_60; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_normalizedString DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_normalizedString_61; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NOTATION DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NOTATION_62; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_positiveInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_positiveInteger_63; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_QName DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_QName_64; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_QNameXdr DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_QNameXdr_65; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_short DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_short_66; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_string DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_string_67; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_time DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_time_68; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_timeNoTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_timeNoTz_69; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_timeTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_timeTz_70; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_token DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_token_71; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedByte DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedByte_72; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedInt DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedInt_73; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedLong DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedLong_74; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedShort DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedShort_75; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_uuid DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_uuid_76; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_year DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_year_77; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_yearMonth DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_yearMonth_78; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_normalizedStringV1Compat DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_normalizedStringV1Compat_79; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_tokenV1Compat DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_tokenV1Compat_80; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_anyAtomicType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_anyAtomicType_81; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dayTimeDuration DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dayTimeDuration_82; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_untypedAtomicType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_untypedAtomicType_83; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_yearMonthDuration DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_yearMonthDuration_84; // System.Xml.Schema.DatatypeImplementation[] System.Xml.Schema.DatatypeImplementation::c_tokenizedTypes DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* ___c_tokenizedTypes_85; // System.Xml.Schema.DatatypeImplementation[] System.Xml.Schema.DatatypeImplementation::c_tokenizedTypesXsd DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* ___c_tokenizedTypesXsd_86; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap[] System.Xml.Schema.DatatypeImplementation::c_XdrTypes SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* ___c_XdrTypes_87; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap[] System.Xml.Schema.DatatypeImplementation::c_XsdTypes SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* ___c_XsdTypes_88; public: inline static int32_t get_offset_of_builtinTypes_5() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___builtinTypes_5)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_builtinTypes_5() const { return ___builtinTypes_5; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_builtinTypes_5() { return &___builtinTypes_5; } inline void set_builtinTypes_5(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___builtinTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___builtinTypes_5), (void*)value); } inline static int32_t get_offset_of_enumToTypeCode_6() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___enumToTypeCode_6)); } inline XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21* get_enumToTypeCode_6() const { return ___enumToTypeCode_6; } inline XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21** get_address_of_enumToTypeCode_6() { return &___enumToTypeCode_6; } inline void set_enumToTypeCode_6(XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21* value) { ___enumToTypeCode_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumToTypeCode_6), (void*)value); } inline static int32_t get_offset_of_anySimpleType_7() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___anySimpleType_7)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_anySimpleType_7() const { return ___anySimpleType_7; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_anySimpleType_7() { return &___anySimpleType_7; } inline void set_anySimpleType_7(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___anySimpleType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___anySimpleType_7), (void*)value); } inline static int32_t get_offset_of_anyAtomicType_8() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___anyAtomicType_8)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_anyAtomicType_8() const { return ___anyAtomicType_8; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_anyAtomicType_8() { return &___anyAtomicType_8; } inline void set_anyAtomicType_8(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___anyAtomicType_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___anyAtomicType_8), (void*)value); } inline static int32_t get_offset_of_untypedAtomicType_9() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___untypedAtomicType_9)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_untypedAtomicType_9() const { return ___untypedAtomicType_9; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_untypedAtomicType_9() { return &___untypedAtomicType_9; } inline void set_untypedAtomicType_9(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___untypedAtomicType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___untypedAtomicType_9), (void*)value); } inline static int32_t get_offset_of_yearMonthDurationType_10() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___yearMonthDurationType_10)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_yearMonthDurationType_10() const { return ___yearMonthDurationType_10; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_yearMonthDurationType_10() { return &___yearMonthDurationType_10; } inline void set_yearMonthDurationType_10(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___yearMonthDurationType_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___yearMonthDurationType_10), (void*)value); } inline static int32_t get_offset_of_dayTimeDurationType_11() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___dayTimeDurationType_11)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_dayTimeDurationType_11() const { return ___dayTimeDurationType_11; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_dayTimeDurationType_11() { return &___dayTimeDurationType_11; } inline void set_dayTimeDurationType_11(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___dayTimeDurationType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dayTimeDurationType_11), (void*)value); } inline static int32_t get_offset_of_QnAnySimpleType_12() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___QnAnySimpleType_12)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_QnAnySimpleType_12() const { return ___QnAnySimpleType_12; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_QnAnySimpleType_12() { return &___QnAnySimpleType_12; } inline void set_QnAnySimpleType_12(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___QnAnySimpleType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___QnAnySimpleType_12), (void*)value); } inline static int32_t get_offset_of_QnAnyType_13() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___QnAnyType_13)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_QnAnyType_13() const { return ___QnAnyType_13; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_QnAnyType_13() { return &___QnAnyType_13; } inline void set_QnAnyType_13(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___QnAnyType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___QnAnyType_13), (void*)value); } inline static int32_t get_offset_of_stringFacetsChecker_14() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___stringFacetsChecker_14)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_stringFacetsChecker_14() const { return ___stringFacetsChecker_14; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_stringFacetsChecker_14() { return &___stringFacetsChecker_14; } inline void set_stringFacetsChecker_14(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___stringFacetsChecker_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringFacetsChecker_14), (void*)value); } inline static int32_t get_offset_of_miscFacetsChecker_15() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___miscFacetsChecker_15)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_miscFacetsChecker_15() const { return ___miscFacetsChecker_15; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_miscFacetsChecker_15() { return &___miscFacetsChecker_15; } inline void set_miscFacetsChecker_15(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___miscFacetsChecker_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___miscFacetsChecker_15), (void*)value); } inline static int32_t get_offset_of_numeric2FacetsChecker_16() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___numeric2FacetsChecker_16)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_numeric2FacetsChecker_16() const { return ___numeric2FacetsChecker_16; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_numeric2FacetsChecker_16() { return &___numeric2FacetsChecker_16; } inline void set_numeric2FacetsChecker_16(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___numeric2FacetsChecker_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___numeric2FacetsChecker_16), (void*)value); } inline static int32_t get_offset_of_binaryFacetsChecker_17() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___binaryFacetsChecker_17)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_binaryFacetsChecker_17() const { return ___binaryFacetsChecker_17; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_binaryFacetsChecker_17() { return &___binaryFacetsChecker_17; } inline void set_binaryFacetsChecker_17(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___binaryFacetsChecker_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___binaryFacetsChecker_17), (void*)value); } inline static int32_t get_offset_of_dateTimeFacetsChecker_18() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___dateTimeFacetsChecker_18)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_dateTimeFacetsChecker_18() const { return ___dateTimeFacetsChecker_18; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_dateTimeFacetsChecker_18() { return &___dateTimeFacetsChecker_18; } inline void set_dateTimeFacetsChecker_18(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___dateTimeFacetsChecker_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeFacetsChecker_18), (void*)value); } inline static int32_t get_offset_of_durationFacetsChecker_19() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___durationFacetsChecker_19)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_durationFacetsChecker_19() const { return ___durationFacetsChecker_19; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_durationFacetsChecker_19() { return &___durationFacetsChecker_19; } inline void set_durationFacetsChecker_19(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___durationFacetsChecker_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___durationFacetsChecker_19), (void*)value); } inline static int32_t get_offset_of_listFacetsChecker_20() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___listFacetsChecker_20)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_listFacetsChecker_20() const { return ___listFacetsChecker_20; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_listFacetsChecker_20() { return &___listFacetsChecker_20; } inline void set_listFacetsChecker_20(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___listFacetsChecker_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___listFacetsChecker_20), (void*)value); } inline static int32_t get_offset_of_qnameFacetsChecker_21() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___qnameFacetsChecker_21)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_qnameFacetsChecker_21() const { return ___qnameFacetsChecker_21; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_qnameFacetsChecker_21() { return &___qnameFacetsChecker_21; } inline void set_qnameFacetsChecker_21(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___qnameFacetsChecker_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___qnameFacetsChecker_21), (void*)value); } inline static int32_t get_offset_of_unionFacetsChecker_22() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___unionFacetsChecker_22)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_unionFacetsChecker_22() const { return ___unionFacetsChecker_22; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_unionFacetsChecker_22() { return &___unionFacetsChecker_22; } inline void set_unionFacetsChecker_22(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___unionFacetsChecker_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___unionFacetsChecker_22), (void*)value); } inline static int32_t get_offset_of_c_anySimpleType_23() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_anySimpleType_23)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_anySimpleType_23() const { return ___c_anySimpleType_23; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_anySimpleType_23() { return &___c_anySimpleType_23; } inline void set_c_anySimpleType_23(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_anySimpleType_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_anySimpleType_23), (void*)value); } inline static int32_t get_offset_of_c_anyURI_24() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_anyURI_24)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_anyURI_24() const { return ___c_anyURI_24; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_anyURI_24() { return &___c_anyURI_24; } inline void set_c_anyURI_24(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_anyURI_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_anyURI_24), (void*)value); } inline static int32_t get_offset_of_c_base64Binary_25() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_base64Binary_25)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_base64Binary_25() const { return ___c_base64Binary_25; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_base64Binary_25() { return &___c_base64Binary_25; } inline void set_c_base64Binary_25(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_base64Binary_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_base64Binary_25), (void*)value); } inline static int32_t get_offset_of_c_boolean_26() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_boolean_26)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_boolean_26() const { return ___c_boolean_26; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_boolean_26() { return &___c_boolean_26; } inline void set_c_boolean_26(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_boolean_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_boolean_26), (void*)value); } inline static int32_t get_offset_of_c_byte_27() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_byte_27)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_byte_27() const { return ___c_byte_27; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_byte_27() { return &___c_byte_27; } inline void set_c_byte_27(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_byte_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_byte_27), (void*)value); } inline static int32_t get_offset_of_c_char_28() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_char_28)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_char_28() const { return ___c_char_28; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_char_28() { return &___c_char_28; } inline void set_c_char_28(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_char_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_char_28), (void*)value); } inline static int32_t get_offset_of_c_date_29() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_date_29)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_date_29() const { return ___c_date_29; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_date_29() { return &___c_date_29; } inline void set_c_date_29(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_date_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_date_29), (void*)value); } inline static int32_t get_offset_of_c_dateTime_30() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dateTime_30)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dateTime_30() const { return ___c_dateTime_30; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dateTime_30() { return &___c_dateTime_30; } inline void set_c_dateTime_30(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dateTime_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dateTime_30), (void*)value); } inline static int32_t get_offset_of_c_dateTimeNoTz_31() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dateTimeNoTz_31)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dateTimeNoTz_31() const { return ___c_dateTimeNoTz_31; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dateTimeNoTz_31() { return &___c_dateTimeNoTz_31; } inline void set_c_dateTimeNoTz_31(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dateTimeNoTz_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dateTimeNoTz_31), (void*)value); } inline static int32_t get_offset_of_c_dateTimeTz_32() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dateTimeTz_32)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dateTimeTz_32() const { return ___c_dateTimeTz_32; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dateTimeTz_32() { return &___c_dateTimeTz_32; } inline void set_c_dateTimeTz_32(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dateTimeTz_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dateTimeTz_32), (void*)value); } inline static int32_t get_offset_of_c_day_33() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_day_33)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_day_33() const { return ___c_day_33; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_day_33() { return &___c_day_33; } inline void set_c_day_33(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_day_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_day_33), (void*)value); } inline static int32_t get_offset_of_c_decimal_34() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_decimal_34)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_decimal_34() const { return ___c_decimal_34; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_decimal_34() { return &___c_decimal_34; } inline void set_c_decimal_34(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_decimal_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_decimal_34), (void*)value); } inline static int32_t get_offset_of_c_double_35() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_double_35)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_double_35() const { return ___c_double_35; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_double_35() { return &___c_double_35; } inline void set_c_double_35(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_double_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_double_35), (void*)value); } inline static int32_t get_offset_of_c_doubleXdr_36() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_doubleXdr_36)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_doubleXdr_36() const { return ___c_doubleXdr_36; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_doubleXdr_36() { return &___c_doubleXdr_36; } inline void set_c_doubleXdr_36(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_doubleXdr_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_doubleXdr_36), (void*)value); } inline static int32_t get_offset_of_c_duration_37() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_duration_37)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_duration_37() const { return ___c_duration_37; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_duration_37() { return &___c_duration_37; } inline void set_c_duration_37(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_duration_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_duration_37), (void*)value); } inline static int32_t get_offset_of_c_ENTITY_38() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ENTITY_38)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ENTITY_38() const { return ___c_ENTITY_38; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ENTITY_38() { return &___c_ENTITY_38; } inline void set_c_ENTITY_38(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ENTITY_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ENTITY_38), (void*)value); } inline static int32_t get_offset_of_c_ENTITIES_39() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ENTITIES_39)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ENTITIES_39() const { return ___c_ENTITIES_39; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ENTITIES_39() { return &___c_ENTITIES_39; } inline void set_c_ENTITIES_39(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ENTITIES_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ENTITIES_39), (void*)value); } inline static int32_t get_offset_of_c_ENUMERATION_40() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ENUMERATION_40)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ENUMERATION_40() const { return ___c_ENUMERATION_40; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ENUMERATION_40() { return &___c_ENUMERATION_40; } inline void set_c_ENUMERATION_40(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ENUMERATION_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ENUMERATION_40), (void*)value); } inline static int32_t get_offset_of_c_fixed_41() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_fixed_41)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_fixed_41() const { return ___c_fixed_41; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_fixed_41() { return &___c_fixed_41; } inline void set_c_fixed_41(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_fixed_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_fixed_41), (void*)value); } inline static int32_t get_offset_of_c_float_42() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_float_42)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_float_42() const { return ___c_float_42; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_float_42() { return &___c_float_42; } inline void set_c_float_42(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_float_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_float_42), (void*)value); } inline static int32_t get_offset_of_c_floatXdr_43() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_floatXdr_43)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_floatXdr_43() const { return ___c_floatXdr_43; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_floatXdr_43() { return &___c_floatXdr_43; } inline void set_c_floatXdr_43(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_floatXdr_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_floatXdr_43), (void*)value); } inline static int32_t get_offset_of_c_hexBinary_44() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_hexBinary_44)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_hexBinary_44() const { return ___c_hexBinary_44; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_hexBinary_44() { return &___c_hexBinary_44; } inline void set_c_hexBinary_44(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_hexBinary_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_hexBinary_44), (void*)value); } inline static int32_t get_offset_of_c_ID_45() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ID_45)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ID_45() const { return ___c_ID_45; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ID_45() { return &___c_ID_45; } inline void set_c_ID_45(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ID_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ID_45), (void*)value); } inline static int32_t get_offset_of_c_IDREF_46() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_IDREF_46)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_IDREF_46() const { return ___c_IDREF_46; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_IDREF_46() { return &___c_IDREF_46; } inline void set_c_IDREF_46(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_IDREF_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_IDREF_46), (void*)value); } inline static int32_t get_offset_of_c_IDREFS_47() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_IDREFS_47)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_IDREFS_47() const { return ___c_IDREFS_47; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_IDREFS_47() { return &___c_IDREFS_47; } inline void set_c_IDREFS_47(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_IDREFS_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_IDREFS_47), (void*)value); } inline static int32_t get_offset_of_c_int_48() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_int_48)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_int_48() const { return ___c_int_48; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_int_48() { return &___c_int_48; } inline void set_c_int_48(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_int_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_int_48), (void*)value); } inline static int32_t get_offset_of_c_integer_49() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_integer_49)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_integer_49() const { return ___c_integer_49; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_integer_49() { return &___c_integer_49; } inline void set_c_integer_49(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_integer_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_integer_49), (void*)value); } inline static int32_t get_offset_of_c_language_50() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_language_50)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_language_50() const { return ___c_language_50; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_language_50() { return &___c_language_50; } inline void set_c_language_50(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_language_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_language_50), (void*)value); } inline static int32_t get_offset_of_c_long_51() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_long_51)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_long_51() const { return ___c_long_51; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_long_51() { return &___c_long_51; } inline void set_c_long_51(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_long_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_long_51), (void*)value); } inline static int32_t get_offset_of_c_month_52() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_month_52)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_month_52() const { return ___c_month_52; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_month_52() { return &___c_month_52; } inline void set_c_month_52(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_month_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_month_52), (void*)value); } inline static int32_t get_offset_of_c_monthDay_53() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_monthDay_53)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_monthDay_53() const { return ___c_monthDay_53; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_monthDay_53() { return &___c_monthDay_53; } inline void set_c_monthDay_53(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_monthDay_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_monthDay_53), (void*)value); } inline static int32_t get_offset_of_c_Name_54() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_Name_54)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_Name_54() const { return ___c_Name_54; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_Name_54() { return &___c_Name_54; } inline void set_c_Name_54(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_Name_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_Name_54), (void*)value); } inline static int32_t get_offset_of_c_NCName_55() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NCName_55)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NCName_55() const { return ___c_NCName_55; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NCName_55() { return &___c_NCName_55; } inline void set_c_NCName_55(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NCName_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NCName_55), (void*)value); } inline static int32_t get_offset_of_c_negativeInteger_56() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_negativeInteger_56)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_negativeInteger_56() const { return ___c_negativeInteger_56; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_negativeInteger_56() { return &___c_negativeInteger_56; } inline void set_c_negativeInteger_56(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_negativeInteger_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_negativeInteger_56), (void*)value); } inline static int32_t get_offset_of_c_NMTOKEN_57() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NMTOKEN_57)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NMTOKEN_57() const { return ___c_NMTOKEN_57; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NMTOKEN_57() { return &___c_NMTOKEN_57; } inline void set_c_NMTOKEN_57(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NMTOKEN_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NMTOKEN_57), (void*)value); } inline static int32_t get_offset_of_c_NMTOKENS_58() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NMTOKENS_58)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NMTOKENS_58() const { return ___c_NMTOKENS_58; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NMTOKENS_58() { return &___c_NMTOKENS_58; } inline void set_c_NMTOKENS_58(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NMTOKENS_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NMTOKENS_58), (void*)value); } inline static int32_t get_offset_of_c_nonNegativeInteger_59() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_nonNegativeInteger_59)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_nonNegativeInteger_59() const { return ___c_nonNegativeInteger_59; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_nonNegativeInteger_59() { return &___c_nonNegativeInteger_59; } inline void set_c_nonNegativeInteger_59(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_nonNegativeInteger_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_nonNegativeInteger_59), (void*)value); } inline static int32_t get_offset_of_c_nonPositiveInteger_60() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_nonPositiveInteger_60)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_nonPositiveInteger_60() const { return ___c_nonPositiveInteger_60; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_nonPositiveInteger_60() { return &___c_nonPositiveInteger_60; } inline void set_c_nonPositiveInteger_60(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_nonPositiveInteger_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_nonPositiveInteger_60), (void*)value); } inline static int32_t get_offset_of_c_normalizedString_61() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_normalizedString_61)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_normalizedString_61() const { return ___c_normalizedString_61; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_normalizedString_61() { return &___c_normalizedString_61; } inline void set_c_normalizedString_61(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_normalizedString_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_normalizedString_61), (void*)value); } inline static int32_t get_offset_of_c_NOTATION_62() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NOTATION_62)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NOTATION_62() const { return ___c_NOTATION_62; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NOTATION_62() { return &___c_NOTATION_62; } inline void set_c_NOTATION_62(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NOTATION_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NOTATION_62), (void*)value); } inline static int32_t get_offset_of_c_positiveInteger_63() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_positiveInteger_63)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_positiveInteger_63() const { return ___c_positiveInteger_63; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_positiveInteger_63() { return &___c_positiveInteger_63; } inline void set_c_positiveInteger_63(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_positiveInteger_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_positiveInteger_63), (void*)value); } inline static int32_t get_offset_of_c_QName_64() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_QName_64)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_QName_64() const { return ___c_QName_64; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_QName_64() { return &___c_QName_64; } inline void set_c_QName_64(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_QName_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_QName_64), (void*)value); } inline static int32_t get_offset_of_c_QNameXdr_65() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_QNameXdr_65)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_QNameXdr_65() const { return ___c_QNameXdr_65; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_QNameXdr_65() { return &___c_QNameXdr_65; } inline void set_c_QNameXdr_65(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_QNameXdr_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_QNameXdr_65), (void*)value); } inline static int32_t get_offset_of_c_short_66() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_short_66)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_short_66() const { return ___c_short_66; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_short_66() { return &___c_short_66; } inline void set_c_short_66(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_short_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_short_66), (void*)value); } inline static int32_t get_offset_of_c_string_67() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_string_67)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_string_67() const { return ___c_string_67; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_string_67() { return &___c_string_67; } inline void set_c_string_67(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_string_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_string_67), (void*)value); } inline static int32_t get_offset_of_c_time_68() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_time_68)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_time_68() const { return ___c_time_68; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_time_68() { return &___c_time_68; } inline void set_c_time_68(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_time_68 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_time_68), (void*)value); } inline static int32_t get_offset_of_c_timeNoTz_69() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_timeNoTz_69)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_timeNoTz_69() const { return ___c_timeNoTz_69; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_timeNoTz_69() { return &___c_timeNoTz_69; } inline void set_c_timeNoTz_69(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_timeNoTz_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_timeNoTz_69), (void*)value); } inline static int32_t get_offset_of_c_timeTz_70() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_timeTz_70)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_timeTz_70() const { return ___c_timeTz_70; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_timeTz_70() { return &___c_timeTz_70; } inline void set_c_timeTz_70(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_timeTz_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_timeTz_70), (void*)value); } inline static int32_t get_offset_of_c_token_71() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_token_71)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_token_71() const { return ___c_token_71; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_token_71() { return &___c_token_71; } inline void set_c_token_71(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_token_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_token_71), (void*)value); } inline static int32_t get_offset_of_c_unsignedByte_72() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedByte_72)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedByte_72() const { return ___c_unsignedByte_72; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedByte_72() { return &___c_unsignedByte_72; } inline void set_c_unsignedByte_72(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedByte_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedByte_72), (void*)value); } inline static int32_t get_offset_of_c_unsignedInt_73() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedInt_73)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedInt_73() const { return ___c_unsignedInt_73; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedInt_73() { return &___c_unsignedInt_73; } inline void set_c_unsignedInt_73(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedInt_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedInt_73), (void*)value); } inline static int32_t get_offset_of_c_unsignedLong_74() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedLong_74)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedLong_74() const { return ___c_unsignedLong_74; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedLong_74() { return &___c_unsignedLong_74; } inline void set_c_unsignedLong_74(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedLong_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedLong_74), (void*)value); } inline static int32_t get_offset_of_c_unsignedShort_75() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedShort_75)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedShort_75() const { return ___c_unsignedShort_75; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedShort_75() { return &___c_unsignedShort_75; } inline void set_c_unsignedShort_75(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedShort_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedShort_75), (void*)value); } inline static int32_t get_offset_of_c_uuid_76() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_uuid_76)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_uuid_76() const { return ___c_uuid_76; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_uuid_76() { return &___c_uuid_76; } inline void set_c_uuid_76(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_uuid_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_uuid_76), (void*)value); } inline static int32_t get_offset_of_c_year_77() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_year_77)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_year_77() const { return ___c_year_77; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_year_77() { return &___c_year_77; } inline void set_c_year_77(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_year_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_year_77), (void*)value); } inline static int32_t get_offset_of_c_yearMonth_78() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_yearMonth_78)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_yearMonth_78() const { return ___c_yearMonth_78; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_yearMonth_78() { return &___c_yearMonth_78; } inline void set_c_yearMonth_78(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_yearMonth_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_yearMonth_78), (void*)value); } inline static int32_t get_offset_of_c_normalizedStringV1Compat_79() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_normalizedStringV1Compat_79)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_normalizedStringV1Compat_79() const { return ___c_normalizedStringV1Compat_79; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_normalizedStringV1Compat_79() { return &___c_normalizedStringV1Compat_79; } inline void set_c_normalizedStringV1Compat_79(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_normalizedStringV1Compat_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_normalizedStringV1Compat_79), (void*)value); } inline static int32_t get_offset_of_c_tokenV1Compat_80() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_tokenV1Compat_80)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_tokenV1Compat_80() const { return ___c_tokenV1Compat_80; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_tokenV1Compat_80() { return &___c_tokenV1Compat_80; } inline void set_c_tokenV1Compat_80(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_tokenV1Compat_80 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_tokenV1Compat_80), (void*)value); } inline static int32_t get_offset_of_c_anyAtomicType_81() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_anyAtomicType_81)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_anyAtomicType_81() const { return ___c_anyAtomicType_81; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_anyAtomicType_81() { return &___c_anyAtomicType_81; } inline void set_c_anyAtomicType_81(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_anyAtomicType_81 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_anyAtomicType_81), (void*)value); } inline static int32_t get_offset_of_c_dayTimeDuration_82() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dayTimeDuration_82)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dayTimeDuration_82() const { return ___c_dayTimeDuration_82; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dayTimeDuration_82() { return &___c_dayTimeDuration_82; } inline void set_c_dayTimeDuration_82(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dayTimeDuration_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dayTimeDuration_82), (void*)value); } inline static int32_t get_offset_of_c_untypedAtomicType_83() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_untypedAtomicType_83)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_untypedAtomicType_83() const { return ___c_untypedAtomicType_83; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_untypedAtomicType_83() { return &___c_untypedAtomicType_83; } inline void set_c_untypedAtomicType_83(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_untypedAtomicType_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_untypedAtomicType_83), (void*)value); } inline static int32_t get_offset_of_c_yearMonthDuration_84() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_yearMonthDuration_84)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_yearMonthDuration_84() const { return ___c_yearMonthDuration_84; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_yearMonthDuration_84() { return &___c_yearMonthDuration_84; } inline void set_c_yearMonthDuration_84(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_yearMonthDuration_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_yearMonthDuration_84), (void*)value); } inline static int32_t get_offset_of_c_tokenizedTypes_85() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_tokenizedTypes_85)); } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* get_c_tokenizedTypes_85() const { return ___c_tokenizedTypes_85; } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D** get_address_of_c_tokenizedTypes_85() { return &___c_tokenizedTypes_85; } inline void set_c_tokenizedTypes_85(DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* value) { ___c_tokenizedTypes_85 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_tokenizedTypes_85), (void*)value); } inline static int32_t get_offset_of_c_tokenizedTypesXsd_86() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_tokenizedTypesXsd_86)); } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* get_c_tokenizedTypesXsd_86() const { return ___c_tokenizedTypesXsd_86; } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D** get_address_of_c_tokenizedTypesXsd_86() { return &___c_tokenizedTypesXsd_86; } inline void set_c_tokenizedTypesXsd_86(DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* value) { ___c_tokenizedTypesXsd_86 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_tokenizedTypesXsd_86), (void*)value); } inline static int32_t get_offset_of_c_XdrTypes_87() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_XdrTypes_87)); } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* get_c_XdrTypes_87() const { return ___c_XdrTypes_87; } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA** get_address_of_c_XdrTypes_87() { return &___c_XdrTypes_87; } inline void set_c_XdrTypes_87(SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* value) { ___c_XdrTypes_87 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_XdrTypes_87), (void*)value); } inline static int32_t get_offset_of_c_XsdTypes_88() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_XsdTypes_88)); } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* get_c_XsdTypes_88() const { return ___c_XsdTypes_88; } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA** get_address_of_c_XsdTypes_88() { return &___c_XsdTypes_88; } inline void set_c_XsdTypes_88(SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* value) { ___c_XsdTypes_88 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_XsdTypes_88), (void*)value); } }; // System.Xml.Schema.DatatypeImplementation // System.MulticastDelegate // System.MulticastDelegate // System.Xml.Schema.NamespaceList // System.Xml.Schema.NamespaceList // System.Reflection.ParameterInfo // System.Reflection.ParameterInfo // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields { public: // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3; // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4; // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_6; // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_7; // System.Collections.Generic.LinkedList`1 System.Text.RegularExpressions.Regex::livecode LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_16; // System.Int32 System.Text.RegularExpressions.Regex::cacheSize int32_t ___cacheSize_17; public: inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; } inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaximumMatchTimeout_3 = value; } inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; } inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___InfiniteMatchTimeout_4 = value; } inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_6() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_6)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_6() const { return ___FallbackDefaultMatchTimeout_6; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_6() { return &___FallbackDefaultMatchTimeout_6; } inline void set_FallbackDefaultMatchTimeout_6(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___FallbackDefaultMatchTimeout_6 = value; } inline static int32_t get_offset_of_DefaultMatchTimeout_7() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_7)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_7() const { return ___DefaultMatchTimeout_7; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_7() { return &___DefaultMatchTimeout_7; } inline void set_DefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___DefaultMatchTimeout_7 = value; } inline static int32_t get_offset_of_livecode_16() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_16)); } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_16() const { return ___livecode_16; } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_16() { return &___livecode_16; } inline void set_livecode_16(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value) { ___livecode_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___livecode_16), (void*)value); } inline static int32_t get_offset_of_cacheSize_17() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_17)); } inline int32_t get_cacheSize_17() const { return ___cacheSize_17; } inline int32_t* get_address_of_cacheSize_17() { return &___cacheSize_17; } inline void set_cacheSize_17(int32_t value) { ___cacheSize_17 = value; } }; // System.Text.RegularExpressions.Regex // System.Xml.Schema.RestrictionFacets // System.Xml.Schema.RestrictionFacets // System.Xml.Schema.SchemaDeclBase // System.Xml.Schema.SchemaDeclBase // System.Xml.Schema.SchemaInfo // System.Xml.Schema.SchemaInfo // System.SystemException // System.SystemException // System.Type struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Type // System.Xml.Serialization.TypeData struct TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_StaticFields { public: // System.String[] System.Xml.Serialization.TypeData::keywords StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___keywords_12; public: inline static int32_t get_offset_of_keywords_12() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_StaticFields, ___keywords_12)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_keywords_12() const { return ___keywords_12; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_keywords_12() { return &___keywords_12; } inline void set_keywords_12(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___keywords_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___keywords_12), (void*)value); } }; // System.Xml.Serialization.TypeData // System.Xml.Schema.UpaException // System.Xml.Schema.UpaException // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields { public: // 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_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_27; // System.Char[] System.Uri::_WSchars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_28; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value); } inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_20)); } inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; } inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; } inline void set_s_ConfigInitialized_20(bool value) { ___s_ConfigInitialized_20 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_21)); } inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; } inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; } inline void set_s_ConfigInitializing_21(bool value) { ___s_ConfigInitializing_21 = value; } inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_22)); } inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; } inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; } inline void set_s_IdnScope_22(int32_t value) { ___s_IdnScope_22 = value; } inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_23)); } inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; } inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; } inline void set_s_IriParsing_23(bool value) { ___s_IriParsing_23 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_24)); } inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; } inline void set_useDotNetRelativeOrAbsolute_24(bool value) { ___useDotNetRelativeOrAbsolute_24 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_25)); } inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; } inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; } inline void set_IsWindowsFileSystem_25(bool value) { ___IsWindowsFileSystem_25 = value; } inline static int32_t get_offset_of_s_initLock_26() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_26)); } inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; } inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; } inline void set_s_initLock_26(RuntimeObject * value) { ___s_initLock_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_26), (void*)value); } inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_27)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_27() const { return ___HexLowerChars_27; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; } inline void set_HexLowerChars_27(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HexLowerChars_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_27), (void*)value); } inline static int32_t get_offset_of__WSchars_28() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_28)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_28() const { return ____WSchars_28; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_28() { return &____WSchars_28; } inline void set__WSchars_28(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ____WSchars_28 = value; Il2CppCodeGenWriteBarrier((void**)(&____WSchars_28), (void*)value); } }; // System.Uri // System.Xml.Schema.ValidationEventArgs // System.Xml.Schema.ValidationEventArgs // System.Xml.Schema.XmlAtomicValue // System.Xml.Schema.XmlAtomicValue // System.Xml.Schema.XmlBaseConverter struct XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields { public: // System.Type System.Xml.Schema.XmlBaseConverter::ICollectionType Type_t * ___ICollectionType_3; // System.Type System.Xml.Schema.XmlBaseConverter::IEnumerableType Type_t * ___IEnumerableType_4; // System.Type System.Xml.Schema.XmlBaseConverter::IListType Type_t * ___IListType_5; // System.Type System.Xml.Schema.XmlBaseConverter::ObjectArrayType Type_t * ___ObjectArrayType_6; // System.Type System.Xml.Schema.XmlBaseConverter::StringArrayType Type_t * ___StringArrayType_7; // System.Type System.Xml.Schema.XmlBaseConverter::XmlAtomicValueArrayType Type_t * ___XmlAtomicValueArrayType_8; // System.Type System.Xml.Schema.XmlBaseConverter::DecimalType Type_t * ___DecimalType_9; // System.Type System.Xml.Schema.XmlBaseConverter::Int32Type Type_t * ___Int32Type_10; // System.Type System.Xml.Schema.XmlBaseConverter::Int64Type Type_t * ___Int64Type_11; // System.Type System.Xml.Schema.XmlBaseConverter::StringType Type_t * ___StringType_12; // System.Type System.Xml.Schema.XmlBaseConverter::XmlAtomicValueType Type_t * ___XmlAtomicValueType_13; // System.Type System.Xml.Schema.XmlBaseConverter::ObjectType Type_t * ___ObjectType_14; // System.Type System.Xml.Schema.XmlBaseConverter::ByteType Type_t * ___ByteType_15; // System.Type System.Xml.Schema.XmlBaseConverter::Int16Type Type_t * ___Int16Type_16; // System.Type System.Xml.Schema.XmlBaseConverter::SByteType Type_t * ___SByteType_17; // System.Type System.Xml.Schema.XmlBaseConverter::UInt16Type Type_t * ___UInt16Type_18; // System.Type System.Xml.Schema.XmlBaseConverter::UInt32Type Type_t * ___UInt32Type_19; // System.Type System.Xml.Schema.XmlBaseConverter::UInt64Type Type_t * ___UInt64Type_20; // System.Type System.Xml.Schema.XmlBaseConverter::XPathItemType Type_t * ___XPathItemType_21; // System.Type System.Xml.Schema.XmlBaseConverter::DoubleType Type_t * ___DoubleType_22; // System.Type System.Xml.Schema.XmlBaseConverter::SingleType Type_t * ___SingleType_23; // System.Type System.Xml.Schema.XmlBaseConverter::DateTimeType Type_t * ___DateTimeType_24; // System.Type System.Xml.Schema.XmlBaseConverter::DateTimeOffsetType Type_t * ___DateTimeOffsetType_25; // System.Type System.Xml.Schema.XmlBaseConverter::BooleanType Type_t * ___BooleanType_26; // System.Type System.Xml.Schema.XmlBaseConverter::ByteArrayType Type_t * ___ByteArrayType_27; // System.Type System.Xml.Schema.XmlBaseConverter::XmlQualifiedNameType Type_t * ___XmlQualifiedNameType_28; // System.Type System.Xml.Schema.XmlBaseConverter::UriType Type_t * ___UriType_29; // System.Type System.Xml.Schema.XmlBaseConverter::TimeSpanType Type_t * ___TimeSpanType_30; // System.Type System.Xml.Schema.XmlBaseConverter::XPathNavigatorType Type_t * ___XPathNavigatorType_31; public: inline static int32_t get_offset_of_ICollectionType_3() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ICollectionType_3)); } inline Type_t * get_ICollectionType_3() const { return ___ICollectionType_3; } inline Type_t ** get_address_of_ICollectionType_3() { return &___ICollectionType_3; } inline void set_ICollectionType_3(Type_t * value) { ___ICollectionType_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___ICollectionType_3), (void*)value); } inline static int32_t get_offset_of_IEnumerableType_4() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___IEnumerableType_4)); } inline Type_t * get_IEnumerableType_4() const { return ___IEnumerableType_4; } inline Type_t ** get_address_of_IEnumerableType_4() { return &___IEnumerableType_4; } inline void set_IEnumerableType_4(Type_t * value) { ___IEnumerableType_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___IEnumerableType_4), (void*)value); } inline static int32_t get_offset_of_IListType_5() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___IListType_5)); } inline Type_t * get_IListType_5() const { return ___IListType_5; } inline Type_t ** get_address_of_IListType_5() { return &___IListType_5; } inline void set_IListType_5(Type_t * value) { ___IListType_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___IListType_5), (void*)value); } inline static int32_t get_offset_of_ObjectArrayType_6() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ObjectArrayType_6)); } inline Type_t * get_ObjectArrayType_6() const { return ___ObjectArrayType_6; } inline Type_t ** get_address_of_ObjectArrayType_6() { return &___ObjectArrayType_6; } inline void set_ObjectArrayType_6(Type_t * value) { ___ObjectArrayType_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectArrayType_6), (void*)value); } inline static int32_t get_offset_of_StringArrayType_7() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___StringArrayType_7)); } inline Type_t * get_StringArrayType_7() const { return ___StringArrayType_7; } inline Type_t ** get_address_of_StringArrayType_7() { return &___StringArrayType_7; } inline void set_StringArrayType_7(Type_t * value) { ___StringArrayType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringArrayType_7), (void*)value); } inline static int32_t get_offset_of_XmlAtomicValueArrayType_8() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XmlAtomicValueArrayType_8)); } inline Type_t * get_XmlAtomicValueArrayType_8() const { return ___XmlAtomicValueArrayType_8; } inline Type_t ** get_address_of_XmlAtomicValueArrayType_8() { return &___XmlAtomicValueArrayType_8; } inline void set_XmlAtomicValueArrayType_8(Type_t * value) { ___XmlAtomicValueArrayType_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlAtomicValueArrayType_8), (void*)value); } inline static int32_t get_offset_of_DecimalType_9() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DecimalType_9)); } inline Type_t * get_DecimalType_9() const { return ___DecimalType_9; } inline Type_t ** get_address_of_DecimalType_9() { return &___DecimalType_9; } inline void set_DecimalType_9(Type_t * value) { ___DecimalType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DecimalType_9), (void*)value); } inline static int32_t get_offset_of_Int32Type_10() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___Int32Type_10)); } inline Type_t * get_Int32Type_10() const { return ___Int32Type_10; } inline Type_t ** get_address_of_Int32Type_10() { return &___Int32Type_10; } inline void set_Int32Type_10(Type_t * value) { ___Int32Type_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Int32Type_10), (void*)value); } inline static int32_t get_offset_of_Int64Type_11() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___Int64Type_11)); } inline Type_t * get_Int64Type_11() const { return ___Int64Type_11; } inline Type_t ** get_address_of_Int64Type_11() { return &___Int64Type_11; } inline void set_Int64Type_11(Type_t * value) { ___Int64Type_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Int64Type_11), (void*)value); } inline static int32_t get_offset_of_StringType_12() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___StringType_12)); } inline Type_t * get_StringType_12() const { return ___StringType_12; } inline Type_t ** get_address_of_StringType_12() { return &___StringType_12; } inline void set_StringType_12(Type_t * value) { ___StringType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringType_12), (void*)value); } inline static int32_t get_offset_of_XmlAtomicValueType_13() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XmlAtomicValueType_13)); } inline Type_t * get_XmlAtomicValueType_13() const { return ___XmlAtomicValueType_13; } inline Type_t ** get_address_of_XmlAtomicValueType_13() { return &___XmlAtomicValueType_13; } inline void set_XmlAtomicValueType_13(Type_t * value) { ___XmlAtomicValueType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlAtomicValueType_13), (void*)value); } inline static int32_t get_offset_of_ObjectType_14() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ObjectType_14)); } inline Type_t * get_ObjectType_14() const { return ___ObjectType_14; } inline Type_t ** get_address_of_ObjectType_14() { return &___ObjectType_14; } inline void set_ObjectType_14(Type_t * value) { ___ObjectType_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_14), (void*)value); } inline static int32_t get_offset_of_ByteType_15() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ByteType_15)); } inline Type_t * get_ByteType_15() const { return ___ByteType_15; } inline Type_t ** get_address_of_ByteType_15() { return &___ByteType_15; } inline void set_ByteType_15(Type_t * value) { ___ByteType_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___ByteType_15), (void*)value); } inline static int32_t get_offset_of_Int16Type_16() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___Int16Type_16)); } inline Type_t * get_Int16Type_16() const { return ___Int16Type_16; } inline Type_t ** get_address_of_Int16Type_16() { return &___Int16Type_16; } inline void set_Int16Type_16(Type_t * value) { ___Int16Type_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___Int16Type_16), (void*)value); } inline static int32_t get_offset_of_SByteType_17() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___SByteType_17)); } inline Type_t * get_SByteType_17() const { return ___SByteType_17; } inline Type_t ** get_address_of_SByteType_17() { return &___SByteType_17; } inline void set_SByteType_17(Type_t * value) { ___SByteType_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___SByteType_17), (void*)value); } inline static int32_t get_offset_of_UInt16Type_18() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UInt16Type_18)); } inline Type_t * get_UInt16Type_18() const { return ___UInt16Type_18; } inline Type_t ** get_address_of_UInt16Type_18() { return &___UInt16Type_18; } inline void set_UInt16Type_18(Type_t * value) { ___UInt16Type_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___UInt16Type_18), (void*)value); } inline static int32_t get_offset_of_UInt32Type_19() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UInt32Type_19)); } inline Type_t * get_UInt32Type_19() const { return ___UInt32Type_19; } inline Type_t ** get_address_of_UInt32Type_19() { return &___UInt32Type_19; } inline void set_UInt32Type_19(Type_t * value) { ___UInt32Type_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___UInt32Type_19), (void*)value); } inline static int32_t get_offset_of_UInt64Type_20() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UInt64Type_20)); } inline Type_t * get_UInt64Type_20() const { return ___UInt64Type_20; } inline Type_t ** get_address_of_UInt64Type_20() { return &___UInt64Type_20; } inline void set_UInt64Type_20(Type_t * value) { ___UInt64Type_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___UInt64Type_20), (void*)value); } inline static int32_t get_offset_of_XPathItemType_21() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XPathItemType_21)); } inline Type_t * get_XPathItemType_21() const { return ___XPathItemType_21; } inline Type_t ** get_address_of_XPathItemType_21() { return &___XPathItemType_21; } inline void set_XPathItemType_21(Type_t * value) { ___XPathItemType_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___XPathItemType_21), (void*)value); } inline static int32_t get_offset_of_DoubleType_22() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DoubleType_22)); } inline Type_t * get_DoubleType_22() const { return ___DoubleType_22; } inline Type_t ** get_address_of_DoubleType_22() { return &___DoubleType_22; } inline void set_DoubleType_22(Type_t * value) { ___DoubleType_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___DoubleType_22), (void*)value); } inline static int32_t get_offset_of_SingleType_23() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___SingleType_23)); } inline Type_t * get_SingleType_23() const { return ___SingleType_23; } inline Type_t ** get_address_of_SingleType_23() { return &___SingleType_23; } inline void set_SingleType_23(Type_t * value) { ___SingleType_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___SingleType_23), (void*)value); } inline static int32_t get_offset_of_DateTimeType_24() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DateTimeType_24)); } inline Type_t * get_DateTimeType_24() const { return ___DateTimeType_24; } inline Type_t ** get_address_of_DateTimeType_24() { return &___DateTimeType_24; } inline void set_DateTimeType_24(Type_t * value) { ___DateTimeType_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___DateTimeType_24), (void*)value); } inline static int32_t get_offset_of_DateTimeOffsetType_25() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DateTimeOffsetType_25)); } inline Type_t * get_DateTimeOffsetType_25() const { return ___DateTimeOffsetType_25; } inline Type_t ** get_address_of_DateTimeOffsetType_25() { return &___DateTimeOffsetType_25; } inline void set_DateTimeOffsetType_25(Type_t * value) { ___DateTimeOffsetType_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___DateTimeOffsetType_25), (void*)value); } inline static int32_t get_offset_of_BooleanType_26() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___BooleanType_26)); } inline Type_t * get_BooleanType_26() const { return ___BooleanType_26; } inline Type_t ** get_address_of_BooleanType_26() { return &___BooleanType_26; } inline void set_BooleanType_26(Type_t * value) { ___BooleanType_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___BooleanType_26), (void*)value); } inline static int32_t get_offset_of_ByteArrayType_27() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ByteArrayType_27)); } inline Type_t * get_ByteArrayType_27() const { return ___ByteArrayType_27; } inline Type_t ** get_address_of_ByteArrayType_27() { return &___ByteArrayType_27; } inline void set_ByteArrayType_27(Type_t * value) { ___ByteArrayType_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___ByteArrayType_27), (void*)value); } inline static int32_t get_offset_of_XmlQualifiedNameType_28() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XmlQualifiedNameType_28)); } inline Type_t * get_XmlQualifiedNameType_28() const { return ___XmlQualifiedNameType_28; } inline Type_t ** get_address_of_XmlQualifiedNameType_28() { return &___XmlQualifiedNameType_28; } inline void set_XmlQualifiedNameType_28(Type_t * value) { ___XmlQualifiedNameType_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlQualifiedNameType_28), (void*)value); } inline static int32_t get_offset_of_UriType_29() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UriType_29)); } inline Type_t * get_UriType_29() const { return ___UriType_29; } inline Type_t ** get_address_of_UriType_29() { return &___UriType_29; } inline void set_UriType_29(Type_t * value) { ___UriType_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriType_29), (void*)value); } inline static int32_t get_offset_of_TimeSpanType_30() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___TimeSpanType_30)); } inline Type_t * get_TimeSpanType_30() const { return ___TimeSpanType_30; } inline Type_t ** get_address_of_TimeSpanType_30() { return &___TimeSpanType_30; } inline void set_TimeSpanType_30(Type_t * value) { ___TimeSpanType_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___TimeSpanType_30), (void*)value); } inline static int32_t get_offset_of_XPathNavigatorType_31() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XPathNavigatorType_31)); } inline Type_t * get_XPathNavigatorType_31() const { return ___XPathNavigatorType_31; } inline Type_t ** get_address_of_XPathNavigatorType_31() { return &___XPathNavigatorType_31; } inline void set_XPathNavigatorType_31(Type_t * value) { ___XPathNavigatorType_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___XPathNavigatorType_31), (void*)value); } }; // System.Xml.Schema.XmlBaseConverter // System.Xml.Serialization.XmlMapping // System.Xml.Serialization.XmlMapping // System.Xml.Schema.XmlSchemaAnyAttribute // System.Xml.Schema.XmlSchemaAnyAttribute // System.Xml.Schema.XmlSchemaFacet // System.Xml.Schema.XmlSchemaFacet // System.Xml.Schema.XmlSchemaType // System.Xml.Schema.XmlSchemaType // System.Xml.Serialization.XmlTypeMapElementInfo // System.Xml.Serialization.XmlTypeMapElementInfo // System.ArgumentException // System.ArgumentException // System.ArithmeticException // System.ArithmeticException // System.AsyncCallback // System.AsyncCallback // System.Xml.Schema.DfaContentValidator // System.Xml.Schema.DfaContentValidator // System.FormatException // System.FormatException // System.InvalidCastException // System.InvalidCastException // System.InvalidOperationException // System.InvalidOperationException // System.Xml.Schema.NfaContentValidator // System.Xml.Schema.NfaContentValidator // System.NotSupportedException // System.NotSupportedException // System.Xml.Schema.ParticleContentValidator // System.Xml.Schema.ParticleContentValidator // System.Xml.Schema.RangeContentValidator // System.Xml.Schema.RangeContentValidator // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_StaticFields { public: // System.Xml.Schema.SchemaAttDef System.Xml.Schema.SchemaAttDef::Empty SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * ___Empty_17; public: inline static int32_t get_offset_of_Empty_17() { return static_cast(offsetof(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_StaticFields, ___Empty_17)); } inline SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * get_Empty_17() const { return ___Empty_17; } inline SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 ** get_address_of_Empty_17() { return &___Empty_17; } inline void set_Empty_17(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * value) { ___Empty_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_17), (void*)value); } }; // System.Xml.Schema.SchemaAttDef // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_StaticFields { public: // System.Xml.Schema.SchemaElementDecl System.Xml.Schema.SchemaElementDecl::Empty SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * ___Empty_20; public: inline static int32_t get_offset_of_Empty_20() { return static_cast(offsetof(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_StaticFields, ___Empty_20)); } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * get_Empty_20() const { return ___Empty_20; } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B ** get_address_of_Empty_20() { return &___Empty_20; } inline void set_Empty_20(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * value) { ___Empty_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_20), (void*)value); } }; // System.Xml.Schema.SchemaElementDecl // System.Xml.Serialization.UnreferencedObjectEventHandler // System.Xml.Serialization.UnreferencedObjectEventHandler // System.Xml.Schema.ValidationEventHandler // System.Xml.Schema.ValidationEventHandler // System.Xml.Schema.XmlAnyConverter struct XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_StaticFields { public: // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlAnyConverter::Item XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___Item_32; // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlAnyConverter::AnyAtomic XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___AnyAtomic_33; public: inline static int32_t get_offset_of_Item_32() { return static_cast(offsetof(XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_StaticFields, ___Item_32)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_Item_32() const { return ___Item_32; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_Item_32() { return &___Item_32; } inline void set_Item_32(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___Item_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item_32), (void*)value); } inline static int32_t get_offset_of_AnyAtomic_33() { return static_cast(offsetof(XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_StaticFields, ___AnyAtomic_33)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_AnyAtomic_33() const { return ___AnyAtomic_33; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_AnyAtomic_33() { return &___AnyAtomic_33; } inline void set_AnyAtomic_33(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___AnyAtomic_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnyAtomic_33), (void*)value); } }; // System.Xml.Schema.XmlAnyConverter // System.Xml.XmlException // System.Xml.XmlException // System.Xml.Schema.XmlListConverter // System.Xml.Schema.XmlListConverter // System.Xml.Schema.XmlSchemaException // System.Xml.Schema.XmlSchemaException // System.Xml.Schema.XmlSchemaPatternFacet // System.Xml.Schema.XmlSchemaPatternFacet // System.Xml.Schema.XmlSchemaSimpleType // System.Xml.Schema.XmlSchemaSimpleType // System.Xml.Serialization.XmlTypeMapping // System.Xml.Serialization.XmlTypeMapping // System.Xml.SecureStringHasher/HashCodeOfStringDelegate // System.Xml.SecureStringHasher/HashCodeOfStringDelegate // System.ArgumentNullException // System.ArgumentNullException // System.OverflowException // System.OverflowException // System.Xml.Schema.XmlUntypedConverter struct XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields { public: // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlUntypedConverter::Untyped XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___Untyped_34; // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlUntypedConverter::UntypedList XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___UntypedList_35; public: inline static int32_t get_offset_of_Untyped_34() { return static_cast(offsetof(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields, ___Untyped_34)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_Untyped_34() const { return ___Untyped_34; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_Untyped_34() { return &___Untyped_34; } inline void set_Untyped_34(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___Untyped_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___Untyped_34), (void*)value); } inline static int32_t get_offset_of_UntypedList_35() { return static_cast(offsetof(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields, ___UntypedList_35)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_UntypedList_35() const { return ___UntypedList_35; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_UntypedList_35() { return &___UntypedList_35; } inline void set_UntypedList_35(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___UntypedList_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___UntypedList_35), (void*)value); } }; // System.Xml.Schema.XmlUntypedConverter #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Xml.Serialization.EnumMap/EnumMapMember[] struct EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868 : public RuntimeArray { public: ALIGN_FIELD (8) EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * m_Items[1]; public: inline EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 ** 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, EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: 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.Int64[] struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6 : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: 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_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: 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.Xml.Schema.BitSet[] struct BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD : public RuntimeArray { public: ALIGN_FIELD (8) BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * m_Items[1]; public: inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** 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, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Xml.NameTable/Entry[] struct EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * m_Items[1]; public: inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 ** 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, Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: 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.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: 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.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF : public RuntimeArray { public: ALIGN_FIELD (8) Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* m_Items[1]; public: inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** 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_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA m_Items[1]; public: inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } }; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * m_Items[1]; public: inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: 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); } }; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986 : public RuntimeArray { public: ALIGN_FIELD (8) XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 m_Items[1]; public: inline XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * 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, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___info_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_6), (void*)NULL); #endif } inline XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___info_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_6), (void*)NULL); #endif } }; IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_pinvoke(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_pinvoke_back(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke& marshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled); IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_pinvoke_cleanup(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_com(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com& marshaled); IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_com_back(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com& marshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled); IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_com_cleanup(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com& marshaled); // System.Void System.Collections.Generic.Stack`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_mD782ADAC3AB9809F63B681213A7A39784A9A169A_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Push(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m37749C6ED558EC2D89F38CF78C833D4EE8A2DF04_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Stack`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Pop_m9503124BACE0FDA402D22BC901708C5D99063C12_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m048C13E0F44BDC16F7CF01D14E918A84EE72C62C_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m830DC29CD6F7128D4990D460CCCDE032E3B693D9_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mCB81D2E16433EA0BB063264694162BD7E3DE1DA0_gshared (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * Dictionary_2_get_Values_mC8EC343FADAE6B9CB93639D7FBCDB19ACD807DB5_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator System.Collections.Generic.Dictionary`2/ValueCollection::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 ValueCollection_GetEnumerator_m401C0FF4E5F0194244B19D7B9EF4B173FB7E88C3_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA_gshared (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Push(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540_gshared (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED ___item0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Stack`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_gshared_inline (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B_gshared (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method); // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mAEBC9EBACD573E5D085888BEE7B319CE80E372B5_gshared (MemberInfo_t * ___element0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B_gshared (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2::get_Item(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A_gshared (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key0, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaAttDef::get_DefaultValueExpanded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_get_DefaultValueExpanded_m3DD4309DBF57E2E9C4C2EBA74EE54365C51A88C5 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::get_Datatype() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * SchemaDeclBase_get_Datatype_mA6244D69EB46EA7A09CDB3BD3370B49B89A47FD1_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.SchemaDeclBase::set_DefaultValueTyped(System.Object) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_DefaultValueTyped_mC5B1F78E7F6E018074AA8E7672C24E7C844E8A7A_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaDeclBase_get_Name_m87FD6E6D364B0F6E028FE4FE87AEFF71575E009E_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlSchemaException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6 (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method); // System.Void System.Xml.Schema.DtdValidator/NamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceManager__ctor_m5878388A545016DC48058A23E985AECBB1EE86CF (NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * __this, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.Int32 System.TimeSpan::Compare(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_Compare_m5EA8CA7658456409B695D2B87CCF151136538FA9 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t10, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t21, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.DurationFacetsChecker::MatchEnumeration(System.TimeSpan,System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DurationFacetsChecker_MatchEnumeration_m782B0F54BB42686A3652E3108B22B827605E1FBB (DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, const RuntimeMethod* method); // System.Void System.Xml.Schema.FacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, const RuntimeMethod* method); // System.String System.Xml.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3 (String_t* ___name0, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.ObjectMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMap__ctor_mF37BA5AFF032BFC18189BA4CD22381C4D19AE3B5 (ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_EnumName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_EnumName_m965ACAD881EB69B9802B5A2540C87FDEA1E320CC_inline (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_XmlName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_XmlName_m125CC3C0B9D3400A9FFF74B875F2D118D8A9A60C_inline (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method); // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t EnumMapMember_get_Value_m4D4D6D93420A7993C34F62257F08F2994EB8F69C_inline (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m76E962000488C3BEA2B6FC2F48B31FF1AEE32934 (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_CurrentCulture_m45CEB001D1509B8171C3557DD56C7521A0F5803E (const RuntimeMethod* method); // System.Int64[] System.Xml.Serialization.EnumMap::get_Values() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* EnumMap_get_Values_m69D39D8E631508EACA57983BDBC206880CA5DC9B_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method); // System.String[] System.Xml.Serialization.EnumMap::get_XmlNames() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.EnumMap::get_IsFlags() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EnumMap_get_IsFlags_m073ABB8B0D5CC0B35A29B63BE58E42E8377AE658_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlCustomFormatter::FromEnum(System.Int64,System.String[],System.Int64[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromEnum_m8749D34409F1C28F902F929A279F03BF7C84284E (int64_t ___value0, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values1, Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* ___ids2, String_t* ___typeName3, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m061EEC38D33A13CC1E98DBD6869E97A0C2989F88 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.String[] System.String::Split(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* String_Split_m2C74DC2B85B322998094BEDE787C378822E1F28B (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___separator0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.String[] System.Xml.Serialization.EnumMap::get_EnumNames() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* EnumMap_get_EnumNames_mEAE6B5575385C501E56FC1540F52D45D989DD396_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method); // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.Xml.Schema.FacetsChecker::CheckWhitespaceFacets(System.String&,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacetsChecker_CheckWhitespaceFacets_m5529819D0BFF09F083BAED53C1805ECC22E03101 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, String_t** ___s0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method); // System.Exception System.Xml.Schema.FacetsChecker::CheckPatternFacets(System.Xml.Schema.RestrictionFacets,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckPatternFacets_mC488D9F160CC92EA2A5CE5B94017FB7F9AFA4854 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * ___restriction0, String_t* ___value1, const RuntimeMethod* method); // System.String System.Xml.XmlComplianceUtil::NonCDataNormalize(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlComplianceUtil_NonCDataNormalize_m19F3DF529609C42EBB658048BF2F81EB54A0E991 (String_t* ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlComplianceUtil::CDataNormalize(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlComplianceUtil_CDataNormalize_mE5A000ED7A213C84A93606FF472BCC5961C33025 (String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___input0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_op_Implicit_mA83342DEE0725CF242454832BD0306090E80CCF9 (int32_t ___value0, const RuntimeMethod* method); // System.Void System.Decimal::.ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decimal__ctor_mB9DFF414FB23863B982F9D863D6E57867995C7F3 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * __this, int32_t ___lo0, int32_t ___mid1, int32_t ___hi2, bool ___isNegative3, uint8_t ___scale4, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Multiply(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_op_Multiply_mDA6E9440BFD19C66F0233BC6EF8C2E9633DAF56F (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Void System.Xml.IncrementalReadDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDecoder__ctor_m1FD169509E6AF91895E97ABC89B2575BE7E3F71D (IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() inline void Stack_1__ctor_mA968561DF990D7304E52EB03EAD5DB4D21D620D6 (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B *, const RuntimeMethod*))Stack_1__ctor_mD782ADAC3AB9809F63B681213A7A39784A9A169A_gshared)(__this, method); } // System.Void System.Collections.Generic.Stack`1::Push(!0) inline void Stack_1_Push_m9954EB178F71F876D5CC04E2B2D2A2CF2E511EA7 (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___item0, const RuntimeMethod* method) { (( void (*) (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B *, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *, const RuntimeMethod*))Stack_1_Push_m37749C6ED558EC2D89F38CF78C833D4EE8A2DF04_gshared)(__this, ___item0, method); } // System.Int32 System.Collections.Generic.Stack`1::get_Count() inline int32_t Stack_1_get_Count_mD1B493AD690EC374489F4BD30DACA1B208E8CB79_inline (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B *, const RuntimeMethod*))Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline)(__this, method); } // !0 System.Collections.Generic.Stack`1::Pop() inline InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * Stack_1_Pop_mE1E83DFD991F38A796542E364FBD8506D62B0329 (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * __this, const RuntimeMethod* method) { return (( InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * (*) (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B *, const RuntimeMethod*))Stack_1_Pop_m9503124BACE0FDA402D22BC901708C5D99063C12_gshared)(__this, method); } // System.Void System.Xml.Schema.SyntaxTreeNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyntaxTreeNode__ctor_m317889346E8C58842102DA39C8D783CCC2C098AD (SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.BitSet::Set(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitSet_Set_m537E6F3B227408BA917DD58BAE786DCD659E6F77 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Xml.LineInfo::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo__ctor_mF771D95D602072F0371C3C2B9024EE0B4605ED91 (LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method); // System.Void System.Xml.LineInfo::Set(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99 (LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method); // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapMember_GetValue_m4D9079E71F9B6B38B2FEB2FA9E181F0600A6985E (RuntimeObject * ___ob0, String_t* ___name1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Object System.Array::GetValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m6E4274D23FFD6089882CD12B2F2EA615206792E1 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method); // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Type System.Xml.Serialization.TypeData::get_Type() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsTextElement_mA0787B243D97A4CEDC943B679D10CE2C37944766 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mC8718EA35386A775C9A7983763DAA0A863623D73 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method); // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::get_MappedType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::get_ObjectMap() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * XmlMapping_get_ObjectMap_m7B06F5CA0492C1860E924B54F29D3ABF908F77C9_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.ListMap::GetArrayType(System.Int32,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_GetArrayType_m53CAAD15C4E292FF273B6FE3DC68B4CBA371F9FC (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, int32_t ___itemCount0, String_t** ___localName1, String_t** ___ns2, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlMapping::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.TypeData::get_XmlType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeNamespace_m873F8E6FE5227A791696AC43A260E0F47AAD5BCA (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Int32 System.Object::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_GetHashCode_m29972277898725CF5403FB9765F335F0FAEA8162 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlNameTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameTable__ctor_mB3D038C2C7617EC6321F39FEF5FE0B98100C1F22 (XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * __this, const RuntimeMethod* method); // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_mB050D9576FD146AEAA27125F6866EBB9B898BBC1 (const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Xml.NameTable::AddEntry(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_AddEntry_m16A7B739127C773E57A5DB1B8FA530A65B9CF249 (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, String_t* ___str0, int32_t ___hashCode1, const RuntimeMethod* method); // System.Boolean System.Xml.NameTable::TextEquals(System.String,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NameTable_TextEquals_mA66DACCA97D500F7FE6EE63DE5D1BE19A772C8F3 (String_t* ___str10, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___str21, int32_t ___str2Start2, int32_t ___str2Length3, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.Xml.NameTable/Entry::.ctor(System.String,System.Int32,System.Xml.NameTable/Entry) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_m81F1EF4CD01E86FB47FBBE7910E0D462408DA46A (Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * __this, String_t* ___str0, int32_t ___hashCode1, Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * ___next2, const RuntimeMethod* method); // System.Void System.Xml.NameTable::Grow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable_Grow_mFA0DDBFC07DC55BA7CC3CE4E5E28110A3610FAE7 (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91 (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, const RuntimeMethod* method); // System.String[] System.Xml.XmlConvert::SplitString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* XmlConvert_SplitString_m5EDBDD6AC9A11F521EF5FAD18E1F37CF023163F1 (String_t* ___value0, const RuntimeMethod* method); // System.Uri System.Xml.XmlConvert::ToUri(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * XmlConvert_ToUri_m70145E949FD362A0D446630B25B00B1D000786AE (String_t* ___s0, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m26BD2B620B5FBFA4376C16011C60E18A2EDC8E96 (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.String System.Xml.XmlQualifiedName::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m2693E9023068C90F95C47FDB5685F1563ECE0025_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method); // System.Collections.ICollection System.Xml.Schema.SymbolsDictionary::GetNamespaceListSymbols(System.Xml.Schema.NamespaceList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SymbolsDictionary_GetNamespaceListSymbols_mC58319A3C142FCFF7D7BC233CD93C6A173019B4D (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___list0, const RuntimeMethod* method); // System.Object System.Xml.Schema.SymbolsDictionary::GetParticle(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SymbolsDictionary_GetParticle_m9C9C3A7E25975924A53A4B497290AC6495AB5A0F (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, int32_t ___symbol0, const RuntimeMethod* method); // System.Void System.Xml.Schema.SymbolsDictionary::set_IsUpaEnforced(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SymbolsDictionary_set_IsUpaEnforced_mE9490686782C4AFB2146299CD8EECD5B061FADBE_inline (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, bool ___value0, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.Positions::Add(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Positions_Add_mEC7D6654760E4112DF78A37BE117A81C3352C6B6 (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, int32_t ___symbol0, RuntimeObject * ___particle1, const RuntimeMethod* method); // System.Void System.Xml.Schema.LeafNode::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeafNode__ctor_mB2913A5E0A097153A953EF35C4160512ECC4EB15 (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, int32_t ___pos0, const RuntimeMethod* method); // System.Void System.Xml.Schema.ChoiceNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChoiceNode__ctor_mA0FF108CA99E7EB7BCEC10203E05004938640FEF (ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.InteriorNode::set_LeftChild(System.Xml.Schema.SyntaxTreeNode) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___value0, const RuntimeMethod* method); // System.Void System.Xml.Schema.InteriorNode::set_RightChild(System.Xml.Schema.SyntaxTreeNode) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___value0, const RuntimeMethod* method); // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::get_LeftChild() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.ContentValidator::.ctor(System.Xml.Schema.XmlSchemaContentType,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentValidator__ctor_m70BBAD5BF4E84F43ABC115AE8F14B47F9C357435 (ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * __this, int32_t ___contentType0, bool ___isOpen1, bool ___isEmptiable2, const RuntimeMethod* method); // System.Boolean System.Decimal::op_GreaterThan(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_GreaterThan_m3998ECD90BE6477B2B42B8EB752E135B22287B9C (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Boolean System.Decimal::op_LessThan(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_LessThan_mF55B16B95231A45B3FB454651546B0F65037A632 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205 (const RuntimeMethod* method); // System.String System.Decimal::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Decimal_ToString_mCD1BF444FBBA99D53FBADBB834CBFBB857598C24 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlSchemaDatatype::get_TypeCodeString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSchemaDatatype_get_TypeCodeString_m5D03CB7A34F32BE3AE1B3F38AC28310575BFB332 (XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * __this, const RuntimeMethod* method); // System.String System.Xml.Res::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17 (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void System.OverflowException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Decimal::op_GreaterThanOrEqual(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_GreaterThanOrEqual_mAC84494A3A82D39A24D6B7A6BE615641BB36CCF3 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Boolean System.Decimal::op_LessThanOrEqual(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_LessThanOrEqual_m4971CE1EC4A71210D091525DD02CC53BC9CDAB1E (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.Numeric10FacetsChecker::MatchEnumeration(System.Decimal,System.Collections.ArrayList,System.Xml.Schema.XmlValueConverter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numeric10FacetsChecker_MatchEnumeration_m083615E23A96C3CD40C73B4FFF5FD15395890D80 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___valueConverter2, const RuntimeMethod* method); // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckTotalAndFractionDigits(System.Decimal,System.Int32,System.Int32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckTotalAndFractionDigits_m19E426DAC8B94548619BF63ED200DDA53F866F00 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, int32_t ___totalDigits1, int32_t ___fractionDigits2, bool ___checkTotal3, bool ___checkFraction4, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_op_Implicit_m0736049F15FA2C68B5EC46BDED5E98F82D475A56 (int64_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_op_Implicit_mD0B519FAA76412880A6F63633B69D54AECE82449 (int16_t ___value0, const RuntimeMethod* method); // System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Equality_m3BA6FDA0D51500320AC0928695C8CE9F833B0981 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Decimal System.Xml.Schema.FacetsChecker::Power(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 FacetsChecker_Power_m41F5CFF74595527227D387F10E408E988BE7B8E2 (int32_t ___x0, int32_t ___y1, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Subtraction(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_op_Subtraction_mC027AD26CF89DF646E486A25C59E71D1EAB43FAA (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Decimal System.Decimal::Negate(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_Negate_mCF18AB64ACB62384F7E9A89023470B315ECF2D76 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d0, const RuntimeMethod* method); // System.Void System.Decimal::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decimal__ctor_m3C20B602B540FD08434894065D20BDBA60FF79BC (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::Truncate(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Decimal_Truncate_m3DA6F823D24930958FCA4301A45A0BC09E0B24A6 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d0, const RuntimeMethod* method); // System.Boolean System.Decimal::op_Inequality(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Inequality_m3CD0E55B31634EE546947D4A0CB0F24B75146027 (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___d21, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.Numeric2FacetsChecker::MatchEnumeration(System.Double,System.Collections.ArrayList,System.Xml.Schema.XmlValueConverter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numeric2FacetsChecker_MatchEnumeration_m6FFA4E73536D4AC16674AEB2CD77F0A0D3C47CE4 (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, double ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___valueConverter2, const RuntimeMethod* method); // System.Void System.Xml.Schema.ParticleContentValidator::.ctor(System.Xml.Schema.XmlSchemaContentType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator__ctor_mFF55C49F124E558C01141456CAA7023C1A76D328 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, int32_t ___contentType0, bool ___enableUpaCheck1, const RuntimeMethod* method); // System.Void System.Xml.Schema.ContentValidator::.ctor(System.Xml.Schema.XmlSchemaContentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentValidator__ctor_m972153C21852C146EA8BB1E35015E7AFE0ACA400 (ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * __this, int32_t ___contentType0, const RuntimeMethod* method); // System.Void System.Xml.Schema.SymbolsDictionary::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary__ctor_mAED079A4E8AB0F4514D208514898D871EC72DF19 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.Positions::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Positions__ctor_m714DAA090730CD4CE65ED6EDD4B8673AF3415A9F (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, const RuntimeMethod* method); // System.Void System.Collections.Stack::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_m7B7EA279423863156F25A04362D9FE6C89FAFE70 (Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.SymbolsDictionary::Exists(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SymbolsDictionary_Exists_m155E44B30852DAA863AD77ACEA1A26E33BCC5849 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SymbolsDictionary::AddName(System.Xml.XmlQualifiedName,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SymbolsDictionary_AddName_mF1E4BAA09330850B9A71DB01910BB4B4672C3EF1 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, RuntimeObject * ___particle1, const RuntimeMethod* method); // System.Void System.Xml.Schema.ParticleContentValidator::AddLeafNode(System.Xml.Schema.SyntaxTreeNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddLeafNode_m1112C83E162029FBC1C926D99E9AE613C59162AC (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___node0, const RuntimeMethod* method); // System.Void System.Xml.Schema.SymbolsDictionary::AddNamespaceList(System.Xml.Schema.NamespaceList,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary_AddNamespaceList_m1F58093AA405FD4FEB04B4B14230D9197050F1CA (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___list0, RuntimeObject * ___particle1, bool ___allowLocal2, const RuntimeMethod* method); // System.Void System.Xml.Schema.NamespaceListNode::.ctor(System.Xml.Schema.NamespaceList,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceListNode__ctor_m440B6F48BB5C47F8FF2CAEFDC5B2FC17579B72FA (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___namespaceList0, RuntimeObject * ___particle1, const RuntimeMethod* method); // System.Void System.Xml.Schema.SequenceNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceNode__ctor_mB5DF9B11AE58300BE3B457BA36E79F8AB635D8F2 (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.StarNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StarNode__ctor_mF305B4DE3DE9504E4D4B0C132350AD2917FA67B4 (StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.ParticleContentValidator::Closure(System.Xml.Schema.InteriorNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_Closure_mC02722EC7DC8B99F076DAC32DC43704156D87E92 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___node0, const RuntimeMethod* method); // System.Void System.Xml.Schema.PlusNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlusNode__ctor_m8842D4AF6D999A5A62BF512ACD52718CF10B1930 (PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.QmarkNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QmarkNode__ctor_m84C424AEB93C7854333A5928A67C09C9BACA6C26 (QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 * __this, const RuntimeMethod* method); // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::get_RightChild() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.ContentValidator::get_ContentType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ContentValidator_get_ContentType_m3F213D76D16E71F3524464E82BA2D6E6807B1DB6_inline (ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.ContentValidator::get_IsOpen() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContentValidator_get_IsOpen_m5FB7F989F339D5D84EB296766D73FB6D64198F53 (ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SymbolsDictionary::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SymbolsDictionary_get_Count_mAE31651169418765C4F54B7B3746AB2016B9077C (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.Positions::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8 (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.BitSet::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, int32_t ___count0, const RuntimeMethod* method); // System.Xml.Schema.BitSet[] System.Xml.Schema.ParticleContentValidator::CalculateTotalFollowposForRangeNodes(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Xml.Schema.BitSet&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ParticleContentValidator_CalculateTotalFollowposForRangeNodes_mB5CD62FE0663A05A2F3C7EDEC3ED7B5ACEBAAAC1 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** ___posWithRangeTerminals2, const RuntimeMethod* method); // System.Xml.Schema.BitSet System.Xml.Schema.ParticleContentValidator::GetApplicableMinMaxFollowPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ParticleContentValidator_GetApplicableMinMaxFollowPos_m0E6FAFE2FF50F19E3AB0926EA018E6A792DB1D3B (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___posWithRangeTerminals1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___minmaxFollowPos2, const RuntimeMethod* method); // System.Void System.Xml.Schema.ParticleContentValidator::CheckCMUPAWithLeafRangeNodes(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CheckCMUPAWithLeafRangeNodes_m57640135F9E9E950375B988EC29737A882B3276E (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos0, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.LeafNode::get_Pos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.RangeContentValidator::.ctor(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions,System.Int32,System.Xml.Schema.XmlSchemaContentType,System.Boolean,System.Xml.Schema.BitSet,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeContentValidator__ctor_mF49D45F7C208508F8A648DFE1BA00AA3DC9E7261 (RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols2, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions3, int32_t ___endMarkerPos4, int32_t ___contentType5, bool ___isEmptiable6, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___positionsWithRangeTerminals7, int32_t ___minmaxNodesCount8, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.SymbolsDictionary::get_IsUpaEnforced() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SymbolsDictionary_get_IsUpaEnforced_mF1CB53D944864D03F27D99ED7EB9F6F3012B28C2_inline (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.ParticleContentValidator::CheckUniqueParticleAttribution(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CheckUniqueParticleAttribution_m20D1BC069D23A2FB347CE62A49B0B545B05A5357 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, const RuntimeMethod* method); // System.Int32[][] System.Xml.Schema.ParticleContentValidator::BuildTransitionTable(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ParticleContentValidator_BuildTransitionTable_m6B384EC2BC803DD3C4D335740807ABE5DFDE766C (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, int32_t ___endMarkerPos2, const RuntimeMethod* method); // System.Void System.Xml.Schema.DfaContentValidator::.ctor(System.Int32[][],System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.XmlSchemaContentType,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DfaContentValidator__ctor_mF130EA6E741D96E57DAAA298A31051ADF7608C12 (DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73 * __this, Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ___transitionTable0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, int32_t ___contentType2, bool ___isOpen3, bool ___isEmptiable4, const RuntimeMethod* method); // System.Void System.Xml.Schema.NfaContentValidator::.ctor(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions,System.Int32,System.Xml.Schema.XmlSchemaContentType,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NfaContentValidator__ctor_m507762DC326C895250C7D66F3D021A51B80985FA (NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols2, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions3, int32_t ___endMarkerPos4, int32_t ___contentType5, bool ___isOpen6, bool ___isEmptiable7, const RuntimeMethod* method); // System.Xml.Schema.Position System.Xml.Schema.Positions::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7 (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, int32_t ___pos0, const RuntimeMethod* method); // System.Void System.Xml.Schema.BitSet::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitSet_Clear_mDEB2E185167940AF35FED9A5788A53554A061DE9 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.BitSet::Or(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___other0, const RuntimeMethod* method); // System.Decimal System.Xml.Schema.LeafRangeNode::get_Min() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 LeafRangeNode_get_Min_m9ACB52885522383A21EB6FB7116DB9CC618531D6_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method); // System.Decimal System.Xml.Schema.LeafRangeNode::get_Max() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 LeafRangeNode_get_Max_m6A46C79DF4AE663EAC3FF0C57F34D08A24258A95_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method); // System.Xml.Schema.BitSet System.Xml.Schema.LeafRangeNode::get_NextIteration() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * LeafRangeNode_get_NextIteration_m4913B769997A91093E84E01B29E836E6F5C7C601_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.BitSet::NextSet(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, int32_t ___startFrom0, const RuntimeMethod* method); // System.Void System.Xml.Schema.LeafNode::set_Pos(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LeafNode_set_Pos_m3FE6DE6E690AFE747A6898DD4C6FBD5B1B8C3B0E_inline (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Xml.Schema.UpaException::.ctor(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpaException__ctor_m8477F8F2C92D245269451AC32F07043BB741B937 (UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA * __this, RuntimeObject * ___particle10, RuntimeObject * ___particle21, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.BitSet::Intersects(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitSet_Intersects_mE58DAE3469C94CC56347E78DA0042E65A6F74DD7 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___other0, const RuntimeMethod* method); // System.Void System.Xml.Schema.BitSet::And(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitSet_And_m0EF78E42083185D739F209094F2116E8B22B7C30 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___other0, const RuntimeMethod* method); // System.Xml.Schema.BitSet System.Xml.Schema.BitSet::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * BitSet_Clone_m42F3015E96CD274C9938B5B8F1E6AA8661EBF603 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.ParticleContentValidator::CheckUniqueParticleAttribution(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CheckUniqueParticleAttribution_m6C017664467EEE3561D4703FFAF0C2519A94D752 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos0, const RuntimeMethod* method); // System.Void System.Collections.ArrayList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * __this, const RuntimeMethod* method); // System.Void System.Collections.Queue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_m9844D111CC69802C62565C05109A2557FD21C127 (Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.BitSet::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitSet_get_Item_m2695BC4DFBA9F8E1517F7F5D344C5FE012EC29E4 (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Xml.Schema.InteriorNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode__ctor_mE9F860A667BE626F44260612EC983CBDBD16B658 (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.Position::.ctor(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Position__ctor_m3F6A5C351510265E5FCE79C95B2F4CF15BB21F35 (Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 * __this, int32_t ___symbol0, RuntimeObject * ___particle1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.QNameFacetsChecker::MatchEnumeration(System.Xml.XmlQualifiedName,System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QNameFacetsChecker_MatchEnumeration_m7C4FF6FCC7D85863C1F7065DF07469C8C2E3E1CD (QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1 (Type_t * __this, const RuntimeMethod* method); // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * Type_GetConstructor_m7D94831F070BECE7BECDAEAFB024981CCC4E03CE (Type_t * __this, int32_t ___bindingAttr0, Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___binder1, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types2, ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___modifiers3, const RuntimeMethod* method); // System.Boolean System.Reflection.ConstructorInfo::op_Equality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Equality_m2876ADED3E727EB3BDDD1A684244D91F5CA5D7E2 (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___left0, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___right1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsAbstract() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsAbstract_mB16DB56FCABF55740019D32C5286F38E30CAA19F (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m9CCCB4759C2D5A890096F8DBA66DAAEFE9D913FB (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsInterface() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_mB10C34DEE8B22E1597C813211BBED17DD724FC07 (Type_t * __this, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84 (Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.TypeData::get_IsListType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsListType_m3CBCB6B25D4337E243E39B514ACF19144C4A6E82 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPublic_mE4BAD3A9E7F21231E4A579F7CF8F2DE4C5E8E0AC (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsNestedPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNestedPublic_m699F4C8E5B0FEE0197BE12CD1A4143421B51E820 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.String SR::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m6DA3B70351EEFBA3AF7BCE2B3352E940378A7EFB (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mB079B88E05EF69AE52AEB90445C154D12107097C (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, String_t* ___name1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51 (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.Void System.Text.Decoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decoder__ctor_m2EA154371203FAAE1CD0477C828E0B39B2091DF3 (Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.SchemaDeclBase::.ctor(System.Xml.XmlQualifiedName,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase__ctor_m1BC436E9668EED05F54E492D437DA46C34A551D8 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, String_t* ___prefix1, const RuntimeMethod* method); // System.Void System.Xml.Schema.SchemaDeclBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase__ctor_m1635E4DACD551DC1FA3CA6B426B8E2E78627F28F (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaDeclBase::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_Prefix_mF758E713FDA809839D669B6E429AA694EF4588EB (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.String System.Xml.XmlQualifiedName::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SchemaAttDef::get_LineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LineNumber_m59313EBBBEB7825F74471D37390A359200BE323F_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SchemaAttDef::get_LinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m319A452C4316D5428A237EE28BA0345D96D16D4D_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Xml.XmlTokenizedType System.Xml.Schema.SchemaAttDef::get_TokenizedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_TokenizedType_mFB396F9F1E6D2FCBE5190C46CCAD49AC4FFA1A67 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.SchemaDeclBase::get_IsDeclaredInExternal() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaDeclBase_get_IsDeclaredInExternal_m1B7033680C64843BC8F62EAE9B47B7FC521E4F2E_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.Xml.Schema.SchemaAttDef/Reserve System.Xml.Schema.SchemaAttDef::get_Reserved() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_Reserved_mB2889E74F8D76DB2B9BF6DA7F6280058AE1C4E67_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Object System.Xml.Schema.SchemaDeclBase::get_DefaultValueTyped() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * SchemaDeclBase_get_DefaultValueTyped_m181BCA469B286D8325144D11547D51F3BC2BA10F_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SchemaAttDef::get_ValueLineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLineNumber_m4D2187BB1AA525C3FEA4D4131BF143B7569860BA_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SchemaAttDef::get_ValueLinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLinePosition_m5392A796775EB83D96511989ECCF49A14EF4C064_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaDatatype::FromXmlTokenizedType(System.Xml.XmlTokenizedType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * XmlSchemaDatatype_FromXmlTokenizedType_mD42B4C7CB2F568D5495A41A29C04FC9AAEC631CD (int32_t ___token0, const RuntimeMethod* method); // System.Void System.Xml.Schema.SchemaDeclBase::set_Datatype(System.Xml.Schema.XmlSchemaDatatype) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_Datatype_m967CABF00F6B33B2EABB6522EBBBC92101F5CC74_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___value0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline String_t* List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Void System.Xml.Schema.SchemaAttDef::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef__ctor_m40A902B1FF7D8A59AC8FF7380C53C78E2C72585B (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, String_t* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, String_t*, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2 (Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Xml.Schema.SchemaElementDecl::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl__ctor_mA3FA92EB85ADEBDC562D26730031FBC6738AB1A1 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::get_AnySimpleType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * DatatypeImplementation_get_AnySimpleType_m5D4C0C5826765D6BED48F248225E26AB5CCEF072_inline (const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::get_Datatype() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline (XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlQualifiedName::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m1A19E27B7945587EBC7FF67CF33F4920D28C4E70 (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34 (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___key0, SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *, SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m048C13E0F44BDC16F7CF01D14E918A84EE72C62C_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) inline void Dictionary_2_Add_mBB79F63412D4B66F04533EE48909A593F7E11EB2 (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___key0, SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *, SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 *, const RuntimeMethod*))Dictionary_2_Add_m830DC29CD6F7128D4990D460CCCDE032E3B693D9_gshared)(__this, ___key0, ___value1, method); } // System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::get_Presence() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mAB5F7D0019E8BE4E5C283771D17AE3E102AABAC8 (List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m550B08E5B1CAC2F05E719BDB5A748EC580C826F9 (List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * __this, RuntimeObject* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 *, RuntimeObject*, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaEntity_get_Name_mB20AA73F025F99A004B20738C773CEB8D40B7EBA_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.SchemaEntity::get_IsExternal() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_IsExternal_m2C672737BDD910497BE4AF4E25B25F4797A04A03_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.SchemaEntity::get_DeclaredInExternal() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_DeclaredInExternal_m7FB26DC9D3A1B1B4671FFD0F755B32E087F0663C_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_NData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaEntity_get_NData_mFA6084E09F48F115394AEDF935A40D43F59EA9FC_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlQualifiedName::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_get_IsEmpty_m694779833F49A6E81D29F112E3D39483A5967F93 (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaEntity::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_BaseURI_m001F210A7C143F147C7C46CD567BE605B84B2F17 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaEntity::get_DeclaredURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_DeclaredURI_m0E6729CDB1F1FBD637A9F2F951C60895AF8C94A3 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaEntity::get_Url() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m5A96254918F00575C76A5CC66B5D23D15D77EF98_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaEntity::get_Pubid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_mFC308D0C87C3A88CB67A813B56F97F538749E786_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.SchemaEntity::get_Text() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mBDDEA973537098FDCC625FC2349A5D6A2092718D_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SchemaEntity::get_Line() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaEntity_get_Line_m4C57C78532808085D0F9FE1B5B98F2E846B8F470_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.SchemaEntity::get_Pos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaEntity_get_Pos_m1F95043C9862F14827166F191BB24BF958F96B2B_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m7B1612DAAC58ADB707313836D78A8FB4556FEBC0 (Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C *, const RuntimeMethod*))Dictionary_2__ctor_mCB81D2E16433EA0BB063264694162BD7E3DE1DA0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226 (Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m467FD97D8B6FDB9657193242324FDAFA10AFAB97 (Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::get_Values() inline ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * Dictionary_2_get_Values_m985AB63BF8F899A5F0AD7E446613C7201502F386 (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * __this, const RuntimeMethod* method) { return (( ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * (*) (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 *, const RuntimeMethod*))Dictionary_2_get_Values_mC8EC343FADAE6B9CB93639D7FBCDB19ACD807DB5_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator System.Collections.Generic.Dictionary`2/ValueCollection::GetEnumerator() inline Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 ValueCollection_GetEnumerator_m0035310347EE2F2EF4A5D45CD824E62672619E57 (ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * __this, const RuntimeMethod* method) { return (( Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 (*) (ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D *, const RuntimeMethod*))ValueCollection_GetEnumerator_m401C0FF4E5F0194244B19D7B9EF4B173FB7E88C3_gshared)(__this, method); } // !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::get_Current() inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * Enumerator_get_Current_m6449672B64AE061714A6FA02374FDB83698F77C4_inline (Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 * __this, const RuntimeMethod* method) { return (( SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * (*) (Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 *, const RuntimeMethod*))Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline)(__this, method); } // System.Boolean System.Xml.Schema.SchemaElementDecl::get_HasNonCDataAttribute() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_HasNonCDataAttribute_mE84C8BBD8FF4C1EFDC66C8C8107229739354F31E_inline (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method); // System.Collections.Generic.IList`1 System.Xml.Schema.SchemaElementDecl::get_DefaultAttDefs() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SchemaElementDecl_get_DefaultAttDefs_m6CCC6299DE4592CE8D2C66CB559179AF478CAD22_inline (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::MoveNext() inline bool Enumerator_MoveNext_mF539B3DCF94C4A0F31CEAD36C1E5524F637761FA (Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 *, const RuntimeMethod*))Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::Dispose() inline void Enumerator_Dispose_mAF5AC8910C4D76BA22A0AF4C6B770B9F7DB161BF (Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 *, const RuntimeMethod*))Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286 (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___key0, SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 *, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *, SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B **, const RuntimeMethod*))Dictionary_2_TryGetValue_m048C13E0F44BDC16F7CF01D14E918A84EE72C62C_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Xml.XmlQualifiedName::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m73A954A83BC208D5CA3B1F1D328DDF6C29453E79 (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m66AE94E1BCD78D097CABE71BEF584B1F8F5C549C (Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___key0, SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 *, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *, SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E **, const RuntimeMethod*))Dictionary_2_TryGetValue_m048C13E0F44BDC16F7CF01D14E918A84EE72C62C_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.String::Equals(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mEE55908E87109DB4E5D5A05245332FB2A270F258 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::GetHashCodeDelegate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * SecureStringHasher_GetHashCodeDelegate_m0E7DFFE978AB0576F56401B670470AA6DA986D1A (const RuntimeMethod* method); // System.Int32 System.Xml.SecureStringHasher/HashCodeOfStringDelegate::Invoke(System.String,System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_Invoke_m29101897DFC3FF4CEC6E0F148E1E879463DA2F9D (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m2DDEF37DF33D28F579BA8E03F4376B67D91F0DEB (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_CreateDelegate_mFC46DEA52542B51D94BB899B68FD599295A4753A (Type_t * ___type0, MethodInfo_t * ___method1, const RuntimeMethod* method); // System.Void System.Xml.SecureStringHasher/HashCodeOfStringDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashCodeOfStringDelegate__ctor_m47EFBAB22CC6E0C04A17B8DA7101906596143BE8 (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() inline void Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 *, const RuntimeMethod*))Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA_gshared)(__this, method); } // System.Void System.Xml.Schema.SequenceNode/SequenceConstructPosContext::.ctor(System.Xml.Schema.SequenceNode,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3 (SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED * __this, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___node0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos1, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos2, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.BitSet::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitSet_get_Count_mB16C29ACC198DD2C13E9F98E88D87044CC717165_inline (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Push(!0) inline void Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540 (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED ___item0, const RuntimeMethod* method) { (( void (*) (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 *, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED , const RuntimeMethod*))Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540_gshared)(__this, ___item0, method); } // System.Void System.Xml.Schema.LeafRangeNode::set_NextIteration(System.Xml.Schema.BitSet) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LeafRangeNode_set_NextIteration_mA4BC4E01B8F5722FD0C158D90FAD54A3D47E8485_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___value0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Stack`1::get_Count() inline int32_t Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_inline (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 *, const RuntimeMethod*))Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_gshared_inline)(__this, method); } // !0 System.Collections.Generic.Stack`1::Pop() inline SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method) { return (( SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED (*) (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 *, const RuntimeMethod*))Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B_gshared)(__this, method); } // System.Void System.Xml.Schema.InteriorNode::ExpandTreeNoRecursive(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode_ExpandTreeNoRecursive_mED7122A2FEA563CA2585C60B43FB8FF3D94C63DB (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___parent0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m5BA9C047FEB3C93AD388668FA855CB1A63FB62A4 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___pattern0, int32_t ___options1, const RuntimeMethod* method); // System.Exception System.Xml.Schema.StringFacetsChecker::CheckValueFacets(System.String,System.Xml.Schema.XmlSchemaDatatype,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * StringFacetsChecker_CheckValueFacets_mB5FF71E1F6453E067F229E7EE2DD493B0B82A1D8 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, bool ___verifyUri2, const RuntimeMethod* method); // System.Exception System.Xml.Schema.StringFacetsChecker::CheckBuiltInFacets(System.String,System.Xml.Schema.XmlTypeCode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * StringFacetsChecker_CheckBuiltInFacets_m54AD01DAEAF9825F4AE175BCA0F8CD9A9E998532 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___s0, int32_t ___typeCode1, bool ___verifyUri2, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.StringFacetsChecker::MatchEnumeration(System.String,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringFacetsChecker_MatchEnumeration_m63B38C355EEF1109B63CC9488563AB77EBB61FD6 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method); // System.String System.Uri::get_OriginalString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Exception System.Xml.XmlConvert::TryToUri(System.String,System.Uri&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlConvert_TryToUri_mD7E429CB7202C89D8F917ED998A045902CE3A176 (String_t* ___s0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** ___result1, const RuntimeMethod* method); // System.Exception System.Xml.XmlConvert::TryVerifyNormalizedString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlConvert_TryVerifyNormalizedString_m492AF54C02E50C7552399F7223B8D9466ECF9C6D (String_t* ___str0, const RuntimeMethod* method); // System.Exception System.Xml.XmlConvert::TryVerifyTOKEN(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlConvert_TryVerifyTOKEN_m3A6BFBF99AA787B5931C9487550FCAD9EB05EF57 (String_t* ___token0, const RuntimeMethod* method); // System.Text.RegularExpressions.Regex System.Xml.Schema.StringFacetsChecker::get_LanguagePattern() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * StringFacetsChecker_get_LanguagePattern_m52AFFA7466AF676D0C4546F149FA888C491D0575 (const RuntimeMethod* method); // System.Exception System.Xml.XmlConvert::TryVerifyNMTOKEN(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlConvert_TryVerifyNMTOKEN_m14194667D3FD2EBD6F16546531F642E0346F1269 (String_t* ___name0, const RuntimeMethod* method); // System.Exception System.Xml.XmlConvert::TryVerifyName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlConvert_TryVerifyName_m225B9175D4907C76E2A37FE4089BA81F96793996 (String_t* ___name0, const RuntimeMethod* method); // System.Exception System.Xml.XmlConvert::TryVerifyNCName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlConvert_TryVerifyNCName_mB87CFCB56E5EA6690D94F7A071E46F912114FC7B (String_t* ___name0, const RuntimeMethod* method); // System.Xml.Schema.NamespaceList/ListType System.Xml.Schema.NamespaceList::get_Type() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NamespaceList_get_Type_m9B28FA8BE57D9748D681F8239C80B348F0A8FF02_inline (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method); // System.String System.Xml.Schema.NamespaceList::get_Excluded() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NamespaceList_get_Excluded_mF6AFE63E06E2842A9F193A6A3BC7F7C34B436A33_inline (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.SymbolsDictionary::AddWildcard(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary_AddWildcard_m0FF60AB58E25920113147E5D108D30A158D016EB (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, String_t* ___wildcard0, RuntimeObject * ___particle1, const RuntimeMethod* method); // System.Collections.ICollection System.Xml.Schema.NamespaceList::get_Enumerate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NamespaceList_get_Enumerate_m287DD831CF2AE5099998D22EFCEA6769A9D546B9 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlQualifiedName::op_Inequality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_op_Inequality_m41E46D4716F1168DF9152C551CD2F79231750271 (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___a0, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___b1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.NamespaceList::Allows(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NamespaceList_Allows_m1C718062930547A9C254F07C63A8F034B6B2A29E (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname0, const RuntimeMethod* method); // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean,System.Xml.Serialization.TypeData,System.Xml.Schema.XmlSchemaPatternFacet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___mappedType3, XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * ___facet4, const RuntimeMethod* method); // System.String System.String::Replace(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_mD912844A1141FE8771F55255C4A8D29C80C47618 (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeData_get_ListItemTypeData_m0FA3A62DFB823ECD4B3DA4987FD66C54789ABDD6 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.TypeTranslator::GetArrayName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeTranslator_GetArrayName_mC21C9EA401D0CD4F6BA9EAAA0E10FD99C5B5AA04 (String_t* ___elemName0, const RuntimeMethod* method); // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * Type_GetConstructor_m98D609FCFA8EB6E54A9FF705D77EEE16603B278C (Type_t * __this, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types0, const RuntimeMethod* method); // System.Boolean System.Reflection.ConstructorInfo::op_Inequality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Inequality_mC30EF7D429ABB517BDDB4FAE9CA1E0652DABBDC9 (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___left0, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___right1, const RuntimeMethod* method); // System.Void System.Xml.Serialization.TypeData::LookupTypeConvertor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_LookupTypeConvertor_m04EFD6ED52010C33848AFFAFEECD370AA72CC91F (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.MemberInfo) inline XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * CustomAttributeExtensions_GetCustomAttribute_TisXmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_m9A984C5391F697D8144A8A48173F577E765E977D (MemberInfo_t * ___element0, const RuntimeMethod* method) { return (( XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * (*) (MemberInfo_t *, const RuntimeMethod*))CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mAEBC9EBACD573E5D085888BEE7B319CE80E372B5_gshared)(___element0, method); } // System.String System.Xml.Serialization.XmlTypeConvertorAttribute::get_Method() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeConvertorAttribute_get_Method_mE95367532E96E4E4709DEFE87C3DA2985255BCED_inline (XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * __this, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___parameters1, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.TypeData::get_IsXsdType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsXsdType_m75389176FE4780C65C3EDC58960C62E52A51CD08 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.TypeData::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsValueType_m859872378938A6201F2AAB9A905069D0BCB564FC (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Type System.Xml.Serialization.TypeData::get_ListItemType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Type System.Xml.Serialization.TypeData::GetGenericListItemType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeData_GetGenericListItemType_m6C2943E5118DD1ACAD59F7C46B413963E677486B (Type_t * ___type0, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m65D1D384B19FD8F7BD8BC71EE2B75E00488853DB (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Reflection.PropertyInfo System.Xml.Serialization.TypeData::GetIndexerProperty(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * TypeData_GetIndexerProperty_m632F33926F505B429015D6FBD243BD289F7D163E (Type_t * ___collectionType0, const RuntimeMethod* method); // System.Boolean System.Reflection.PropertyInfo::op_Equality(System.Reflection.PropertyInfo,System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyInfo_op_Equality_mA31D091F79905A0F888F66DE48E56805F4DB12E2 (PropertyInfo_t * ___left0, PropertyInfo_t * ___right1, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E (Type_t * __this, String_t* ___name0, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m0716EB8EAA86F91031CF1C0B5E5D4B0269AC6A08 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.InvalidOperationException System.Xml.Serialization.TypeData::CreateMissingAddMethodException(System.Type,System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * TypeData_CreateMissingAddMethodException_m85C3EFA7166AD60E58D4D4D15B4837C6528E014E (Type_t * ___type0, String_t* ___inheritFrom1, Type_t * ___argumentType2, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m69EE86B5A87244C925333CCF1B6D6B9BCFED8A89 (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___binder2, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types3, ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___modifiers4, const RuntimeMethod* method); // System.Reflection.PropertyInfo System.Type::GetProperty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_mF9677E24A43BADE21DE5E45E0BD0CB881BAB4C89 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA3BB834FA13052393D767E65AD6AA9F5895106B8 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, RuntimeObject * ___arg24, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.TypeMember::Equals(System.Xml.Serialization.TypeMember,System.Xml.Serialization.TypeMember) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeMember_Equals_m0FFF810E5A6F5BE0F1D5122C993E2908681D5480 (TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * ___tm10, TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * ___tm21, const RuntimeMethod* method); // System.Collections.Hashtable System.Collections.Hashtable::Synchronized(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * Hashtable_Synchronized_m57834C6DB52C04CAC03792622B42881B15BB77A9 (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___table0, const RuntimeMethod* method); // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlSchemaPatternFacet::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaPatternFacet__ctor_mE3A39F905BEBF1A514928F79E7949FE737D453BF (XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlSchemaFacet::set_Value(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaFacet_set_Value_mF3322B22AE16FC04F69EE0FD145B95D806B1F7F0_inline (XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F * __this, String_t* ___value0, const RuntimeMethod* method); // System.Object System.Collections.DictionaryEntry::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.TypeData::set_IsNullable(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, bool ___value0, const RuntimeMethod* method); // System.Object System.Collections.DictionaryEntry::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetTypeData_m34ECB131DF1502AA0C92FEFCDBB86D0192F486C2 (Type_t * ___runtimeType0, String_t* ___xmlDataType1, bool ___underlyingEnumType2, const RuntimeMethod* method); // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m380C0D0D93A7161EAB25F84B68BF263693C9361B (Type_t * ___enumType0, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetPrimitiveTypeData_m9714FB6747FA5A512BC4AAD4AC62F3173455DC7F (String_t* ___typeName0, const RuntimeMethod* method); // System.String System.String::Concat(System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mCA053C6F9F80091150799BA7B4EDE7E4A3262E77 (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::EncodeLocalName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_EncodeLocalName_m4E9F61061594C6D2D4BF25AF107C7208C0E6AD2E (String_t* ___name0, const RuntimeMethod* method); // System.String System.Xml.Serialization.CodeIdentifier::MakePascal(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CodeIdentifier_MakePascal_m6D1153E6F5123974F96BAE4DBE08B3942142013E (String_t* ___identifier0, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetPrimitiveTypeData_mC96665826943DFE7C0E86BF37FD8AE2AF6FDFA39 (String_t* ___typeName0, bool ___nullable1, const RuntimeMethod* method); // System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_mD923BBB6358B8F00DA930B66E3E90DC74D6EF8E3 (Il2CppChar ___c0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method); // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8 (Il2CppChar* __this, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.Int32 System.String::LastIndexOf(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m80AFBEF2F3857F9D6A67126F4C4D9A9B9CEC5902 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m9037DBF7895B78147B9F5931DA0AA9D2CBD8C3F0 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, 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_mF4642D7BB69FA7570F69E323F4597A2166065612 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Decoder::Ucs4ToUTF16(System.UInt32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder_Ucs4ToUTF16_m9DBB1B66CD71FA059BA01DDD51C58286E4922AB8 (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, uint32_t ___code0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars1, int32_t ___charIndex2, const RuntimeMethod* method); // System.Boolean System.Xml.XmlCharType::IsSurrogate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsSurrogate_mB6D0E39FCA4F99B3CE602DC06A45C4C781178F26 (int32_t ___ch0, const RuntimeMethod* method); // System.Void System.Xml.XmlException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9 (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Decoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder__ctor_mB9136F3F542FBADADED61B63DBEAD7C3E08BAEBA (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Encoding4321::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding4321__ctor_m6FE9E4158C582ECCD83190F4A145271F267E06E7 (Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Encoding1234::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding1234__ctor_m1BBE17B53C80BE7658946E89FFBE0BBBF1BA9245 (Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Encoding2143::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding2143__ctor_m97C45FB12823AE9078895D277C417066A25C1E04 (Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Encoding3412::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding3412__ctor_m0BDB645EB5718ACFBDB14F2F856FF1D16CE4557B (Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 * __this, const RuntimeMethod* method); // System.Void System.Text.Encoding::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding__ctor_m15FCA8A670950CE09DEEC683791C856E8EA28980 (Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Encoding::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding__ctor_mEE2AB2DF497A7DAD0FFA297473707E4844C2E221 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Decoder1234::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder1234__ctor_m892D84F747B69F6A4CCA23AF167C1DACEAB2FCD2 (Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Decoder2143::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder2143__ctor_mCBC9B33A129D6A6AFFCDE7CD1D259124693C677D (Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098 * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Decoder3412::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder3412__ctor_mC07067ED582F180F43F8ADD007CE2295B387D24E (Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928 * __this, const RuntimeMethod* method); // System.Void System.Xml.Ucs4Decoder4321::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder4321__ctor_mDFBC3853402070B4F3914FC81F3AB814FCECF309 (Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2 * __this, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571 (EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * __this, const RuntimeMethod* method); // System.Void System.Exception::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m0E9BEC861F6DBED197960E5BA23149543B1D7F5B (Exception_t * __this, const RuntimeMethod* method); // System.Int32 System.Xml.ValidateNames::ParseNameNoNamespaces(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNameNoNamespaces_m9D3AED48588283CC6996A861181D3933686918E6 (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method); // System.Int32 System.Xml.ValidateNames::ParseNCName(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNCName_mC48FCF5C2E90A26596C3EED8EEF0055540A8EBF8 (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method); // System.Int32 System.Xml.ValidateNames::ParseQName(System.String,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseQName_m0011D90B5122AE9FD6F5F651E118B7BDDD2C46BE (String_t* ___s0, int32_t ___offset1, int32_t* ___colonOffset2, const RuntimeMethod* method); // System.Void System.Xml.ValidateNames::ThrowInvalidName(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D (String_t* ___s0, int32_t ___offsetStartChar1, int32_t ___offsetBadChar2, const RuntimeMethod* method); // System.Boolean System.Xml.XmlCharType::IsNCNameSingleChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsNCNameSingleChar_m9CF3C8BE667CEB1DEDFB30047D4A169356C2423E (XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * __this, Il2CppChar ___ch0, const RuntimeMethod* method); // System.Xml.XmlCharType System.Xml.XmlCharType::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA XmlCharType_get_Instance_mEF3C732F10BE7095CF1A5B7A4CD44D9553184DEB (const RuntimeMethod* method); // System.Boolean System.Xml.XmlCharType::IsStartNCNameSingleChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsStartNCNameSingleChar_mD01A1F5180852CB6C7331B880F0A41655967C450 (XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * __this, Il2CppChar ___ch0, const RuntimeMethod* method); // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* XmlException_BuildCharExceptionArgs_m6B1DE4874CB2E413D1DE40B49205BB5EFB34642A (String_t* ___data0, int32_t ___invCharIndex1, const RuntimeMethod* method); // System.Void System.Xml.XmlException::.ctor(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m774540F83B81D877D8C30183EA2D2F4A76427058 (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * __this, String_t* ___res0, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___args1, const RuntimeMethod* method); // System.Void MS.Internal.Xml.Cache.XPathNodeRef::.ctor(MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNodeRef__ctor_mA73F51EC6476B02530DB4CEA0002D33B209DB020 (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___page0, int32_t ___idx1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 , const RuntimeMethod*))Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B_gshared)(__this, ___key0, method); } // !1 System.Collections.Generic.Dictionary`2::get_Item(!0) inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key0, const RuntimeMethod* method) { return (( XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 (*) (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 , const RuntimeMethod*))Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A_gshared)(__this, ___key0, method); } // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::get_Page() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeRef_get_Page_m43F46D993395AE8A88DC66C736E4BF7455DA21FA_inline (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::get_Index() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodeRef_get_Index_mF6C16E1ED1AD01AC0E60E87F3485EBEC7E372B69_inline (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method); // System.Void System.Xml.XPath.XPathNavigator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNavigator__ctor_mAD9E7017136A847F2E32903B3A92B4626BCCCB42 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNode::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNodeHelper::GetNonDescendant(MS.Internal.Xml.Cache.XPathNode[]&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNodeHelper_GetNonDescendant_m458CF1C515CA4D15A772D5A24F858FDCC8599DEB (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, int32_t* ___idxNode1, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNodeHelper::GetTextFollowing(MS.Internal.Xml.Cache.XPathNode[]&,System.Int32&,MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNodeHelper_GetTextFollowing_m1E8E6B8BF9278EC117D1A271706F824E76A6F969 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageCurrent0, int32_t* ___idxCurrent1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageEnd2, int32_t ___idxEnd3, const RuntimeMethod* method); // System.Void MS.Internal.Xml.Cache.XPathDocumentNavigator::.ctor(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathDocumentNavigator__ctor_m8295AEE3B5616BA22589D39FF6B6002FAE3AF046 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageCurrent0, int32_t ___idxCurrent1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageParent2, int32_t ___idxParent3, const RuntimeMethod* method); // System.Xml.XPath.XPathNodeType MS.Internal.Xml.Cache.XPathNode::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNode::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_LocalName_m1741FA92A60E72FCB70AC72874C9C30C32ED41CF (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNode::get_NamespaceUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_NamespaceUri_m62932807A9F517304198779BE6D0092A25373E8D (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNode::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_Prefix_m61161CE7663CA2A8DD51000A09612630B248C6BC (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Xml.XPath.XPathDocument MS.Internal.Xml.Cache.XPathNode::get_Document() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Xml.XmlNameTable System.Xml.XPath.XPathDocument::get_NameTable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * XPathDocument_get_NameTable_m0EA600647554AADA766F933C9170DDED22014E09_inline (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeHelper::GetLocalNamespaces(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeHelper_GetLocalNamespaces_mBDB8FBC8A9CFC867B7201069D6D1F6CEB65061D2 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageElem0, int32_t ___idxElem1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNmsp2, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeHelper::GetInScopeNamespaces(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeHelper_GetInScopeNamespaces_m054845B21FD8295470EF20EAD3085A5113C341E3 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageElem0, int32_t ___idxElem1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNmsp2, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_IsXmlNamespaceNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_IsXmlNamespaceNode_mA1AFA68FDDD836733409DC61B8785E47ACD11BD3 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNode::GetSibling(MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNode::GetParent(MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNodeHelper::GetParent(MS.Internal.Xml.Cache.XPathNode[]&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNodeHelper_GetParent_m1837518ADCD60ED37A08F76975159C17071D9532 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, int32_t* ___idxNode1, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNode::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_LineNumber_mC9023A559FD6DBB18F0DBB827403110C016D7768 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNode::get_CollapsedLinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_CollapsedLinePosition_m749D9DA81E80A19FAE493B6F6A690A0F5748E083 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNode::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_LinePosition_m91FEB39CADDE8D3BB676EA909DC568098704BA49 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaType::get_ValueConverter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29 (XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * __this, const RuntimeMethod* method); // System.Void System.Xml.XPath.XPathItem::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathItem__ctor_mE3A8CE9A0D0C39BC2423656DEA43702914EE0304 (XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 * __this, const RuntimeMethod* method); // System.Void System.Xml.XPath.XPathNavigatorKeyComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNavigatorKeyComparer__ctor_mE1FD2A3B05B898252A13F6435E464F2FB07A2100 (XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathDocumentNavigator::GetPositionHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocumentNavigator_GetPositionHashCode_mCEE87BE1B3E3EF49052DDB62826A383110A09933 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_Prefix() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_Prefix_m42B407DB4B3D7D15A394AE84C3CDDAB1F8AB8E66_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_LocalName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_LocalName_mD7465F5C48EDCE54972ABDE7BA78B8D9357BEABE_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_NamespaceUri() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_NamespaceUri_m09443195AF53EA937D16A91EB5069A98669551AC_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // System.Xml.XPath.XPathDocument MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_Document() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * XPathNodeInfoAtom_get_Document_m9C3A5ABC778BE58D1FDBE0E3E624902E5866C77A_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_LineNumberBase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodeInfoAtom_get_LineNumberBase_m4323FC22AC71DF4533FE3C476334BF552F9B3715_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_LinePositionBase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodeInfoAtom_get_LinePositionBase_m99CBCA66EAC3E16F01CCE0F797980925A00CC572_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // MS.Internal.Xml.Cache.XPathNodePageInfo MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_PageInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * XPathNodeInfoAtom_get_PageInfo_mB81A5A21438257DC31AE8F1AC8535621D85206A3_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // MS.Internal.Xml.Cache.XPathNodePageInfo MS.Internal.Xml.Cache.XPathNode::get_PageInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_ParentPage() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeInfoAtom_get_ParentPage_m0999A1E58410F76F13D2990CEBDB6E5E2AF064C6_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_SiblingPage() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeInfoAtom_get_SiblingPage_m7A8883FF04C2C7A701D96CA6974FA498A8092D6A_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_HasSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_HasSibling_m1CA85C3F4A2D7B0A873C2E97F22047B05A260B25 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_HasCollapsedText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_HasCollapsedText_m8B3F3C47122DB0A75343A6A6610160063CCDDE71 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XPath.XPathNavigator::IsText(System.Xml.XPath.XPathNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNavigator_IsText_mE621F0CA57AF8981A3A131DB3A7EA57DF5CC6552 (int32_t ___type0, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_IsText_m22B49F26A34FCD7239EA9C35E6C2F86337A4E335 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_HasNamespaceDecls() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_HasNamespaceDecls_m198C8AB17D39FA4D2C7866E8698E9E0B881FED68 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XPath.XPathDocument::LookupNamespaces(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocument_LookupNamespaces_mD7676EC5448CAD421C3C117066B5FA3A2466EC1A (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageElem0, int32_t ___idxElem1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNmsp2, const RuntimeMethod* method); // System.Int32 System.Xml.XPath.XPathDocument::GetXmlNamespaceNode(MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocument_GetXmlNamespaceNode_m00496C4E94EBE11E3C6CEA74FA3640DD31503B00 (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageXmlNmsp0, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodePageInfo::get_PageNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodePageInfo_get_PageNumber_m5C6A15FAED0B070B79BD588DCF48561E03835700_inline (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodePageInfo::get_NodeCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodePageInfo_get_NodeCount_m353B9E0EF9932CBEF1B43CA3791AD00490927642_inline (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method); // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodePageInfo::get_NextPage() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodePageInfo_get_NextPage_m3B387708F855B7E42B4E01A8ACF91A7B4901B9B0_inline (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeHelper::GetLocation(MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeHelper_GetLocation_m73DC2E864498946EF06B51BC0273E3998E65CABB (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageNode0, int32_t ___idxNode1, const RuntimeMethod* method); // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeRef_GetHashCode_m70CD5F2944EB1A2D73215FBAD5299F468D91D07A (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlBaseConverter::.ctor(System.Xml.Schema.XmlTypeCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlBaseConverter__ctor_m7F59A60B5239881076B261D847C74B4CAE2857AD (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, int32_t ___typeCode0, const RuntimeMethod* method); // System.Object System.Xml.Schema.XmlAnyConverter::ChangeTypeWildcardDestination(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method); // System.Type System.Xml.Schema.XmlBaseConverter::get_DefaultClrType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E (int32_t ___typeCode0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_mB5CB845A384D496AEFFFACB39569C5E920F305AA (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, bool ___value1, const RuntimeMethod* method); // System.Object System.Xml.Schema.XmlAnyConverter::ChangeTypeWildcardSource(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m7AF4FED70D32DE3E51E24EB8F753CDA7368655C9 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_mE7C19B5B6146AE4AE88113665DB0838AC1235CB9 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, double ___value1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m269BAC0CC815FFCD1D94901B2E35065F2CC3979D (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m084E81344290E4E2E3A792BAC6FCE90777FDDAA0 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, int64_t ___value1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, String_t* ___value1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XmlBaseConverter::IsDerivedFrom(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA (Type_t * ___derivedType0, Type_t * ___baseType1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.Object,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m831AF2CEC0B180020D7FAEF0B0701039A3434D99 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, RuntimeObject * ___value1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method); // System.Xml.XPath.XPathNavigator System.Xml.Schema.XmlAnyConverter::ToNavigator(System.Xml.XPath.XPathNavigator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * XmlAnyConverter_ToNavigator_m9A741700EB0DDF11F2B964C9024404C3691A542A (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * ___nav0, const RuntimeMethod* method); // System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlBaseConverter::get_TypeCode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlBaseConverter_get_TypeCode_m0A474F881A97EE27FC731E30E04B94B9A2A57694_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method); // System.Exception System.Xml.Schema.XmlBaseConverter::CreateInvalidClrMappingException(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlBaseConverter_CreateInvalidClrMappingException_mF6EE65AEAEFD2FE80F2829D69A6C9178C2287270 (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, Type_t * ___sourceType0, Type_t * ___destinationType1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAnyConverter::.ctor(System.Xml.Schema.XmlTypeCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyConverter__ctor_m3772D1858B7320558BA66ECE2E5C212BFF149AD4 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, int32_t ___typeCode0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070 (const RuntimeMethod* 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.Xml.Schema.DtdValidator::SetDefaultTypedValue(System.Xml.Schema.SchemaAttDef,System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdValidator_SetDefaultTypedValue_mFDA23AD15B48F85C71A00008391825B0E594829D (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * ___attdef0, RuntimeObject* ___readerAdapter1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_tBA7B070C0FD127A0E042A26EB4011F3E14AE3287_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_1 = NULL; RuntimeObject* V_2 = NULL; XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * V_3 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_0 = ___attdef0; NullCheck(L_0); String_t* L_1; L_1 = SchemaAttDef_get_DefaultValueExpanded_m3DD4309DBF57E2E9C4C2EBA74EE54365C51A88C5(L_0, /*hidden argument*/NULL); V_0 = L_1; SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_2 = ___attdef0; NullCheck(L_2); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_3; L_3 = SchemaDeclBase_get_Datatype_mA6244D69EB46EA7A09CDB3BD3370B49B89A47FD1_inline(L_2, /*hidden argument*/NULL); V_1 = L_3; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_4 = V_1; if (L_4) { goto IL_0013; } } IL_0011: { goto IL_006d; } IL_0013: { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = V_1; NullCheck(L_5); int32_t L_6; L_6 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_5); if (!L_6) { goto IL_0022; } } IL_001b: { String_t* L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_7, /*hidden argument*/NULL); V_0 = L_8; } IL_0022: { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_9 = ___attdef0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_10 = V_1; String_t* L_11 = V_0; RuntimeObject* L_12 = ___readerAdapter1; NullCheck(L_12); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_13; L_13 = InterfaceFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(0 /* System.Xml.XmlNameTable System.Xml.IDtdParserAdapter::get_NameTable() */, IDtdParserAdapter_tBA7B070C0FD127A0E042A26EB4011F3E14AE3287_il2cpp_TypeInfo_var, L_12); RuntimeObject* L_14 = ___readerAdapter1; NullCheck(L_14); RuntimeObject* L_15; L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Xml.IXmlNamespaceResolver System.Xml.IDtdParserAdapter::get_NamespaceResolver() */, IDtdParserAdapter_tBA7B070C0FD127A0E042A26EB4011F3E14AE3287_il2cpp_TypeInfo_var, L_14); NullCheck(L_10); RuntimeObject * L_16; L_16 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_10, L_11, L_13, L_15); NullCheck(L_9); SchemaDeclBase_set_DefaultValueTyped_mC5B1F78E7F6E018074AA8E7672C24E7C844E8A7A_inline(L_9, L_16, /*hidden argument*/NULL); goto IL_006d; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003d; } throw e; } CATCH_003d: { // begin catch(System.Exception) { RuntimeObject* L_17 = ___readerAdapter1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_17, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDtdParserAdapterWithValidation_t0F14B9DF8870776AF06060024076C7E824C13439_il2cpp_TypeInfo_var))))); RuntimeObject* L_18; L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Xml.IValidationEventHandling System.Xml.IDtdParserAdapterWithValidation::get_ValidationEventHandling() */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDtdParserAdapterWithValidation_t0F14B9DF8870776AF06060024076C7E824C13439_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_17, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDtdParserAdapterWithValidation_t0F14B9DF8870776AF06060024076C7E824C13439_il2cpp_TypeInfo_var))))); V_2 = L_18; RuntimeObject* L_19 = V_2; if (!L_19) { goto IL_006b; } } IL_004d: { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_20 = ___attdef0; NullCheck(L_20); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_21; L_21 = SchemaDeclBase_get_Name_m87FD6E6D364B0F6E028FE4FE87AEFF71575E009E_inline(L_20, /*hidden argument*/NULL); NullCheck(L_21); String_t* L_22; L_22 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_23 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var))); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ADAAB999C40C872F1295FAF8822A6B94D90F345)), L_22, /*hidden argument*/NULL); V_3 = L_23; RuntimeObject* L_24 = V_2; XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_25 = V_3; NullCheck(L_24); InterfaceActionInvoker2< Exception_t *, int32_t >::Invoke(0 /* System.Void System.Xml.IValidationEventHandling::SendEvent(System.Exception,System.Xml.Schema.XmlSeverityType) */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IValidationEventHandling_t574D5D59A6C1707DB494A9F8AFB6A3DB3F0B64D1_il2cpp_TypeInfo_var)), L_24, L_25, 0); } IL_006b: { IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_006d; } } // end catch (depth: 1) IL_006d: { return; } } // System.Void System.Xml.Schema.DtdValidator::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdValidator__cctor_m7805A61662C7DAEB0629F5DA103ADF431548A551 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * L_0 = (NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B *)il2cpp_codegen_object_new(NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B_il2cpp_TypeInfo_var); NamespaceManager__ctor_m5878388A545016DC48058A23E985AECBB1EE86CF(L_0, /*hidden argument*/NULL); ((DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3_StaticFields*)il2cpp_codegen_static_fields_for(DtdValidator_t1C9F048BF92EEAA4AD43A151F34D5B6DF96F38D3_il2cpp_TypeInfo_var))->set_namespaceManager_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception System.Xml.Schema.DurationFacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * DurationFacetsChecker_CheckValueFacets_mCC15F81F4E3665452494811E59CAF7146ED470BC (DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_3, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject * L_5; L_5 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, Type_t * >::Invoke(60 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type) */, L_1, L_2, L_4); V_0 = ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_5, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_6 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_7 = ___datatype1; Exception_t * L_8; L_8 = VirtFuncInvoker2< Exception_t *, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(15 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.TimeSpan,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_6, L_7); return L_8; } } // System.Exception System.Xml.Schema.DurationFacetsChecker::CheckValueFacets(System.TimeSpan,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * DurationFacetsChecker_CheckValueFacets_mA3E77FB77A59F8FC623006B92994E5EEC0B8511E (DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, 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*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944); s_Il2CppMethodInitialized = true; } RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_0 = NULL; int32_t V_1 = 0; int32_t G_B3_0 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1; L_1 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_0); V_0 = L_1; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_2 = V_0; if (L_2) { goto IL_000d; } } { G_B3_0 = 0; goto IL_0013; } IL_000d: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_Flags_12(); G_B3_0 = ((int32_t)(L_4)); } IL_0013: { V_1 = G_B3_0; int32_t L_5 = V_1; if (!((int32_t)((int32_t)L_5&(int32_t)((int32_t)64)))) { goto IL_003e; } } { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_6 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_7 = V_0; NullCheck(L_7); RuntimeObject * L_8 = L_7->get_MaxInclusive_6(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); int32_t L_9; L_9 = TimeSpan_Compare_m5EA8CA7658456409B695D2B87CCF151136538FA9(L_6, ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_8, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_003e; } } { String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_11 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_11, _stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80, L_10, /*hidden argument*/NULL); return L_11; } IL_003e: { int32_t L_12 = V_1; if (!((int32_t)((int32_t)L_12&(int32_t)((int32_t)128)))) { goto IL_006b; } } { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_13 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_14 = V_0; NullCheck(L_14); RuntimeObject * L_15 = L_14->get_MaxExclusive_7(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); int32_t L_16; L_16 = TimeSpan_Compare_m5EA8CA7658456409B695D2B87CCF151136538FA9(L_13, ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_15, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_006b; } } { String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_18 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_18, _stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1, L_17, /*hidden argument*/NULL); return L_18; } IL_006b: { int32_t L_19 = V_1; if (!((int32_t)((int32_t)L_19&(int32_t)((int32_t)256)))) { goto IL_0098; } } { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_20 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_21 = V_0; NullCheck(L_21); RuntimeObject * L_22 = L_21->get_MinInclusive_8(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); int32_t L_23; L_23 = TimeSpan_Compare_m5EA8CA7658456409B695D2B87CCF151136538FA9(L_20, ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_22, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if ((((int32_t)L_23) >= ((int32_t)0))) { goto IL_0098; } } { String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_25 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_25, _stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B, L_24, /*hidden argument*/NULL); return L_25; } IL_0098: { int32_t L_26 = V_1; if (!((int32_t)((int32_t)L_26&(int32_t)((int32_t)512)))) { goto IL_00c5; } } { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_27 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_28 = V_0; NullCheck(L_28); RuntimeObject * L_29 = L_28->get_MinExclusive_9(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); int32_t L_30; L_30 = TimeSpan_Compare_m5EA8CA7658456409B695D2B87CCF151136538FA9(L_27, ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_29, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if ((((int32_t)L_30) > ((int32_t)0))) { goto IL_00c5; } } { String_t* L_31 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_32 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_32, _stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944, L_31, /*hidden argument*/NULL); return L_32; } IL_00c5: { int32_t L_33 = V_1; if (!((int32_t)((int32_t)L_33&(int32_t)((int32_t)16)))) { goto IL_00ea; } } { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_34 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_35 = V_0; NullCheck(L_35); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_36 = L_35->get_Enumeration_4(); bool L_37; L_37 = DurationFacetsChecker_MatchEnumeration_m782B0F54BB42686A3652E3108B22B827605E1FBB(__this, L_34, L_36, /*hidden argument*/NULL); if (L_37) { goto IL_00ea; } } { String_t* L_38 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_39 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_39, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_38, /*hidden argument*/NULL); return L_39; } IL_00ea: { return (Exception_t *)NULL; } } // System.Boolean System.Xml.Schema.DurationFacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DurationFacetsChecker_MatchEnumeration_m901429F77EF11D02233177D3D7999ACB71613E79 (DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___enumeration1; bool L_2; L_2 = DurationFacetsChecker_MatchEnumeration_m782B0F54BB42686A3652E3108B22B827605E1FBB(__this, ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Xml.Schema.DurationFacetsChecker::MatchEnumeration(System.TimeSpan,System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DurationFacetsChecker_MatchEnumeration_m782B0F54BB42686A3652E3108B22B827605E1FBB (DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { V_0 = 0; goto IL_001e; } IL_0004: { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___enumeration1; int32_t L_2 = V_0; NullCheck(L_1); RuntimeObject * L_3; L_3 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_2); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); int32_t L_4; L_4 = TimeSpan_Compare_m5EA8CA7658456409B695D2B87CCF151136538FA9(L_0, ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_3, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_4) { goto IL_001a; } } { return (bool)1; } IL_001a: { int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_001e: { int32_t L_6 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_7 = ___enumeration1; NullCheck(L_7); int32_t L_8; L_8 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7); if ((((int32_t)L_6) < ((int32_t)L_8))) { goto IL_0004; } } { return (bool)0; } } // System.Void System.Xml.Schema.DurationFacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DurationFacetsChecker__ctor_m438A86050C11C8861B1955ED73C63C2AB460FC82 (DurationFacetsChecker_t07ED22E97357EFF20653F05A7E5388050B066A66 * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/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.Boolean System.Xml.EmptyEnumerator::System.Collections.IEnumerator.MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyEnumerator_System_Collections_IEnumerator_MoveNext_m0E2DBE90BA534260590E7EB0FEE396DB3C19D3B7 (EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.EmptyEnumerator::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerator_System_Collections_IEnumerator_Reset_m354E07DEE54514D96C6DD7F453126AA996FA742C (EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * __this, const RuntimeMethod* method) { { return; } } // System.Object System.Xml.EmptyEnumerator::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyEnumerator_System_Collections_IEnumerator_get_Current_m13A95A923D46B58867AFB2C65E5BC25F28885F9D (EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyEnumerator_System_Collections_IEnumerator_get_Current_m13A95A923D46B58867AFB2C65E5BC25F28885F9D_RuntimeMethod_var))); } } // System.Void System.Xml.EmptyEnumerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerator__ctor_mD2C6EAC8EB181ECB0E6D7D33FC6AEAB25465CF27 (EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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.Xml.Serialization.EnumMap::.ctor(System.Xml.Serialization.EnumMap/EnumMapMember[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumMap__ctor_mDC8093C615DA83B0510D26C3927D2D68B4A0062B (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* ___members0, bool ___isFlags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * V_1 = NULL; { ObjectMap__ctor_mF37BA5AFF032BFC18189BA4CD22381C4D19AE3B5(__this, /*hidden argument*/NULL); EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_0 = ___members0; __this->set__members_0(L_0); bool L_1 = ___isFlags1; __this->set__isFlags_1(L_1); EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_2 = __this->get__members_0(); NullCheck(L_2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); __this->set__enumNames_2(L_3); EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_4 = __this->get__members_0(); NullCheck(L_4); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))); __this->set__xmlNames_3(L_5); EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_6 = __this->get__members_0(); NullCheck(L_6); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_7 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)SZArrayNew(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))); __this->set__values_4(L_7); V_0 = 0; goto IL_0088; } IL_0051: { EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_8 = __this->get__members_0(); int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10 = L_9; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_11 = (L_8)->GetAt(static_cast(L_10)); V_1 = L_11; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = __this->get__enumNames_2(); int32_t L_13 = V_0; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_14 = V_1; NullCheck(L_14); String_t* L_15; L_15 = EnumMapMember_get_EnumName_m965ACAD881EB69B9802B5A2540C87FDEA1E320CC_inline(L_14, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_15); (L_12)->SetAt(static_cast(L_13), (String_t*)L_15); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = __this->get__xmlNames_3(); int32_t L_17 = V_0; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_18 = V_1; NullCheck(L_18); String_t* L_19; L_19 = EnumMapMember_get_XmlName_m125CC3C0B9D3400A9FFF74B875F2D118D8A9A60C_inline(L_18, /*hidden argument*/NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_19); (L_16)->SetAt(static_cast(L_17), (String_t*)L_19); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_20 = __this->get__values_4(); int32_t L_21 = V_0; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_22 = V_1; NullCheck(L_22); int64_t L_23; L_23 = EnumMapMember_get_Value_m4D4D6D93420A7993C34F62257F08F2994EB8F69C_inline(L_22, /*hidden argument*/NULL); NullCheck(L_20); (L_20)->SetAt(static_cast(L_21), (int64_t)L_23); int32_t L_24 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0088: { int32_t L_25 = V_0; EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_26 = __this->get__members_0(); NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))) { goto IL_0051; } } { return; } } // System.Boolean System.Xml.Serialization.EnumMap::get_IsFlags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumMap_get_IsFlags_m073ABB8B0D5CC0B35A29B63BE58E42E8377AE658 (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__isFlags_1(); return L_0; } } // System.String[] System.Xml.Serialization.EnumMap::get_EnumNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* EnumMap_get_EnumNames_mEAE6B5575385C501E56FC1540F52D45D989DD396 (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = __this->get__enumNames_2(); return L_0; } } // System.String[] System.Xml.Serialization.EnumMap::get_XmlNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5 (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = __this->get__xmlNames_3(); return L_0; } } // System.Int64[] System.Xml.Serialization.EnumMap::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* EnumMap_get_Values_m69D39D8E631508EACA57983BDBC206880CA5DC9B (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_0 = __this->get__values_4(); return L_0; } } // System.String System.Xml.Serialization.EnumMap::GetXmlName(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetXmlName_m2B4CC2E29F4D6784DCE7B466E862A040DD885155 (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, String_t* ___typeName0, RuntimeObject * ___enumValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_t40D9E38816544BF71E97F48AB3C47C9A2B7E9BE4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t96EA3BCB945B23EA4124D095B1F60E312A83E4AB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; String_t* V_1 = NULL; int32_t V_2 = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { RuntimeObject * L_0 = ___enumValue1; if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) { goto IL_000e; } } { InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_1 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var))); InvalidCastException__ctor_m76E962000488C3BEA2B6FC2F48B31FF1AEE32934(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetXmlName_m2B4CC2E29F4D6784DCE7B466E862A040DD885155_RuntimeMethod_var))); } IL_000e: { V_0 = ((int64_t)((int64_t)0)); } IL_0011: try { // begin try (depth: 1) RuntimeObject * L_2 = ___enumValue1; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_3; L_3 = CultureInfo_get_CurrentCulture_m45CEB001D1509B8171C3557DD56C7521A0F5803E(/*hidden argument*/NULL); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_2, IConvertible_t40D9E38816544BF71E97F48AB3C47C9A2B7E9BE4_il2cpp_TypeInfo_var))); int64_t L_4; L_4 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t40D9E38816544BF71E97F48AB3C47C9A2B7E9BE4_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IConvertible_t40D9E38816544BF71E97F48AB3C47C9A2B7E9BE4_il2cpp_TypeInfo_var)), L_3); V_0 = L_4; goto IL_002b; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0024; } throw e; } CATCH_0024: { // begin catch(System.FormatException) InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_5 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var))); InvalidCastException__ctor_m76E962000488C3BEA2B6FC2F48B31FF1AEE32934(L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetXmlName_m2B4CC2E29F4D6784DCE7B466E862A040DD885155_RuntimeMethod_var))); } // end catch (depth: 1) IL_002b: { V_2 = 0; goto IL_0047; } IL_002f: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_6; L_6 = EnumMap_get_Values_m69D39D8E631508EACA57983BDBC206880CA5DC9B_inline(__this, /*hidden argument*/NULL); int32_t L_7 = V_2; NullCheck(L_6); int32_t L_8 = L_7; int64_t L_9 = (L_6)->GetAt(static_cast(L_8)); int64_t L_10 = V_0; if ((!(((uint64_t)L_9) == ((uint64_t)L_10)))) { goto IL_0043; } } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11; L_11 = EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5_inline(__this, /*hidden argument*/NULL); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = L_12; String_t* L_14 = (L_11)->GetAt(static_cast(L_13)); return L_14; } IL_0043: { int32_t L_15 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0047: { int32_t L_16 = V_2; Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_17; L_17 = EnumMap_get_Values_m69D39D8E631508EACA57983BDBC206880CA5DC9B_inline(__this, /*hidden argument*/NULL); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))) { goto IL_002f; } } { bool L_18; L_18 = EnumMap_get_IsFlags_m073ABB8B0D5CC0B35A29B63BE58E42E8377AE658_inline(__this, /*hidden argument*/NULL); if (!L_18) { goto IL_0063; } } { int64_t L_19 = V_0; if (L_19) { goto IL_0063; } } { String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_20; } IL_0063: { String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_1 = L_21; bool L_22; L_22 = EnumMap_get_IsFlags_m073ABB8B0D5CC0B35A29B63BE58E42E8377AE658_inline(__this, /*hidden argument*/NULL); if (!L_22) { goto IL_0085; } } { int64_t L_23 = V_0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24; L_24 = EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5_inline(__this, /*hidden argument*/NULL); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_25; L_25 = EnumMap_get_Values_m69D39D8E631508EACA57983BDBC206880CA5DC9B_inline(__this, /*hidden argument*/NULL); String_t* L_26 = ___typeName0; IL2CPP_RUNTIME_CLASS_INIT(XmlCustomFormatter_t96EA3BCB945B23EA4124D095B1F60E312A83E4AB_il2cpp_TypeInfo_var); String_t* L_27; L_27 = XmlCustomFormatter_FromEnum_m8749D34409F1C28F902F929A279F03BF7C84284E(L_23, L_24, L_25, L_26, /*hidden argument*/NULL); V_1 = L_27; } IL_0085: { String_t* L_28 = V_1; NullCheck(L_28); int32_t L_29; L_29 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_28, /*hidden argument*/NULL); if (L_29) { goto IL_00a9; } } { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_30; L_30 = CultureInfo_get_CurrentCulture_m45CEB001D1509B8171C3557DD56C7521A0F5803E(/*hidden argument*/NULL); int64_t L_31 = V_0; int64_t L_32 = L_31; RuntimeObject * L_33 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)), &L_32); String_t* L_34 = ___typeName0; String_t* L_35; L_35 = String_Format_m061EEC38D33A13CC1E98DBD6869E97A0C2989F88(L_30, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35)), L_33, L_34, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_36 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_36, L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetXmlName_m2B4CC2E29F4D6784DCE7B466E862A040DD885155_RuntimeMethod_var))); } IL_00a9: { String_t* L_37 = V_1; return L_37; } } // System.String System.Xml.Serialization.EnumMap::GetEnumName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetEnumName_m27EE7F778C8E65530E97367331A14ABA2A86BC39 (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, String_t* ___typeName0, String_t* ___xmlName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; String_t* V_4 = NULL; int32_t V_5 = 0; EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* V_6 = NULL; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * V_7 = NULL; { bool L_0 = __this->get__isFlags_1(); if (!L_0) { goto IL_00cb; } } { String_t* L_1 = ___xmlName1; NullCheck(L_1); String_t* L_2; L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_1, /*hidden argument*/NULL); ___xmlName1 = L_2; String_t* L_3 = ___xmlName1; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0021; } } { return _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; } IL_0021: { StringBuilder_t * L_5 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_5, /*hidden argument*/NULL); V_0 = L_5; String_t* L_6 = ___xmlName1; NullCheck(L_6); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7; L_7 = String_Split_m2C74DC2B85B322998094BEDE787C378822E1F28B(L_6, (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL, /*hidden argument*/NULL); V_1 = L_7; V_2 = 0; goto IL_00bb; } IL_0036: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = V_1; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; String_t* L_11 = (L_8)->GetAt(static_cast(L_10)); V_3 = L_11; String_t* L_12 = V_3; String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_14; L_14 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_12, L_13, /*hidden argument*/NULL); if (L_14) { goto IL_00b7; } } { V_4 = (String_t*)NULL; V_5 = 0; goto IL_0073; } IL_004f: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15; L_15 = EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5_inline(__this, /*hidden argument*/NULL); int32_t L_16 = V_5; NullCheck(L_15); int32_t L_17 = L_16; String_t* L_18 = (L_15)->GetAt(static_cast(L_17)); String_t* L_19 = V_3; bool L_20; L_20 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_18, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_006d; } } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21; L_21 = EnumMap_get_EnumNames_mEAE6B5575385C501E56FC1540F52D45D989DD396_inline(__this, /*hidden argument*/NULL); int32_t L_22 = V_5; NullCheck(L_21); int32_t L_23 = L_22; String_t* L_24 = (L_21)->GetAt(static_cast(L_23)); V_4 = L_24; goto IL_007f; } IL_006d: { int32_t L_25 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0073: { int32_t L_26 = V_5; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27; L_27 = EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5_inline(__this, /*hidden argument*/NULL); NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))) { goto IL_004f; } } IL_007f: { String_t* L_28 = V_4; if (!L_28) { goto IL_00a0; } } { StringBuilder_t * L_29 = V_0; NullCheck(L_29); int32_t L_30; L_30 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_29, /*hidden argument*/NULL); if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_0095; } } { StringBuilder_t * L_31 = V_0; NullCheck(L_31); StringBuilder_t * L_32; L_32 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_31, ((int32_t)44), /*hidden argument*/NULL); } IL_0095: { StringBuilder_t * L_33 = V_0; String_t* L_34 = V_4; NullCheck(L_33); StringBuilder_t * L_35; L_35 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_33, L_34, /*hidden argument*/NULL); goto IL_00b7; } IL_00a0: { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_36; L_36 = CultureInfo_get_CurrentCulture_m45CEB001D1509B8171C3557DD56C7521A0F5803E(/*hidden argument*/NULL); String_t* L_37 = V_3; String_t* L_38 = ___typeName0; String_t* L_39; L_39 = String_Format_m061EEC38D33A13CC1E98DBD6869E97A0C2989F88(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35)), L_37, L_38, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_40 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_40, L_39, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetEnumName_m27EE7F778C8E65530E97367331A14ABA2A86BC39_RuntimeMethod_var))); } IL_00b7: { int32_t L_41 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_00bb: { int32_t L_42 = V_2; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = V_1; NullCheck(L_43); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))) { goto IL_0036; } } { StringBuilder_t * L_44 = V_0; NullCheck(L_44); String_t* L_45; L_45 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_44); return L_45; } IL_00cb: { EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_46 = __this->get__members_0(); V_6 = L_46; V_2 = 0; goto IL_00f8; } IL_00d7: { EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_47 = V_6; int32_t L_48 = V_2; NullCheck(L_47); int32_t L_49 = L_48; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_50 = (L_47)->GetAt(static_cast(L_49)); V_7 = L_50; EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_51 = V_7; NullCheck(L_51); String_t* L_52; L_52 = EnumMapMember_get_XmlName_m125CC3C0B9D3400A9FFF74B875F2D118D8A9A60C_inline(L_51, /*hidden argument*/NULL); String_t* L_53 = ___xmlName1; bool L_54; L_54 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_52, L_53, /*hidden argument*/NULL); if (!L_54) { goto IL_00f4; } } { EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * L_55 = V_7; NullCheck(L_55); String_t* L_56; L_56 = EnumMapMember_get_EnumName_m965ACAD881EB69B9802B5A2540C87FDEA1E320CC_inline(L_55, /*hidden argument*/NULL); return L_56; } IL_00f4: { int32_t L_57 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1)); } IL_00f8: { int32_t L_58 = V_2; EnumMapMemberU5BU5D_t07A96D3D51D0592FBA40BC8DB07055475869F868* L_59 = V_6; NullCheck(L_59); if ((((int32_t)L_58) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length)))))) { goto IL_00d7; } } { return (String_t*)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Exception System.Xml.Schema.FacetsChecker::CheckLexicalFacets(System.String&,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckLexicalFacets_mAB440D27CCF341D1E574995DAF236DE38B9E8513 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, String_t** ___parseString0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { String_t** L_0 = ___parseString0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_1 = ___datatype1; FacetsChecker_CheckWhitespaceFacets_m5529819D0BFF09F083BAED53C1805ECC22E03101(__this, (String_t**)L_0, L_1, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_2 = ___datatype1; NullCheck(L_2); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3; L_3 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_2); String_t** L_4 = ___parseString0; String_t* L_5 = *((String_t**)L_4); Exception_t * L_6; L_6 = FacetsChecker_CheckPatternFacets_mC488D9F160CC92EA2A5CE5B94017FB7F9AFA4854(__this, L_3, L_5, /*hidden argument*/NULL); return L_6; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m5C0035B0949CDA77154C8D83A6278255EBD34CEC (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Decimal,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m7518F71DBD41DD04A52721D5DD5FC16EAA7A8E01 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Int64,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m2D9F70F85A6BCF36F8DD83197490CFB465EB5149 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, int64_t ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Int32,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m9D4FACFA098694E6B227E1DB03C073223447545B (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, int32_t ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Int16,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_mD24A4A5E020B2B7EEA7F2282D158E64DD6ECB7E1 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, int16_t ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.DateTime,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m9032E2E2E44A68E7FD5426FFF02BFC99E3A21BAD (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Double,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m660D30FD7317EAAC73C3F56A9853A45E7EE505AC (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, double ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Single,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_mA6F5E963B09109D07C87A8AFBE9252C09D4DD76F (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, float ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.String,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_mEAA86ABBC5F7F7D8483C38D4060354A33C03F886 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, String_t* ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Byte[],System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_mE00EE3D5EAB603887D560D42D13DB8B3085C2726 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.TimeSpan,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m9DC8F28DD31711E099A61EA05A2B2F480D26CC5F (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckValueFacets_m6D7DB56EBE94EA611CD5B84006DDCC65DFCBAA31 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { return (Exception_t *)NULL; } } // System.Void System.Xml.Schema.FacetsChecker::CheckWhitespaceFacets(System.String&,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacetsChecker_CheckWhitespaceFacets_m5529819D0BFF09F083BAED53C1805ECC22E03101 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, String_t** ___s0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_0 = NULL; int32_t V_1 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1; L_1 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_0); V_0 = L_1; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_2 = ___datatype1; NullCheck(L_2); int32_t L_3; L_3 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Xml.Schema.XmlSchemaDatatypeVariety System.Xml.Schema.XmlSchemaDatatype::get_Variety() */, L_2); V_1 = L_3; int32_t L_4 = V_1; if (!L_4) { goto IL_001f; } } { int32_t L_5 = V_1; if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_0078; } } { String_t** L_6 = ___s0; String_t** L_7 = ___s0; String_t* L_8 = *((String_t**)L_7); NullCheck(L_8); String_t* L_9; L_9 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_8, /*hidden argument*/NULL); *((RuntimeObject **)L_6) = (RuntimeObject *)L_9; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)L_9); return; } IL_001f: { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_10 = ___datatype1; NullCheck(L_10); int32_t L_11; L_11 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Xml.Schema.XmlSchemaWhiteSpace System.Xml.Schema.XmlSchemaDatatype::get_BuiltInWhitespaceFacet() */, L_10); if ((!(((uint32_t)L_11) == ((uint32_t)2)))) { goto IL_0032; } } { String_t** L_12 = ___s0; String_t** L_13 = ___s0; String_t* L_14 = *((String_t**)L_13); String_t* L_15; L_15 = XmlComplianceUtil_NonCDataNormalize_m19F3DF529609C42EBB658048BF2F81EB54A0E991(L_14, /*hidden argument*/NULL); *((RuntimeObject **)L_12) = (RuntimeObject *)L_15; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)L_15); return; } IL_0032: { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_16 = ___datatype1; NullCheck(L_16); int32_t L_17; L_17 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Xml.Schema.XmlSchemaWhiteSpace System.Xml.Schema.XmlSchemaDatatype::get_BuiltInWhitespaceFacet() */, L_16); if ((!(((uint32_t)L_17) == ((uint32_t)1)))) { goto IL_0045; } } { String_t** L_18 = ___s0; String_t** L_19 = ___s0; String_t* L_20 = *((String_t**)L_19); String_t* L_21; L_21 = XmlComplianceUtil_CDataNormalize_mE5A000ED7A213C84A93606FF472BCC5961C33025(L_20, /*hidden argument*/NULL); *((RuntimeObject **)L_18) = (RuntimeObject *)L_21; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_18, (void*)(RuntimeObject *)L_21); return; } IL_0045: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_22 = V_0; if (!L_22) { goto IL_0078; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_23 = V_0; NullCheck(L_23); int32_t L_24 = L_23->get_Flags_12(); if (!((int32_t)((int32_t)L_24&(int32_t)((int32_t)32)))) { goto IL_0078; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_25 = V_0; NullCheck(L_25); int32_t L_26 = L_25->get_WhiteSpace_5(); if ((!(((uint32_t)L_26) == ((uint32_t)1)))) { goto IL_0066; } } { String_t** L_27 = ___s0; String_t** L_28 = ___s0; String_t* L_29 = *((String_t**)L_28); String_t* L_30; L_30 = XmlComplianceUtil_CDataNormalize_mE5A000ED7A213C84A93606FF472BCC5961C33025(L_29, /*hidden argument*/NULL); *((RuntimeObject **)L_27) = (RuntimeObject *)L_30; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_27, (void*)(RuntimeObject *)L_30); return; } IL_0066: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_31 = V_0; NullCheck(L_31); int32_t L_32 = L_31->get_WhiteSpace_5(); if ((!(((uint32_t)L_32) == ((uint32_t)2)))) { goto IL_0078; } } { String_t** L_33 = ___s0; String_t** L_34 = ___s0; String_t* L_35 = *((String_t**)L_34); String_t* L_36; L_36 = XmlComplianceUtil_NonCDataNormalize_m19F3DF529609C42EBB658048BF2F81EB54A0E991(L_35, /*hidden argument*/NULL); *((RuntimeObject **)L_33) = (RuntimeObject *)L_36; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_33, (void*)(RuntimeObject *)L_36); } IL_0078: { return; } } // System.Exception System.Xml.Schema.FacetsChecker::CheckPatternFacets(System.Xml.Schema.RestrictionFacets,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * FacetsChecker_CheckPatternFacets_mC488D9F160CC92EA2A5CE5B94017FB7F9AFA4854 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * ___restriction0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FD726975E1B11E900D32393E382DD325472C6C5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_0 = ___restriction0; if (!L_0) { goto IL_004c; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1 = ___restriction0; NullCheck(L_1); int32_t L_2 = L_1->get_Flags_12(); if (!((int32_t)((int32_t)L_2&(int32_t)8))) { goto IL_004c; } } { V_0 = 0; goto IL_003e; } IL_0011: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = ___restriction0; NullCheck(L_3); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = L_3->get_Patterns_3(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6; L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5); String_t* L_7 = ___value1; NullCheck(((Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)CastclassClass((RuntimeObject*)L_6, Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var))); bool L_8; L_8 = Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859(((Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)CastclassClass((RuntimeObject*)L_6, Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var)), L_7, /*hidden argument*/NULL); if (L_8) { goto IL_003a; } } { String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_10 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_10, _stringLiteral2FD726975E1B11E900D32393E382DD325472C6C5, L_9, /*hidden argument*/NULL); return L_10; } IL_003a: { int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_003e: { int32_t L_12 = V_0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_13 = ___restriction0; NullCheck(L_13); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_14 = L_13->get_Patterns_3(); NullCheck(L_14); int32_t L_15; L_15 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_14); if ((((int32_t)L_12) < ((int32_t)L_15))) { goto IL_0011; } } IL_004c: { return (Exception_t *)NULL; } } // System.Boolean System.Xml.Schema.FacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FacetsChecker_MatchEnumeration_mEFCF54A0C5AB831A7FDFCA3DD10A1C62993F4FD1 (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { { return (bool)0; } } // System.Decimal System.Xml.Schema.FacetsChecker::Power(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 FacetsChecker_Power_m41F5CFF74595527227D387F10E408E988BE7B8E2 (int32_t ___x0, int32_t ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_0; memset((&V_0), 0, sizeof(V_0)); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 0; { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = ((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var))->get_One_8(); V_0 = L_0; int32_t L_1 = ___x0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_2; L_2 = Decimal_op_Implicit_mA83342DEE0725CF242454832BD0306090E80CCF9(L_1, /*hidden argument*/NULL); V_1 = L_2; int32_t L_3 = ___y1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)28)))) { goto IL_001d; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_4; memset((&L_4), 0, sizeof(L_4)); Decimal__ctor_mB9DFF414FB23863B982F9D863D6E57867995C7F3((&L_4), (-1), (-1), (-1), (bool)0, (uint8_t)0, /*hidden argument*/NULL); return L_4; } IL_001d: { V_2 = 0; goto IL_002d; } IL_0021: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_5 = V_0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_6 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_7; L_7 = Decimal_op_Multiply_mDA6E9440BFD19C66F0233BC6EF8C2E9633DAF56F(L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002d: { int32_t L_9 = V_2; int32_t L_10 = ___y1; if ((((int32_t)L_9) < ((int32_t)L_10))) { goto IL_0021; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_11 = V_0; return L_11; } } // System.Void System.Xml.Schema.FacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF (FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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.Xml.IncrementalReadDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDecoder__ctor_m1FD169509E6AF91895E97ABC89B2575BE7E3F71D (IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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.Boolean System.Xml.IncrementalReadDummyDecoder::get_IsFull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IncrementalReadDummyDecoder_get_IsFull_m1CAA77946F83EA10CF90D9C601DF31AF0ECBEC79 (IncrementalReadDummyDecoder_tC63EFBDD75A4558B1A31CDA7814317CCF5E45C85 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.Xml.IncrementalReadDummyDecoder::Decode(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IncrementalReadDummyDecoder_Decode_m9992833745C751F9DAEB3685F6BC65CB360A0ADA (IncrementalReadDummyDecoder_tC63EFBDD75A4558B1A31CDA7814317CCF5E45C85 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars0, int32_t ___startPos1, int32_t ___len2, const RuntimeMethod* method) { { int32_t L_0 = ___len2; return L_0; } } // System.Void System.Xml.IncrementalReadDummyDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDummyDecoder__ctor_m9B057532C550AD397B0F63B99C7CA2DB7F59A0DF (IncrementalReadDummyDecoder_tC63EFBDD75A4558B1A31CDA7814317CCF5E45C85 * __this, const RuntimeMethod* method) { { IncrementalReadDecoder__ctor_m1FD169509E6AF91895E97ABC89B2575BE7E3F71D(__this, /*hidden argument*/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.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::get_LeftChild() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1 (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = __this->get_leftChild_0(); return L_0; } } // System.Void System.Xml.Schema.InteriorNode::set_LeftChild(System.Xml.Schema.SyntaxTreeNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___value0, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = ___value0; __this->set_leftChild_0(L_0); return; } } // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::get_RightChild() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340 (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = __this->get_rightChild_1(); return L_0; } } // System.Void System.Xml.Schema.InteriorNode::set_RightChild(System.Xml.Schema.SyntaxTreeNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3 (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___value0, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = ___value0; __this->set_rightChild_1(L_0); return; } } // System.Void System.Xml.Schema.InteriorNode::ExpandTreeNoRecursive(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode_ExpandTreeNoRecursive_mED7122A2FEA563CA2585C60B43FB8FF3D94C63DB (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___parent0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mE1E83DFD991F38A796542E364FBD8506D62B0329_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m9954EB178F71F876D5CC04E2B2D2A2CF2E511EA7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_mA968561DF990D7304E52EB03EAD5DB4D21D620D6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_mD1B493AD690EC374489F4BD30DACA1B208E8CB79_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * V_0 = NULL; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_1 = NULL; { Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * L_0 = (Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B *)il2cpp_codegen_object_new(Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B_il2cpp_TypeInfo_var); Stack_1__ctor_mA968561DF990D7304E52EB03EAD5DB4D21D620D6(L_0, /*hidden argument*/Stack_1__ctor_mA968561DF990D7304E52EB03EAD5DB4D21D620D6_RuntimeMethod_var); V_0 = L_0; V_1 = __this; } IL_0008: { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_1 = V_1; NullCheck(L_1); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_2 = L_1->get_leftChild_0(); if (((ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C *)IsInstSealed((RuntimeObject*)L_2, ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var))) { goto IL_0022; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_3 = V_1; NullCheck(L_3); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_4 = L_3->get_leftChild_0(); if (!((SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD *)IsInstSealed((RuntimeObject*)L_4, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var))) { goto IL_0037; } } IL_0022: { Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * L_5 = V_0; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_6 = V_1; NullCheck(L_5); Stack_1_Push_m9954EB178F71F876D5CC04E2B2D2A2CF2E511EA7(L_5, L_6, /*hidden argument*/Stack_1_Push_m9954EB178F71F876D5CC04E2B2D2A2CF2E511EA7_RuntimeMethod_var); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_7 = V_1; NullCheck(L_7); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_8 = L_7->get_leftChild_0(); V_1 = ((InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *)CastclassClass((RuntimeObject*)L_8, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var)); goto IL_0008; } IL_0037: { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_9 = V_1; NullCheck(L_9); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_10 = L_9->get_leftChild_0(); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_11 = V_1; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_12 = ___symbols1; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_13 = ___positions2; NullCheck(L_10); VirtActionInvoker3< InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF *, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * >::Invoke(4 /* System.Void System.Xml.Schema.SyntaxTreeNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) */, L_10, L_11, L_12, L_13); } IL_0045: { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_14 = V_1; NullCheck(L_14); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_15 = L_14->get_rightChild_1(); if (!L_15) { goto IL_005b; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_16 = V_1; NullCheck(L_16); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_17 = L_16->get_rightChild_1(); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_18 = V_1; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_19 = ___symbols1; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_20 = ___positions2; NullCheck(L_17); VirtActionInvoker3< InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF *, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * >::Invoke(4 /* System.Void System.Xml.Schema.SyntaxTreeNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) */, L_17, L_18, L_19, L_20); } IL_005b: { Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * L_21 = V_0; NullCheck(L_21); int32_t L_22; L_22 = Stack_1_get_Count_mD1B493AD690EC374489F4BD30DACA1B208E8CB79_inline(L_21, /*hidden argument*/Stack_1_get_Count_mD1B493AD690EC374489F4BD30DACA1B208E8CB79_RuntimeMethod_var); if (!L_22) { goto IL_006c; } } { Stack_1_t1798B334C5A0D1818A8BF75551E2FC7E6C99CD6B * L_23 = V_0; NullCheck(L_23); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_24; L_24 = Stack_1_Pop_mE1E83DFD991F38A796542E364FBD8506D62B0329(L_23, /*hidden argument*/Stack_1_Pop_mE1E83DFD991F38A796542E364FBD8506D62B0329_RuntimeMethod_var); V_1 = L_24; goto IL_0045; } IL_006c: { return; } } // System.Void System.Xml.Schema.InteriorNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode_ExpandTree_m39F0398657911D0987B10E34E7F33F58445A28B1 (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___parent0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions2, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = __this->get_leftChild_0(); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_1 = ___symbols1; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_2 = ___positions2; NullCheck(L_0); VirtActionInvoker3< InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF *, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * >::Invoke(4 /* System.Void System.Xml.Schema.SyntaxTreeNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) */, L_0, __this, L_1, L_2); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_3 = __this->get_rightChild_1(); if (!L_3) { goto IL_0024; } } { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_4 = __this->get_rightChild_1(); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_5 = ___symbols1; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_6 = ___positions2; NullCheck(L_4); VirtActionInvoker3< InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF *, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * >::Invoke(4 /* System.Void System.Xml.Schema.SyntaxTreeNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) */, L_4, __this, L_5, L_6); } IL_0024: { return; } } // System.Void System.Xml.Schema.InteriorNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteriorNode__ctor_mE9F860A667BE626F44260612EC983CBDBD16B658 (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method) { { SyntaxTreeNode__ctor_m317889346E8C58842102DA39C8D783CCC2C098AD(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.LeafNode::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeafNode__ctor_mB2913A5E0A097153A953EF35C4160512ECC4EB15 (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, int32_t ___pos0, const RuntimeMethod* method) { { SyntaxTreeNode__ctor_m317889346E8C58842102DA39C8D783CCC2C098AD(__this, /*hidden argument*/NULL); int32_t L_0 = ___pos0; __this->set_pos_0(L_0); return; } } // System.Int32 System.Xml.Schema.LeafNode::get_Pos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_pos_0(); return L_0; } } // System.Void System.Xml.Schema.LeafNode::set_Pos(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeafNode_set_Pos_m3FE6DE6E690AFE747A6898DD4C6FBD5B1B8C3B0E (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_pos_0(L_0); return; } } // System.Void System.Xml.Schema.LeafNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeafNode_ExpandTree_mB8EACADBB7A98D5215401F0FA06C85C7A5F56D3C (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___parent0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.Schema.LeafNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeafNode_ConstructPos_mDE5FA344D1CC5F211A261C166B30856EF6F4A7C7 (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos2, const RuntimeMethod* method) { { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = ___firstpos0; int32_t L_1 = __this->get_pos_0(); NullCheck(L_0); BitSet_Set_m537E6F3B227408BA917DD58BAE786DCD659E6F77(L_0, L_1, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___lastpos1; int32_t L_3 = __this->get_pos_0(); NullCheck(L_2); BitSet_Set_m537E6F3B227408BA917DD58BAE786DCD659E6F77(L_2, L_3, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.Schema.LeafNode::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LeafNode_get_IsNullable_m69F3D7EB5352535AE5E0A547ED6EF7E2140CF493 (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, const RuntimeMethod* method) { { 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.Decimal System.Xml.Schema.LeafRangeNode::get_Max() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 LeafRangeNode_get_Max_m6A46C79DF4AE663EAC3FF0C57F34D08A24258A95 (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method) { { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = __this->get_max_2(); return L_0; } } // System.Decimal System.Xml.Schema.LeafRangeNode::get_Min() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 LeafRangeNode_get_Min_m9ACB52885522383A21EB6FB7116DB9CC618531D6 (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method) { { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = __this->get_min_1(); return L_0; } } // System.Xml.Schema.BitSet System.Xml.Schema.LeafRangeNode::get_NextIteration() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * LeafRangeNode_get_NextIteration_m4913B769997A91093E84E01B29E836E6F5C7C601 (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method) { { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = __this->get_nextIteration_3(); return L_0; } } // System.Void System.Xml.Schema.LeafRangeNode::set_NextIteration(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeafRangeNode_set_NextIteration_mA4BC4E01B8F5722FD0C158D90FAD54A3D47E8485 (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___value0, const RuntimeMethod* method) { { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = ___value0; __this->set_nextIteration_3(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.Xml.LineInfo::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo__ctor_mF771D95D602072F0371C3C2B9024EE0B4605ED91 (LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { { int32_t L_0 = ___lineNo0; __this->set_lineNo_0(L_0); int32_t L_1 = ___linePos1; __this->set_linePos_1(L_1); return; } } IL2CPP_EXTERN_C void LineInfo__ctor_mF771D95D602072F0371C3C2B9024EE0B4605ED91_AdjustorThunk (RuntimeObject * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { int32_t _offset = 1; LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * _thisAdjusted = reinterpret_cast(__this + _offset); LineInfo__ctor_mF771D95D602072F0371C3C2B9024EE0B4605ED91(_thisAdjusted, ___lineNo0, ___linePos1, method); } // System.Void System.Xml.LineInfo::Set(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99 (LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { { int32_t L_0 = ___lineNo0; __this->set_lineNo_0(L_0); int32_t L_1 = ___linePos1; __this->set_linePos_1(L_1); return; } } IL2CPP_EXTERN_C void LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99_AdjustorThunk (RuntimeObject * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { int32_t _offset = 1; LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * _thisAdjusted = reinterpret_cast(__this + _offset); LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99(_thisAdjusted, ___lineNo0, ___linePos1, 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.Exception System.Xml.Schema.ListFacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * ListFacetsChecker_CheckValueFacets_m3248C1C89CB61FD96A911393E053FBCED42ADB62 (ListFacetsChecker_t7CF5BFF43213BA5ECCAA29ADC28F4BB87882CD46 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142); s_Il2CppMethodInitialized = true; } RuntimeArray * V_0 = NULL; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t G_B3_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_0, RuntimeArray_il2cpp_TypeInfo_var)); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_1 = ___datatype1; NullCheck(L_1); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_2; L_2 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_1); V_1 = L_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = V_1; if (L_3) { goto IL_0014; } } { G_B3_0 = 0; goto IL_001a; } IL_0014: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_4 = V_1; NullCheck(L_4); int32_t L_5 = L_4->get_Flags_12(); G_B3_0 = ((int32_t)(L_5)); } IL_001a: { V_2 = G_B3_0; int32_t L_6 = V_2; if (!((int32_t)((int32_t)L_6&(int32_t)7))) { goto IL_0081; } } { RuntimeArray * L_7 = V_0; NullCheck(L_7); int32_t L_8; L_8 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_7, /*hidden argument*/NULL); V_3 = L_8; int32_t L_9 = V_2; if (!((int32_t)((int32_t)L_9&(int32_t)1))) { goto IL_0045; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_10 = V_1; NullCheck(L_10); int32_t L_11 = L_10->get_Length_0(); int32_t L_12 = V_3; if ((((int32_t)L_11) == ((int32_t)L_12))) { goto IL_0045; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_14 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_14, _stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780, L_13, /*hidden argument*/NULL); return L_14; } IL_0045: { int32_t L_15 = V_2; if (!((int32_t)((int32_t)L_15&(int32_t)2))) { goto IL_0063; } } { int32_t L_16 = V_3; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_17 = V_1; NullCheck(L_17); int32_t L_18 = L_17->get_MinLength_1(); if ((((int32_t)L_16) >= ((int32_t)L_18))) { goto IL_0063; } } { String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_20 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_20, _stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142, L_19, /*hidden argument*/NULL); return L_20; } IL_0063: { int32_t L_21 = V_2; if (!((int32_t)((int32_t)L_21&(int32_t)4))) { goto IL_0081; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_22 = V_1; NullCheck(L_22); int32_t L_23 = L_22->get_MaxLength_2(); int32_t L_24 = V_3; if ((((int32_t)L_23) >= ((int32_t)L_24))) { goto IL_0081; } } { String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_26 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_26, _stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA, L_25, /*hidden argument*/NULL); return L_26; } IL_0081: { int32_t L_27 = V_2; if (!((int32_t)((int32_t)L_27&(int32_t)((int32_t)16)))) { goto IL_00a7; } } { RuntimeObject * L_28 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_29 = V_1; NullCheck(L_29); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_30 = L_29->get_Enumeration_4(); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_31 = ___datatype1; bool L_32; L_32 = VirtFuncInvoker3< bool, RuntimeObject *, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(17 /* System.Boolean System.Xml.Schema.FacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_28, L_30, L_31); if (L_32) { goto IL_00a7; } } { String_t* L_33 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_34 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_34, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_33, /*hidden argument*/NULL); return L_34; } IL_00a7: { return (Exception_t *)NULL; } } // System.Boolean System.Xml.Schema.ListFacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListFacetsChecker_MatchEnumeration_m0D0E64B03B7FBED947B34F75109E5AB2F5D4044C (ListFacetsChecker_t7CF5BFF43213BA5ECCAA29ADC28F4BB87882CD46 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_001a; } IL_0004: { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; RuntimeObject * L_1 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = ___enumeration1; int32_t L_3 = V_0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3); NullCheck(L_0); int32_t L_5; L_5 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(11 /* System.Int32 System.Xml.Schema.XmlSchemaDatatype::Compare(System.Object,System.Object) */, L_0, L_1, L_4); if (L_5) { goto IL_0016; } } { return (bool)1; } IL_0016: { int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_001a: { int32_t L_7 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_8 = ___enumeration1; NullCheck(L_8); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_8); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_0004; } } { return (bool)0; } } // System.Void System.Xml.Schema.ListFacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListFacetsChecker__ctor_m932E0D4433FBD16CDF3610E95A794218E77E2A5B (ListFacetsChecker_t7CF5BFF43213BA5ECCAA29ADC28F4BB87882CD46 * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.ListMap::set_ChoiceMember(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_set_ChoiceMember_mD594E76DC46BE942E1F48BEA7BF641FACF4DD3F0 (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__choiceMember_1(L_0); return; } } // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::get_ItemInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * ListMap_get_ItemInfo_mA9B850D7B956E576FEDE1CBEFD168EC5556A971C (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = __this->get__itemInfo_0(); return L_0; } } // System.Void System.Xml.Serialization.ListMap::set_ItemInfo(System.Xml.Serialization.XmlTypeMapElementInfoList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_set_ItemInfo_m4FFE44794DBBCE25C4FFEE0077F4D7E092E8A2D5 (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * ___value0, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = ___value0; __this->set__itemInfo_0(L_0); return; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.Object,System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * ListMap_FindElement_m941772622DB0DC28973A1BD07F814400F74F661D (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, RuntimeObject * ___ob0, int32_t ___index1, RuntimeObject * ___memberValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeArray * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject* V_2 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_3 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_4 = NULL; RuntimeObject* V_5 = NULL; Type_t * V_6 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_7 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_8 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = __this->get__itemInfo_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0020; } } { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_2 = __this->get__itemInfo_0(); NullCheck(L_2); RuntimeObject * L_3; L_3 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, 0); return ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); } IL_0020: { String_t* L_4 = __this->get__choiceMember_1(); if (!L_4) { goto IL_00cc; } } { int32_t L_5 = ___index1; if ((((int32_t)L_5) == ((int32_t)(-1)))) { goto IL_00cc; } } { RuntimeObject * L_6 = ___ob0; String_t* L_7 = __this->get__choiceMember_1(); RuntimeObject * L_8; L_8 = XmlTypeMapMember_GetValue_m4D9079E71F9B6B38B2FEB2FA9E181F0600A6985E(L_6, L_7, /*hidden argument*/NULL); V_0 = ((RuntimeArray *)CastclassClass((RuntimeObject*)L_8, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeArray * L_9 = V_0; if (!L_9) { goto IL_0050; } } { int32_t L_10 = ___index1; RuntimeArray * L_11 = V_0; NullCheck(L_11); int32_t L_12; L_12 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_11, /*hidden argument*/NULL); if ((((int32_t)L_10) < ((int32_t)L_12))) { goto IL_006b; } } IL_0050: { String_t* L_13 = __this->get__choiceMember_1(); String_t* L_14; L_14 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D6EB261B6E5AC1669A2C14AFA8CA0EBB13AA820)), L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC7A7939E82BEFEF8DDB755713442AA62963F09F8)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_15 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListMap_FindElement_m941772622DB0DC28973A1BD07F814400F74F661D_RuntimeMethod_var))); } IL_006b: { RuntimeArray * L_16 = V_0; int32_t L_17 = ___index1; NullCheck(L_16); RuntimeObject * L_18; L_18 = Array_GetValue_m6E4274D23FFD6089882CD12B2F2EA615206792E1(L_16, L_17, /*hidden argument*/NULL); V_1 = L_18; XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_19 = __this->get__itemInfo_0(); NullCheck(L_19); RuntimeObject* L_20; L_20 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_19); V_2 = L_20; } IL_007f: try { // begin try (depth: 1) { goto IL_00ab; } IL_0081: { RuntimeObject* L_21 = V_2; NullCheck(L_21); RuntimeObject * L_22; L_22 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_21); V_3 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_22, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_23 = V_3; NullCheck(L_23); RuntimeObject * L_24; L_24 = XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline(L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_00ab; } } IL_0095: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_25 = V_3; NullCheck(L_25); RuntimeObject * L_26; L_26 = XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline(L_25, /*hidden argument*/NULL); RuntimeObject * L_27 = V_1; NullCheck(L_26); bool L_28; L_28 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_26, L_27); if (!L_28) { goto IL_00ab; } } IL_00a3: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_29 = V_3; V_4 = L_29; IL2CPP_LEAVE(0x171, FINALLY_00b8); } IL_00ab: { RuntimeObject* L_30 = V_2; NullCheck(L_30); bool L_31; L_31 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_30); if (L_31) { goto IL_0081; } } IL_00b3: { IL2CPP_LEAVE(0x16F, FINALLY_00b8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b8; } FINALLY_00b8: { // begin finally (depth: 1) { RuntimeObject* L_32 = V_2; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_32, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_33 = V_5; if (!L_33) { goto IL_00cb; } } IL_00c4: { RuntimeObject* L_34 = V_5; NullCheck(L_34); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_34); } IL_00cb: { IL2CPP_END_FINALLY(184) } } // end finally (depth: 1) IL2CPP_CLEANUP(184) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x171, IL_0171) IL2CPP_JUMP_TBL(0x16F, IL_016f) } IL_00cc: { RuntimeObject * L_35 = ___memberValue2; if (L_35) { goto IL_00d1; } } { return (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; } IL_00d1: { RuntimeObject * L_36 = ___memberValue2; NullCheck(L_36); Type_t * L_37; L_37 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_36, /*hidden argument*/NULL); V_6 = L_37; V_7 = (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_38 = __this->get__itemInfo_0(); NullCheck(L_38); RuntimeObject* L_39; L_39 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_38); V_2 = L_39; } IL_00e8: try { // begin try (depth: 1) { goto IL_014e; } IL_00ea: { RuntimeObject* L_40 = V_2; NullCheck(L_40); RuntimeObject * L_41; L_41 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_40); V_8 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_41, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_42 = V_8; NullCheck(L_42); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_43; L_43 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_42, /*hidden argument*/NULL); NullCheck(L_43); Type_t * L_44; L_44 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_43, /*hidden argument*/NULL); Type_t * L_45 = V_6; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_46; L_46 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_44, L_45, /*hidden argument*/NULL); if (!L_46) { goto IL_0112; } } IL_010c: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_47 = V_8; V_4 = L_47; IL2CPP_LEAVE(0x171, FINALLY_0158); } IL_0112: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_48 = V_8; NullCheck(L_48); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_49; L_49 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_48, /*hidden argument*/NULL); NullCheck(L_49); Type_t * L_50; L_50 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_49, /*hidden argument*/NULL); Type_t * L_51 = V_6; NullCheck(L_50); bool L_52; L_52 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_50, L_51); if (!L_52) { goto IL_014e; } } IL_0127: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_53 = V_7; if (!L_53) { goto IL_014a; } } IL_012b: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_54 = V_8; NullCheck(L_54); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_55; L_55 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_54, /*hidden argument*/NULL); NullCheck(L_55); Type_t * L_56; L_56 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_55, /*hidden argument*/NULL); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_57 = V_7; NullCheck(L_57); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_58; L_58 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_57, /*hidden argument*/NULL); NullCheck(L_58); Type_t * L_59; L_59 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_58, /*hidden argument*/NULL); NullCheck(L_56); bool L_60; L_60 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_56, L_59); if (!L_60) { goto IL_014e; } } IL_014a: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_61 = V_8; V_7 = L_61; } IL_014e: { RuntimeObject* L_62 = V_2; NullCheck(L_62); bool L_63; L_63 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_62); if (L_63) { goto IL_00ea; } } IL_0156: { IL2CPP_LEAVE(0x16C, FINALLY_0158); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0158; } FINALLY_0158: { // begin finally (depth: 1) { RuntimeObject* L_64 = V_2; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_64, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_65 = V_5; if (!L_65) { goto IL_016b; } } IL_0164: { RuntimeObject* L_66 = V_5; NullCheck(L_66); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_66); } IL_016b: { IL2CPP_END_FINALLY(344) } } // end finally (depth: 1) IL2CPP_CLEANUP(344) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x171, IL_0171) IL2CPP_JUMP_TBL(0x16C, IL_016c) } IL_016c: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_67 = V_7; return L_67; } IL_016f: { return (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; } IL_0171: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_68 = V_4; return L_68; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * ListMap_FindElement_mE9C39EDB5DC57541B1D7D3EF5C9824EDE9BF0984 (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, String_t* ___elementName0, String_t* ___ns1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_1 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = __this->get__itemInfo_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_003a; } IL_000e: { RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject * L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_2); V_1 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_4 = V_1; NullCheck(L_4); String_t* L_5; L_5 = XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline(L_4, /*hidden argument*/NULL); String_t* L_6 = ___elementName0; bool L_7; L_7 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_003a; } } IL_0028: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_8 = V_1; NullCheck(L_8); String_t* L_9; L_9 = XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2_inline(L_8, /*hidden argument*/NULL); String_t* L_10 = ___ns1; bool L_11; L_11 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_003a; } } IL_0036: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_12 = V_1; V_2 = L_12; IL2CPP_LEAVE(0x57, FINALLY_0044); } IL_003a: { RuntimeObject* L_13 = V_0; NullCheck(L_13); bool L_14; L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_13); if (L_14) { goto IL_000e; } } IL_0042: { IL2CPP_LEAVE(0x55, FINALLY_0044); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0044; } FINALLY_0044: { // begin finally (depth: 1) { RuntimeObject* L_15 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_16 = V_3; if (!L_16) { goto IL_0054; } } IL_004e: { RuntimeObject* L_17 = V_3; NullCheck(L_17); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_17); } IL_0054: { IL2CPP_END_FINALLY(68) } } // end finally (depth: 1) IL2CPP_CLEANUP(68) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x57, IL_0057) IL2CPP_JUMP_TBL(0x55, IL_0055) } IL_0055: { return (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; } IL_0057: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_18 = V_2; return L_18; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * ListMap_FindTextElement_mC6FCA94AC089B434D0B8E94417580594AD8B734B (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_1 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = __this->get__itemInfo_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0026; } IL_000e: { RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject * L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_2); V_1 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_4 = V_1; NullCheck(L_4); bool L_5; L_5 = XmlTypeMapElementInfo_get_IsTextElement_mA0787B243D97A4CEDC943B679D10CE2C37944766(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0026; } } IL_0022: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_6 = V_1; V_2 = L_6; IL2CPP_LEAVE(0x43, FINALLY_0030); } IL_0026: { RuntimeObject* L_7 = V_0; NullCheck(L_7); bool L_8; L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_7); if (L_8) { goto IL_000e; } } IL_002e: { IL2CPP_LEAVE(0x41, FINALLY_0030); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0030; } FINALLY_0030: { // begin finally (depth: 1) { RuntimeObject* L_9 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_3; if (!L_10) { goto IL_0040; } } IL_003a: { RuntimeObject* L_11 = V_3; NullCheck(L_11); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_11); } IL_0040: { IL2CPP_END_FINALLY(48) } } // end finally (depth: 1) IL2CPP_CLEANUP(48) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x43, IL_0043) IL2CPP_JUMP_TBL(0x41, IL_0041) } IL_0041: { return (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; } IL_0043: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_12 = V_2; return L_12; } } // System.Void System.Xml.Serialization.ListMap::GetArrayType(System.Int32,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_GetArrayType_m53CAAD15C4E292FF273B6FE3DC68B4CBA371F9FC (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, int32_t ___itemCount0, String_t** ___localName1, String_t** ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_1 = NULL; String_t* V_2 = NULL; { int32_t L_0 = ___itemCount0; if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_001c; } } { int32_t L_1 = ___itemCount0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_2); String_t* L_4; L_4 = String_Concat_mC8718EA35386A775C9A7983763DAA0A863623D73(_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, L_3, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, /*hidden argument*/NULL); V_0 = L_4; goto IL_0022; } IL_001c: { V_0 = _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6; } IL_0022: { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_5 = __this->get__itemInfo_0(); NullCheck(L_5); RuntimeObject * L_6; L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, 0); V_1 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_6, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_7 = V_1; NullCheck(L_7); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_8; L_8 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_7, /*hidden argument*/NULL); NullCheck(L_8); int32_t L_9; L_9 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(L_8, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)3)))) { goto IL_0065; } } { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_10 = V_1; NullCheck(L_10); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_11; L_11 = XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14_inline(L_10, /*hidden argument*/NULL); NullCheck(L_11); ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * L_12; L_12 = XmlMapping_get_ObjectMap_m7B06F5CA0492C1860E924B54F29D3ABF908F77C9_inline(L_11, /*hidden argument*/NULL); String_t** L_13 = ___ns2; NullCheck(((ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 *)CastclassClass((RuntimeObject*)L_12, ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948_il2cpp_TypeInfo_var))); ListMap_GetArrayType_m53CAAD15C4E292FF273B6FE3DC68B4CBA371F9FC(((ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 *)CastclassClass((RuntimeObject*)L_12, ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948_il2cpp_TypeInfo_var)), (-1), (String_t**)(&V_2), (String_t**)L_13, /*hidden argument*/NULL); String_t** L_14 = ___localName1; String_t* L_15 = V_2; String_t* L_16 = V_0; String_t* L_17; L_17 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_15, L_16, /*hidden argument*/NULL); *((RuntimeObject **)L_14) = (RuntimeObject *)L_17; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)L_17); return; } IL_0065: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_18 = V_1; NullCheck(L_18); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_19; L_19 = XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14_inline(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_008e; } } { String_t** L_20 = ___localName1; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_21 = V_1; NullCheck(L_21); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_22; L_22 = XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14_inline(L_21, /*hidden argument*/NULL); NullCheck(L_22); String_t* L_23; L_23 = XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99_inline(L_22, /*hidden argument*/NULL); String_t* L_24 = V_0; String_t* L_25; L_25 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_23, L_24, /*hidden argument*/NULL); *((RuntimeObject **)L_20) = (RuntimeObject *)L_25; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_20, (void*)(RuntimeObject *)L_25); String_t** L_26 = ___ns2; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_27 = V_1; NullCheck(L_27); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_28; L_28 = XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14_inline(L_27, /*hidden argument*/NULL); NullCheck(L_28); String_t* L_29; L_29 = XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline(L_28, /*hidden argument*/NULL); *((RuntimeObject **)L_26) = (RuntimeObject *)L_29; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_26, (void*)(RuntimeObject *)L_29); return; } IL_008e: { String_t** L_30 = ___localName1; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_31 = V_1; NullCheck(L_31); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_32; L_32 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_31, /*hidden argument*/NULL); NullCheck(L_32); String_t* L_33; L_33 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_32, /*hidden argument*/NULL); String_t* L_34 = V_0; String_t* L_35; L_35 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_33, L_34, /*hidden argument*/NULL); *((RuntimeObject **)L_30) = (RuntimeObject *)L_35; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_30, (void*)(RuntimeObject *)L_35); String_t** L_36 = ___ns2; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_37 = V_1; NullCheck(L_37); String_t* L_38; L_38 = XmlTypeMapElementInfo_get_DataTypeNamespace_m873F8E6FE5227A791696AC43A260E0F47AAD5BCA(L_37, /*hidden argument*/NULL); *((RuntimeObject **)L_36) = (RuntimeObject *)L_38; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_36, (void*)(RuntimeObject *)L_38); return; } } // System.Boolean System.Xml.Serialization.ListMap::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListMap_Equals_m8ED7DA3719A8D8DE4954474FDB1F725673B5E1D3 (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * V_0 = NULL; int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; V_0 = ((ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 *)IsInstClass((RuntimeObject*)L_0, ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948_il2cpp_TypeInfo_var)); ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * L_1 = V_0; if (L_1) { goto IL_000c; } } { return (bool)0; } IL_000c: { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_2 = __this->get__itemInfo_0(); NullCheck(L_2); int32_t L_3; L_3 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2); ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * L_4 = V_0; NullCheck(L_4); XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_5 = L_4->get__itemInfo_0(); NullCheck(L_5); int32_t L_6; L_6 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_5); if ((((int32_t)L_3) == ((int32_t)L_6))) { goto IL_0026; } } { return (bool)0; } IL_0026: { V_1 = 0; goto IL_004f; } IL_002a: { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_7 = __this->get__itemInfo_0(); int32_t L_8 = V_1; NullCheck(L_7); RuntimeObject * L_9; L_9 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_7, L_8); ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * L_10 = V_0; NullCheck(L_10); XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_11 = L_10->get__itemInfo_0(); int32_t L_12 = V_1; NullCheck(L_11); RuntimeObject * L_13; L_13 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_11, L_12); NullCheck(L_9); bool L_14; L_14 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_9, L_13); if (L_14) { goto IL_004b; } } { return (bool)0; } IL_004b: { int32_t L_15 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_004f: { int32_t L_16 = V_1; XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_17 = __this->get__itemInfo_0(); NullCheck(L_17); int32_t L_18; L_18 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_17); if ((((int32_t)L_16) < ((int32_t)L_18))) { goto IL_002a; } } { return (bool)1; } } // System.Int32 System.Xml.Serialization.ListMap::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListMap_GetHashCode_m46ECE833DF405582984472957F9CDAEB9F3D0381 (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Object_GetHashCode_m29972277898725CF5403FB9765F335F0FAEA8162(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Xml.Serialization.ListMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap__ctor_m35415A73A7CA6CE2B3ADB613291DEF2CB39CC5DA (ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * __this, const RuntimeMethod* method) { { ObjectMap__ctor_mF37BA5AFF032BFC18189BA4CD22381C4D19AE3B5(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.MiscFacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MiscFacetsChecker__ctor_mBF0B1718178780AB8BC8835E793AD268DED3DBD3 (MiscFacetsChecker_t39E6077D7971C53A40D38860A9418C695B194DB6 * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.MonoTODOAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_m6D144D8AAB3713DB65C523EF574FC64745DC7C47 (MonoTODOAttribute_tF8137E40759566B832E7E9EC86E2C824085A7F47 * __this, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.NameTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable__ctor_mE309EB2FC114B34D12ED3FBC00E878AF6A154CB0 (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNameTable__ctor_mB3D038C2C7617EC6321F39FEF5FE0B98100C1F22(__this, /*hidden argument*/NULL); __this->set_mask_2(((int32_t)31)); int32_t L_0 = __this->get_mask_2(); EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_1 = (EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D*)(EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D*)SZArrayNew(EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); __this->set_entries_0(L_1); int32_t L_2; L_2 = Environment_get_TickCount_mB050D9576FD146AEAA27125F6866EBB9B898BBC1(/*hidden argument*/NULL); __this->set_hashCodeRandomizer_3(L_2); return; } } // System.String System.Xml.NameTable::Add(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_Add_mFAC405992E1A1D6249B89385195AE8EC6A9A4BCA (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, String_t* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * V_3 = NULL; { String_t* L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NameTable_Add_mFAC405992E1A1D6249B89385195AE8EC6A9A4BCA_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___key0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (L_4) { goto IL_001e; } } { String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_5; } IL_001e: { int32_t L_6 = V_0; int32_t L_7 = __this->get_hashCodeRandomizer_3(); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)); V_2 = 0; goto IL_003d; } IL_002b: { int32_t L_8 = V_1; int32_t L_9 = V_1; String_t* L_10 = ___key0; int32_t L_11 = V_2; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_9<<(int32_t)7))^(int32_t)L_12)))); int32_t L_13 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_003d: { int32_t L_14 = V_2; String_t* L_15 = ___key0; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL); if ((((int32_t)L_14) < ((int32_t)L_16))) { goto IL_002b; } } { int32_t L_17 = V_1; int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)((int32_t)L_18>>(int32_t)((int32_t)17))))); int32_t L_19 = V_1; int32_t L_20 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)((int32_t)((int32_t)L_20>>(int32_t)((int32_t)11))))); int32_t L_21 = V_1; int32_t L_22 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)((int32_t)L_22>>(int32_t)5)))); EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_23 = __this->get_entries_0(); int32_t L_24 = V_1; int32_t L_25 = __this->get_mask_2(); NullCheck(L_23); int32_t L_26 = ((int32_t)((int32_t)L_24&(int32_t)L_25)); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_27 = (L_23)->GetAt(static_cast(L_26)); V_3 = L_27; goto IL_0091; } IL_006c: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_28 = V_3; NullCheck(L_28); int32_t L_29 = L_28->get_hashCode_1(); int32_t L_30 = V_1; if ((!(((uint32_t)L_29) == ((uint32_t)L_30)))) { goto IL_008a; } } { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_31 = V_3; NullCheck(L_31); String_t* L_32 = L_31->get_str_0(); String_t* L_33 = ___key0; NullCheck(L_32); bool L_34; L_34 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_32, L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_008a; } } { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_35 = V_3; NullCheck(L_35); String_t* L_36 = L_35->get_str_0(); return L_36; } IL_008a: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_37 = V_3; NullCheck(L_37); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_38 = L_37->get_next_2(); V_3 = L_38; } IL_0091: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_39 = V_3; if (L_39) { goto IL_006c; } } { String_t* L_40 = ___key0; int32_t L_41 = V_1; String_t* L_42; L_42 = NameTable_AddEntry_m16A7B739127C773E57A5DB1B8FA530A65B9CF249(__this, L_40, L_41, /*hidden argument*/NULL); return L_42; } } // System.String System.Xml.NameTable::Add(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_Add_mB8D74953E2E0F43339548097DA20A8E2A0D2D692 (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___key0, int32_t ___start1, int32_t ___len2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * V_3 = NULL; { int32_t L_0 = ___len2; if (L_0) { goto IL_0009; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_0009: { int32_t L_2 = ___len2; int32_t L_3 = __this->get_hashCodeRandomizer_3(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)); int32_t L_4 = V_0; int32_t L_5 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = ___key0; int32_t L_7 = ___start1; NullCheck(L_6); int32_t L_8 = L_7; uint16_t L_9 = (uint16_t)(L_6)->GetAt(static_cast(L_8)); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5<<(int32_t)7))^(int32_t)L_9)))); int32_t L_10 = ___start1; int32_t L_11 = ___len2; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); int32_t L_12 = ___start1; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); goto IL_0034; } IL_0026: { int32_t L_13 = V_0; int32_t L_14 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_15 = ___key0; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = L_16; uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast(L_17)); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_14<<(int32_t)7))^(int32_t)L_18)))); int32_t L_19 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0034: { int32_t L_20 = V_2; int32_t L_21 = V_1; if ((((int32_t)L_20) < ((int32_t)L_21))) { goto IL_0026; } } { int32_t L_22 = V_0; int32_t L_23 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)((int32_t)((int32_t)L_23>>(int32_t)((int32_t)17))))); int32_t L_24 = V_0; int32_t L_25 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)((int32_t)((int32_t)L_25>>(int32_t)((int32_t)11))))); int32_t L_26 = V_0; int32_t L_27 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)((int32_t)((int32_t)L_27>>(int32_t)5)))); EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_28 = __this->get_entries_0(); int32_t L_29 = V_0; int32_t L_30 = __this->get_mask_2(); NullCheck(L_28); int32_t L_31 = ((int32_t)((int32_t)L_29&(int32_t)L_30)); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_32 = (L_28)->GetAt(static_cast(L_31)); V_3 = L_32; goto IL_0085; } IL_005e: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_33 = V_3; NullCheck(L_33); int32_t L_34 = L_33->get_hashCode_1(); int32_t L_35 = V_0; if ((!(((uint32_t)L_34) == ((uint32_t)L_35)))) { goto IL_007e; } } { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_36 = V_3; NullCheck(L_36); String_t* L_37 = L_36->get_str_0(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_38 = ___key0; int32_t L_39 = ___start1; int32_t L_40 = ___len2; bool L_41; L_41 = NameTable_TextEquals_mA66DACCA97D500F7FE6EE63DE5D1BE19A772C8F3(L_37, L_38, L_39, L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_007e; } } { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_42 = V_3; NullCheck(L_42); String_t* L_43 = L_42->get_str_0(); return L_43; } IL_007e: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_44 = V_3; NullCheck(L_44); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_45 = L_44->get_next_2(); V_3 = L_45; } IL_0085: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_46 = V_3; if (L_46) { goto IL_005e; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_47 = ___key0; int32_t L_48 = ___start1; int32_t L_49 = ___len2; String_t* L_50; L_50 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_47, L_48, L_49, /*hidden argument*/NULL); int32_t L_51 = V_0; String_t* L_52; L_52 = NameTable_AddEntry_m16A7B739127C773E57A5DB1B8FA530A65B9CF249(__this, L_50, L_51, /*hidden argument*/NULL); return L_52; } } // System.String System.Xml.NameTable::Get(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_Get_m37C26ECD83DA1BBDA73BE202814DD1CC5CE8D9AF (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * V_2 = NULL; { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NameTable_Get_m37C26ECD83DA1BBDA73BE202814DD1CC5CE8D9AF_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_001c; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_4; } IL_001c: { String_t* L_5 = ___value0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL); int32_t L_7 = __this->get_hashCodeRandomizer_3(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)); V_1 = 0; goto IL_0040; } IL_002e: { int32_t L_8 = V_0; int32_t L_9 = V_0; String_t* L_10 = ___value0; int32_t L_11 = V_1; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_9<<(int32_t)7))^(int32_t)L_12)))); int32_t L_13 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0040: { int32_t L_14 = V_1; String_t* L_15 = ___value0; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL); if ((((int32_t)L_14) < ((int32_t)L_16))) { goto IL_002e; } } { int32_t L_17 = V_0; int32_t L_18 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)((int32_t)L_18>>(int32_t)((int32_t)17))))); int32_t L_19 = V_0; int32_t L_20 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)((int32_t)((int32_t)L_20>>(int32_t)((int32_t)11))))); int32_t L_21 = V_0; int32_t L_22 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)((int32_t)L_22>>(int32_t)5)))); EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_23 = __this->get_entries_0(); int32_t L_24 = V_0; int32_t L_25 = __this->get_mask_2(); NullCheck(L_23); int32_t L_26 = ((int32_t)((int32_t)L_24&(int32_t)L_25)); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_27 = (L_23)->GetAt(static_cast(L_26)); V_2 = L_27; goto IL_0094; } IL_006f: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_28 = V_2; NullCheck(L_28); int32_t L_29 = L_28->get_hashCode_1(); int32_t L_30 = V_0; if ((!(((uint32_t)L_29) == ((uint32_t)L_30)))) { goto IL_008d; } } { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_31 = V_2; NullCheck(L_31); String_t* L_32 = L_31->get_str_0(); String_t* L_33 = ___value0; NullCheck(L_32); bool L_34; L_34 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_32, L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_008d; } } { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_35 = V_2; NullCheck(L_35); String_t* L_36 = L_35->get_str_0(); return L_36; } IL_008d: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_37 = V_2; NullCheck(L_37); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_38 = L_37->get_next_2(); V_2 = L_38; } IL_0094: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_39 = V_2; if (L_39) { goto IL_006f; } } { return (String_t*)NULL; } } // System.String System.Xml.NameTable::AddEntry(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_AddEntry_m16A7B739127C773E57A5DB1B8FA530A65B9CF249 (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, String_t* ___str0, int32_t ___hashCode1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Entry_tE04CA3878430F262AD43F80C045C96A425BCE239_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * V_1 = NULL; int32_t V_2 = 0; { int32_t L_0 = ___hashCode1; int32_t L_1 = __this->get_mask_2(); V_0 = ((int32_t)((int32_t)L_0&(int32_t)L_1)); String_t* L_2 = ___str0; int32_t L_3 = ___hashCode1; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_4 = __this->get_entries_0(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_7 = (L_4)->GetAt(static_cast(L_6)); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_8 = (Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 *)il2cpp_codegen_object_new(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239_il2cpp_TypeInfo_var); Entry__ctor_m81F1EF4CD01E86FB47FBBE7910E0D462408DA46A(L_8, L_2, L_3, L_7, /*hidden argument*/NULL); V_1 = L_8; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_9 = __this->get_entries_0(); int32_t L_10 = V_0; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_11 = V_1; NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast(L_10), (Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 *)L_11); int32_t L_12 = __this->get_count_1(); V_2 = L_12; int32_t L_13 = V_2; __this->set_count_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); int32_t L_14 = V_2; int32_t L_15 = __this->get_mask_2(); if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0041; } } { NameTable_Grow_mFA0DDBFC07DC55BA7CC3CE4E5E28110A3610FAE7(__this, /*hidden argument*/NULL); } IL_0041: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_16 = V_1; NullCheck(L_16); String_t* L_17 = L_16->get_str_0(); return L_17; } } // System.Void System.Xml.NameTable::Grow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable_Grow_mFA0DDBFC07DC55BA7CC3CE4E5E28110A3610FAE7 (NameTable_t3BB114C691B98D26C27BAF10FFFE11D974EE4728 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* V_1 = NULL; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* V_2 = NULL; int32_t V_3 = 0; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * V_4 = NULL; int32_t V_5 = 0; { int32_t L_0 = __this->get_mask_2(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)), (int32_t)1)); EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_1 = __this->get_entries_0(); V_1 = L_1; int32_t L_2 = V_0; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_3 = (EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D*)(EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D*)SZArrayNew(EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); V_2 = L_3; V_3 = 0; goto IL_0053; } IL_001f: { EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_4 = V_1; int32_t L_5 = V_3; NullCheck(L_4); int32_t L_6 = L_5; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_7 = (L_4)->GetAt(static_cast(L_6)); V_4 = L_7; goto IL_004b; } IL_0026: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_8 = V_4; NullCheck(L_8); int32_t L_9 = L_8->get_hashCode_1(); int32_t L_10 = V_0; V_5 = ((int32_t)((int32_t)L_9&(int32_t)L_10)); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_11 = V_4; NullCheck(L_11); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_12 = L_11->get_next_2(); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_13 = V_4; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_14 = V_2; int32_t L_15 = V_5; NullCheck(L_14); int32_t L_16 = L_15; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_17 = (L_14)->GetAt(static_cast(L_16)); NullCheck(L_13); L_13->set_next_2(L_17); EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_18 = V_2; int32_t L_19 = V_5; Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_20 = V_4; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_20); (L_18)->SetAt(static_cast(L_19), (Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 *)L_20); V_4 = L_12; } IL_004b: { Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_21 = V_4; if (L_21) { goto IL_0026; } } { int32_t L_22 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_0053: { int32_t L_23 = V_3; EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_24 = V_1; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))) { goto IL_001f; } } { EntryU5BU5D_tE4CC6F76D4A31BE3A6B656E95A290559A0DF610D* L_25 = V_2; __this->set_entries_0(L_25); int32_t L_26 = V_0; __this->set_mask_2(L_26); return; } } // System.Boolean System.Xml.NameTable::TextEquals(System.String,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NameTable_TextEquals_mA66DACCA97D500F7FE6EE63DE5D1BE19A772C8F3 (String_t* ___str10, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___str21, int32_t ___str2Start2, int32_t ___str2Length3, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ___str10; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); int32_t L_2 = ___str2Length3; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_000b; } } { return (bool)0; } IL_000b: { V_0 = 0; goto IL_0023; } IL_000f: { String_t* L_3 = ___str10; int32_t L_4 = V_0; NullCheck(L_3); Il2CppChar L_5; L_5 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_3, L_4, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = ___str21; int32_t L_7 = ___str2Start2; int32_t L_8 = V_0; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); uint16_t L_10 = (uint16_t)(L_6)->GetAt(static_cast(L_9)); if ((((int32_t)L_5) == ((int32_t)L_10))) { goto IL_001f; } } { return (bool)0; } IL_001f: { int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0023: { int32_t L_12 = V_0; String_t* L_13 = ___str10; NullCheck(L_13); int32_t L_14; L_14 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_13, /*hidden argument*/NULL); if ((((int32_t)L_12) < ((int32_t)L_14))) { goto IL_000f; } } { return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.NamespaceList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceList__ctor_m9B1C40E79C3C2AFC2D359C51662D9FFA98E3EFE9 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.NamespaceList::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceList__ctor_m9566E7F3D9A2AD24250815C97C373C6F62084C46 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, String_t* ___namespaces0, String_t* ___targetNamespace1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57DE43D7AAF6D9F023DCBB173DB2DE97E7C8159D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72FF14B4B66FD46769A50C19BE106295D013F7FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE048C911CC80F58A56909CF61926F34A8D80D097); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E7E0C8B04838BD9F2F8EC726E94F763A5EB694); s_Il2CppMethodInitialized = true; } StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_0 = NULL; int32_t V_1 = 0; { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___targetNamespace1; __this->set_targetNamespace_2(L_0); String_t* L_1 = ___namespaces0; NullCheck(L_1); String_t* L_2; L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_1, /*hidden argument*/NULL); ___namespaces0 = L_2; String_t* L_3 = ___namespaces0; bool L_4; L_4 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_3, _stringLiteralE2E7E0C8B04838BD9F2F8EC726E94F763A5EB694, /*hidden argument*/NULL); if (L_4) { goto IL_002a; } } { String_t* L_5 = ___namespaces0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0032; } } IL_002a: { __this->set_type_0(0); return; } IL_0032: { String_t* L_7 = ___namespaces0; bool L_8; L_8 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_7, _stringLiteral72FF14B4B66FD46769A50C19BE106295D013F7FA, /*hidden argument*/NULL); if (!L_8) { goto IL_0047; } } { __this->set_type_0(1); return; } IL_0047: { __this->set_type_0(2); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_9 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_9, /*hidden argument*/NULL); __this->set_set_1(L_9); String_t* L_10 = ___namespaces0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11; L_11 = XmlConvert_SplitString_m5EDBDD6AC9A11F521EF5FAD18E1F37CF023163F1(L_10, /*hidden argument*/NULL); V_0 = L_11; V_1 = 0; goto IL_00c6; } IL_0064: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = V_0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = L_13; String_t* L_15 = (L_12)->GetAt(static_cast(L_14)); bool L_16; L_16 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_15, _stringLiteralE048C911CC80F58A56909CF61926F34A8D80D097, /*hidden argument*/NULL); if (!L_16) { goto IL_008a; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_17 = __this->get_set_1(); String_t* L_18 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_17); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_17, L_18, L_19); goto IL_00c2; } IL_008a: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = V_0; int32_t L_21 = V_1; NullCheck(L_20); int32_t L_22 = L_21; String_t* L_23 = (L_20)->GetAt(static_cast(L_22)); bool L_24; L_24 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_23, _stringLiteral57DE43D7AAF6D9F023DCBB173DB2DE97E7C8159D, /*hidden argument*/NULL); if (!L_24) { goto IL_00a8; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_25 = __this->get_set_1(); String_t* L_26 = ___targetNamespace1; String_t* L_27 = ___targetNamespace1; NullCheck(L_25); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_25, L_26, L_27); goto IL_00c2; } IL_00a8: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_28 = V_0; int32_t L_29 = V_1; NullCheck(L_28); int32_t L_30 = L_29; String_t* L_31 = (L_28)->GetAt(static_cast(L_30)); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_32; L_32 = XmlConvert_ToUri_m70145E949FD362A0D446630B25B00B1D000786AE(L_31, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_33 = __this->get_set_1(); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = V_0; int32_t L_35 = V_1; NullCheck(L_34); int32_t L_36 = L_35; String_t* L_37 = (L_34)->GetAt(static_cast(L_36)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = V_0; int32_t L_39 = V_1; NullCheck(L_38); int32_t L_40 = L_39; String_t* L_41 = (L_38)->GetAt(static_cast(L_40)); NullCheck(L_33); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_33, L_37, L_41); } IL_00c2: { int32_t L_42 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c6: { int32_t L_43 = V_1; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = V_0; NullCheck(L_44); if ((((int32_t)L_43) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_44)->max_length)))))) { goto IL_0064; } } { return; } } // System.Xml.Schema.NamespaceList/ListType System.Xml.Schema.NamespaceList::get_Type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NamespaceList_get_Type_m9B28FA8BE57D9748D681F8239C80B348F0A8FF02 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_type_0(); return L_0; } } // System.String System.Xml.Schema.NamespaceList::get_Excluded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceList_get_Excluded_mF6AFE63E06E2842A9F193A6A3BC7F7C34B436A33 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_targetNamespace_2(); return L_0; } } // System.Collections.ICollection System.Xml.Schema.NamespaceList::get_Enumerate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NamespaceList_get_Enumerate_m287DD831CF2AE5099998D22EFCEA6769A9D546B9 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_type_0(); V_0 = L_0; int32_t L_1 = V_0; if ((!(((uint32_t)L_1) > ((uint32_t)1)))) { goto IL_001b; } } { int32_t L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)2)))) { goto IL_001b; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = __this->get_set_1(); NullCheck(L_3); RuntimeObject* L_4; L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(25 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_3); return L_4; } IL_001b: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_5 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_m26BD2B620B5FBFA4376C16011C60E18A2EDC8E96(L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NamespaceList_get_Enumerate_m287DD831CF2AE5099998D22EFCEA6769A9D546B9_RuntimeMethod_var))); } } // System.Boolean System.Xml.Schema.NamespaceList::Allows(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NamespaceList_Allows_m6D60E136EE49346E836872151F189DADA5E4D576 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, String_t* ___ns0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_type_0(); V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_001b; } case 1: { goto IL_001d; } case 2: { goto IL_0037; } } } { goto IL_0047; } IL_001b: { return (bool)1; } IL_001d: { String_t* L_2 = ___ns0; String_t* L_3 = __this->get_targetNamespace_2(); bool L_4; L_4 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0035; } } { String_t* L_5 = ___ns0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL); return (bool)((!(((uint32_t)L_6) <= ((uint32_t)0)))? 1 : 0); } IL_0035: { return (bool)0; } IL_0037: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_7 = __this->get_set_1(); String_t* L_8 = ___ns0; NullCheck(L_7); RuntimeObject * L_9; L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8); return (bool)((!(((RuntimeObject*)(RuntimeObject *)L_9) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } IL_0047: { return (bool)0; } } // System.Boolean System.Xml.Schema.NamespaceList::Allows(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NamespaceList_Allows_m1C718062930547A9C254F07C63A8F034B6B2A29E (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname0, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___qname0; NullCheck(L_0); String_t* L_1; L_1 = XmlQualifiedName_get_Namespace_m2693E9023068C90F95C47FDB5685F1563ECE0025_inline(L_0, /*hidden argument*/NULL); bool L_2; L_2 = VirtFuncInvoker1< bool, String_t* >::Invoke(4 /* System.Boolean System.Xml.Schema.NamespaceList::Allows(System.String) */, __this, L_1); return L_2; } } // System.String System.Xml.Schema.NamespaceList::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceList_ToString_mF69A3FBE63068A025DAF8351B9C43C2C6F92E3E9 (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57DE43D7AAF6D9F023DCBB173DB2DE97E7C8159D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72FF14B4B66FD46769A50C19BE106295D013F7FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE048C911CC80F58A56909CF61926F34A8D80D097); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E7E0C8B04838BD9F2F8EC726E94F763A5EB694); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; StringBuilder_t * V_1 = NULL; bool V_2 = false; RuntimeObject* V_3 = NULL; String_t* V_4 = NULL; RuntimeObject* V_5 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { int32_t L_0 = __this->get_type_0(); V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_001e; } case 1: { goto IL_0024; } case 2: { goto IL_002a; } } } { goto IL_00c7; } IL_001e: { return _stringLiteralE2E7E0C8B04838BD9F2F8EC726E94F763A5EB694; } IL_0024: { return _stringLiteral72FF14B4B66FD46769A50C19BE106295D013F7FA; } IL_002a: { StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_2, /*hidden argument*/NULL); V_1 = L_2; V_2 = (bool)1; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = __this->get_set_1(); NullCheck(L_3); RuntimeObject* L_4; L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(25 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_3); NullCheck(L_4); RuntimeObject* L_5; L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_4); V_3 = L_5; } IL_0043: try { // begin try (depth: 1) { goto IL_00a2; } IL_0045: { RuntimeObject* L_6 = V_3; NullCheck(L_6); RuntimeObject * L_7; L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_6); V_4 = ((String_t*)CastclassSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var)); bool L_8 = V_2; if (!L_8) { goto IL_0059; } } IL_0055: { V_2 = (bool)0; goto IL_0065; } IL_0059: { StringBuilder_t * L_9 = V_1; NullCheck(L_9); StringBuilder_t * L_10; L_10 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_9, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, /*hidden argument*/NULL); } IL_0065: { String_t* L_11 = V_4; String_t* L_12 = __this->get_targetNamespace_2(); bool L_13; L_13 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0082; } } IL_0074: { StringBuilder_t * L_14 = V_1; NullCheck(L_14); StringBuilder_t * L_15; L_15 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_14, _stringLiteral57DE43D7AAF6D9F023DCBB173DB2DE97E7C8159D, /*hidden argument*/NULL); goto IL_00a2; } IL_0082: { String_t* L_16 = V_4; NullCheck(L_16); int32_t L_17; L_17 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0099; } } IL_008b: { StringBuilder_t * L_18 = V_1; NullCheck(L_18); StringBuilder_t * L_19; L_19 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_18, _stringLiteralE048C911CC80F58A56909CF61926F34A8D80D097, /*hidden argument*/NULL); goto IL_00a2; } IL_0099: { StringBuilder_t * L_20 = V_1; String_t* L_21 = V_4; NullCheck(L_20); StringBuilder_t * L_22; L_22 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_20, L_21, /*hidden argument*/NULL); } IL_00a2: { RuntimeObject* L_23 = V_3; NullCheck(L_23); bool L_24; L_24 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_23); if (L_24) { goto IL_0045; } } IL_00aa: { IL2CPP_LEAVE(0xC0, FINALLY_00ac); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ac; } FINALLY_00ac: { // begin finally (depth: 1) { RuntimeObject* L_25 = V_3; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_25, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_26 = V_5; if (!L_26) { goto IL_00bf; } } IL_00b8: { RuntimeObject* L_27 = V_5; NullCheck(L_27); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_27); } IL_00bf: { IL2CPP_END_FINALLY(172) } } // end finally (depth: 1) IL2CPP_CLEANUP(172) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC0, IL_00c0) } IL_00c0: { StringBuilder_t * L_28 = V_1; NullCheck(L_28); String_t* L_29; L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); return L_29; } IL_00c7: { String_t* L_30 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_30; } } #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.Xml.Schema.NamespaceListNode::.ctor(System.Xml.Schema.NamespaceList,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceListNode__ctor_m440B6F48BB5C47F8FF2CAEFDC5B2FC17579B72FA (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___namespaceList0, RuntimeObject * ___particle1, const RuntimeMethod* method) { { SyntaxTreeNode__ctor_m317889346E8C58842102DA39C8D783CCC2C098AD(__this, /*hidden argument*/NULL); NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_0 = ___namespaceList0; __this->set_namespaceList_0(L_0); RuntimeObject * L_1 = ___particle1; __this->set_particle_1(L_1); return; } } // System.Collections.ICollection System.Xml.Schema.NamespaceListNode::GetResolvedSymbols(System.Xml.Schema.SymbolsDictionary) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NamespaceListNode_GetResolvedSymbols_m62D6AD3C91C756B1F6267D6756412BA0D2EC39E0 (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * __this, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols0, const RuntimeMethod* method) { { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = ___symbols0; NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_1 = __this->get_namespaceList_0(); NullCheck(L_0); RuntimeObject* L_2; L_2 = SymbolsDictionary_GetNamespaceListSymbols_mC58319A3C142FCFF7D7BC233CD93C6A173019B4D(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Xml.Schema.NamespaceListNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceListNode_ExpandTree_m1159CA607D2D1F9975696E754FB512BFA51A6373 (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___parent0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * V_0 = NULL; RuntimeObject* V_1 = NULL; int32_t V_2 = 0; LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { V_0 = (SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 *)NULL; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = ___symbols1; RuntimeObject* L_1; L_1 = VirtFuncInvoker1< RuntimeObject*, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * >::Invoke(8 /* System.Collections.ICollection System.Xml.Schema.NamespaceListNode::GetResolvedSymbols(System.Xml.Schema.SymbolsDictionary) */, __this, L_0); NullCheck(L_1); RuntimeObject* L_2; L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_1); V_1 = L_2; } IL_000f: try { // begin try (depth: 1) { goto IL_0061; } IL_0011: { RuntimeObject* L_3 = V_1; NullCheck(L_3); RuntimeObject * L_4; L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_3); V_2 = ((*(int32_t*)((int32_t*)UnBox(L_4, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_5 = ___symbols1; int32_t L_6 = V_2; NullCheck(L_5); RuntimeObject * L_7; L_7 = SymbolsDictionary_GetParticle_m9C9C3A7E25975924A53A4B497290AC6495AB5A0F(L_5, L_6, /*hidden argument*/NULL); RuntimeObject * L_8 = __this->get_particle_1(); if ((((RuntimeObject*)(RuntimeObject *)L_7) == ((RuntimeObject*)(RuntimeObject *)L_8))) { goto IL_0033; } } IL_002c: { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_9 = ___symbols1; NullCheck(L_9); SymbolsDictionary_set_IsUpaEnforced_mE9490686782C4AFB2146299CD8EECD5B061FADBE_inline(L_9, (bool)0, /*hidden argument*/NULL); } IL_0033: { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_10 = ___positions2; int32_t L_11 = V_2; RuntimeObject * L_12 = __this->get_particle_1(); NullCheck(L_10); int32_t L_13; L_13 = Positions_Add_mEC7D6654760E4112DF78A37BE117A81C3352C6B6(L_10, L_11, L_12, /*hidden argument*/NULL); LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_14 = (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC *)il2cpp_codegen_object_new(LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var); LeafNode__ctor_mB2913A5E0A097153A953EF35C4160512ECC4EB15(L_14, L_13, /*hidden argument*/NULL); V_3 = L_14; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_15 = V_0; if (L_15) { goto IL_004d; } } IL_0049: { LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_16 = V_3; V_0 = L_16; goto IL_0061; } IL_004d: { ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C * L_17 = (ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C *)il2cpp_codegen_object_new(ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var); ChoiceNode__ctor_mA0FF108CA99E7EB7BCEC10203E05004938640FEF(L_17, /*hidden argument*/NULL); ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C * L_18 = L_17; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_19 = V_0; NullCheck(L_18); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_18, L_19, /*hidden argument*/NULL); ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C * L_20 = L_18; LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_21 = V_3; NullCheck(L_20); InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline(L_20, L_21, /*hidden argument*/NULL); V_0 = L_20; } IL_0061: { RuntimeObject* L_22 = V_1; NullCheck(L_22); bool L_23; L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_22); if (L_23) { goto IL_0011; } } IL_0069: { IL2CPP_LEAVE(0x7F, FINALLY_006b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_006b; } FINALLY_006b: { // begin finally (depth: 1) { RuntimeObject* L_24 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_24, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_25 = V_4; if (!L_25) { goto IL_007e; } } IL_0077: { RuntimeObject* L_26 = V_4; NullCheck(L_26); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_26); } IL_007e: { IL2CPP_END_FINALLY(107) } } // end finally (depth: 1) IL2CPP_CLEANUP(107) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x7F, IL_007f) } IL_007f: { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_27 = ___parent0; NullCheck(L_27); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_28; L_28 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_27, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 *)L_28) == ((RuntimeObject*)(NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 *)__this)))) { goto IL_0090; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_29 = ___parent0; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_30 = V_0; NullCheck(L_29); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_29, L_30, /*hidden argument*/NULL); return; } IL_0090: { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_31 = ___parent0; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_32 = V_0; NullCheck(L_31); InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline(L_31, L_32, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.NamespaceListNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceListNode_ConstructPos_mA0501C5C1CCB29FCBF3FA3623A7B4B03419F7312 (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos2, const RuntimeMethod* method) { { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_m26BD2B620B5FBFA4376C16011C60E18A2EDC8E96(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NamespaceListNode_ConstructPos_mA0501C5C1CCB29FCBF3FA3623A7B4B03419F7312_RuntimeMethod_var))); } } // System.Boolean System.Xml.Schema.NamespaceListNode::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NamespaceListNode_get_IsNullable_mD3115EB3CB9CE994333EEB2A726644BC5F376C66 (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * __this, const RuntimeMethod* method) { { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_m26BD2B620B5FBFA4376C16011C60E18A2EDC8E96(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NamespaceListNode_get_IsNullable_mD3115EB3CB9CE994333EEB2A726644BC5F376C66_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.Xml.Schema.NfaContentValidator::.ctor(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions,System.Int32,System.Xml.Schema.XmlSchemaContentType,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NfaContentValidator__ctor_m507762DC326C895250C7D66F3D021A51B80985FA (NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols2, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions3, int32_t ___endMarkerPos4, int32_t ___contentType5, bool ___isOpen6, bool ___isEmptiable7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___contentType5; bool L_1 = ___isOpen6; bool L_2 = ___isEmptiable7; IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator__ctor_m70BBAD5BF4E84F43ABC115AE8F14B47F9C357435(__this, L_0, L_1, L_2, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_3 = ___firstpos0; __this->set_firstpos_7(L_3); BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_4 = ___followpos1; __this->set_followpos_8(L_4); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_5 = ___symbols2; __this->set_symbols_9(L_5); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_6 = ___positions3; __this->set_positions_10(L_6); int32_t L_7 = ___endMarkerPos4; __this->set_endMarkerPos_11(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 // System.Void System.Xml.Schema.Numeric10FacetsChecker::.ctor(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Numeric10FacetsChecker__ctor_mF99FFA95CFEEF6CD3D87C744A8B08A1DE0E96698 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___minVal0, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___maxVal1, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = ___minVal0; __this->set_minValue_2(L_0); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1 = ___maxVal1; __this->set_maxValue_1(L_1); return; } } // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckValueFacets_mE04A48B218B253A5FD68CB243483457B83BA2CB6 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_0; memset((&V_0), 0, sizeof(V_0)); { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; NullCheck(L_1); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_3; L_3 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_1, L_2); V_0 = L_3; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_4 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype1; Exception_t * L_6; L_6 = VirtFuncInvoker2< Exception_t *, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(6 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Decimal,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_4, L_5); return L_6; } } // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckValueFacets(System.Decimal,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckValueFacets_mA8616DD712988BD9705D77E79156E07B7B7FC0C3 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944); s_Il2CppMethodInitialized = true; } RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_0 = NULL; int32_t V_1 = 0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * V_2 = NULL; int32_t G_B3_0 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1; L_1 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_0); V_0 = L_1; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_2 = V_0; if (L_2) { goto IL_000d; } } { G_B3_0 = 0; goto IL_0013; } IL_000d: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_Flags_12(); G_B3_0 = ((int32_t)(L_4)); } IL_0013: { V_1 = G_B3_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype1; NullCheck(L_5); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_6; L_6 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_5); V_2 = L_6; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_7 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_8 = __this->get_maxValue_1(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_9; L_9 = Decimal_op_GreaterThan_m3998ECD90BE6477B2B42B8EB752E135B22287B9C(L_7, L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0037; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_10 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_11 = __this->get_minValue_2(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_12; L_12 = Decimal_op_LessThan_mF55B16B95231A45B3FB454651546B0F65037A632(L_10, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0065; } } IL_0037: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_13; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_15; L_15 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); String_t* L_16; L_16 = Decimal_ToString_mCD1BF444FBBA99D53FBADBB834CBFBB857598C24((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)(&___value0), L_15, /*hidden argument*/NULL); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_16); (L_14)->SetAt(static_cast(0), (RuntimeObject *)L_16); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_14; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_18 = ___datatype1; NullCheck(L_18); String_t* L_19; L_19 = XmlSchemaDatatype_get_TypeCodeString_m5D03CB7A34F32BE3AE1B3F38AC28310575BFB332(L_18, /*hidden argument*/NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_19); (L_17)->SetAt(static_cast(1), (RuntimeObject *)L_19); String_t* L_20; L_20 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(_stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A, L_17, /*hidden argument*/NULL); OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * L_21 = (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 *)il2cpp_codegen_object_new(OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var); OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E(L_21, L_20, /*hidden argument*/NULL); return L_21; } IL_0065: { int32_t L_22 = V_1; if (!L_22) { goto IL_016a; } } { int32_t L_23 = V_1; if (!((int32_t)((int32_t)L_23&(int32_t)((int32_t)64)))) { goto IL_0095; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_24 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_25 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_26 = V_0; NullCheck(L_26); RuntimeObject * L_27 = L_26->get_MaxInclusive_6(); NullCheck(L_25); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_28; L_28 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_25, L_27); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_29; L_29 = Decimal_op_GreaterThan_m3998ECD90BE6477B2B42B8EB752E135B22287B9C(L_24, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_0095; } } { String_t* L_30 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_31 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_31, _stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80, L_30, /*hidden argument*/NULL); return L_31; } IL_0095: { int32_t L_32 = V_1; if (!((int32_t)((int32_t)L_32&(int32_t)((int32_t)128)))) { goto IL_00c2; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_33 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_34 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_35 = V_0; NullCheck(L_35); RuntimeObject * L_36 = L_35->get_MaxExclusive_7(); NullCheck(L_34); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_37; L_37 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_34, L_36); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_38; L_38 = Decimal_op_GreaterThanOrEqual_mAC84494A3A82D39A24D6B7A6BE615641BB36CCF3(L_33, L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_00c2; } } { String_t* L_39 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_40 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_40, _stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1, L_39, /*hidden argument*/NULL); return L_40; } IL_00c2: { int32_t L_41 = V_1; if (!((int32_t)((int32_t)L_41&(int32_t)((int32_t)256)))) { goto IL_00ef; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_42 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_43 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_44 = V_0; NullCheck(L_44); RuntimeObject * L_45 = L_44->get_MinInclusive_8(); NullCheck(L_43); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_46; L_46 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_43, L_45); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_47; L_47 = Decimal_op_LessThan_mF55B16B95231A45B3FB454651546B0F65037A632(L_42, L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_00ef; } } { String_t* L_48 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_49 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_49, _stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B, L_48, /*hidden argument*/NULL); return L_49; } IL_00ef: { int32_t L_50 = V_1; if (!((int32_t)((int32_t)L_50&(int32_t)((int32_t)512)))) { goto IL_011c; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_51 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_52 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_53 = V_0; NullCheck(L_53); RuntimeObject * L_54 = L_53->get_MinExclusive_9(); NullCheck(L_52); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_55; L_55 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_52, L_54); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_56; L_56 = Decimal_op_LessThanOrEqual_m4971CE1EC4A71210D091525DD02CC53BC9CDAB1E(L_51, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_011c; } } { String_t* L_57 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_58 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_58, _stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944, L_57, /*hidden argument*/NULL); return L_58; } IL_011c: { int32_t L_59 = V_1; if (!((int32_t)((int32_t)L_59&(int32_t)((int32_t)16)))) { goto IL_0142; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_60 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_61 = V_0; NullCheck(L_61); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_62 = L_61->get_Enumeration_4(); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_63 = V_2; bool L_64; L_64 = Numeric10FacetsChecker_MatchEnumeration_m083615E23A96C3CD40C73B4FFF5FD15395890D80(__this, L_60, L_62, L_63, /*hidden argument*/NULL); if (L_64) { goto IL_0142; } } { String_t* L_65 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_66 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_66, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_65, /*hidden argument*/NULL); return L_66; } IL_0142: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_67 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_68 = V_0; NullCheck(L_68); int32_t L_69 = L_68->get_TotalDigits_10(); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_70 = V_0; NullCheck(L_70); int32_t L_71 = L_70->get_FractionDigits_11(); int32_t L_72 = V_1; int32_t L_73 = V_1; Exception_t * L_74; L_74 = Numeric10FacetsChecker_CheckTotalAndFractionDigits_m19E426DAC8B94548619BF63ED200DDA53F866F00(__this, L_67, L_69, L_71, (bool)((!(((uint32_t)((int32_t)((int32_t)L_72&(int32_t)((int32_t)1024)))) <= ((uint32_t)0)))? 1 : 0), (bool)((!(((uint32_t)((int32_t)((int32_t)L_73&(int32_t)((int32_t)2048)))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL); return L_74; } IL_016a: { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckValueFacets(System.Int64,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckValueFacets_m1742E1A4E167D9AFBA6F52AB1EF21A76328F1B26 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, int64_t ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_0; memset((&V_0), 0, sizeof(V_0)); { int64_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1; L_1 = Decimal_op_Implicit_m0736049F15FA2C68B5EC46BDED5E98F82D475A56(L_0, /*hidden argument*/NULL); V_0 = L_1; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_2 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_3 = ___datatype1; Exception_t * L_4; L_4 = VirtFuncInvoker2< Exception_t *, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(6 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Decimal,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_2, L_3); return L_4; } } // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckValueFacets(System.Int32,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckValueFacets_m1FA807E6CE71740F99A42D61EE32E0230EDFF32F (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, int32_t ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1; L_1 = Decimal_op_Implicit_mA83342DEE0725CF242454832BD0306090E80CCF9(L_0, /*hidden argument*/NULL); V_0 = L_1; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_2 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_3 = ___datatype1; Exception_t * L_4; L_4 = VirtFuncInvoker2< Exception_t *, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(6 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Decimal,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_2, L_3); return L_4; } } // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckValueFacets(System.Int16,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckValueFacets_m9CEA521234194843EF9525ED4280527EB3CC0E6D (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, int16_t ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_0; memset((&V_0), 0, sizeof(V_0)); { int16_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1; L_1 = Decimal_op_Implicit_mD0B519FAA76412880A6F63633B69D54AECE82449(L_0, /*hidden argument*/NULL); V_0 = L_1; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_2 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_3 = ___datatype1; Exception_t * L_4; L_4 = VirtFuncInvoker2< Exception_t *, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(6 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Decimal,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_2, L_3); return L_4; } } // System.Boolean System.Xml.Schema.Numeric10FacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numeric10FacetsChecker_MatchEnumeration_m1AAD59510551D8F40493011ADC9F948266C273DB (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; NullCheck(L_1); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_3; L_3 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_1, L_2); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = ___enumeration1; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype2; NullCheck(L_5); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_6; L_6 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_5); bool L_7; L_7 = Numeric10FacetsChecker_MatchEnumeration_m083615E23A96C3CD40C73B4FFF5FD15395890D80(__this, L_3, L_4, L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.Xml.Schema.Numeric10FacetsChecker::MatchEnumeration(System.Decimal,System.Collections.ArrayList,System.Xml.Schema.XmlValueConverter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numeric10FacetsChecker_MatchEnumeration_m083615E23A96C3CD40C73B4FFF5FD15395890D80 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___valueConverter2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { V_0 = 0; goto IL_001f; } IL_0004: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1 = ___valueConverter2; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = ___enumeration1; int32_t L_3 = V_0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3); NullCheck(L_1); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_5; L_5 = VirtFuncInvoker1< Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , RuntimeObject * >::Invoke(23 /* System.Decimal System.Xml.Schema.XmlValueConverter::ToDecimal(System.Object) */, L_1, L_4); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_6; L_6 = Decimal_op_Equality_m3BA6FDA0D51500320AC0928695C8CE9F833B0981(L_0, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_001b; } } { return (bool)1; } IL_001b: { int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_001f: { int32_t L_8 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_9 = ___enumeration1; NullCheck(L_9); int32_t L_10; L_10 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_9); if ((((int32_t)L_8) < ((int32_t)L_10))) { goto IL_0004; } } { return (bool)0; } } // System.Exception System.Xml.Schema.Numeric10FacetsChecker::CheckTotalAndFractionDigits(System.Decimal,System.Int32,System.Int32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric10FacetsChecker_CheckTotalAndFractionDigits_m19E426DAC8B94548619BF63ED200DDA53F866F00 (Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, int32_t ___totalDigits1, int32_t ___fractionDigits2, bool ___checkTotal3, bool ___checkFraction4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21C885F024DD76B32C6CA3D9BD35E0A148EDDD9D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral609F11BECFD0CCE90D4C1D6AA2F061231AAB9266); s_Il2CppMethodInitialized = true; } Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { int32_t L_0 = ___totalDigits1; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1; L_1 = FacetsChecker_Power_m41F5CFF74595527227D387F10E408E988BE7B8E2(((int32_t)10), L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_2 = ((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var))->get_One_8(); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_3; L_3 = Decimal_op_Subtraction_mC027AD26CF89DF646E486A25C59E71D1EAB43FAA(L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; V_1 = 0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_4 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_5 = ((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var))->get_Zero_7(); bool L_6; L_6 = Decimal_op_LessThan_mF55B16B95231A45B3FB454651546B0F65037A632(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_003f; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_7 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_8; L_8 = Decimal_Negate_mCF18AB64ACB62384F7E9A89023470B315ECF2D76(L_7, /*hidden argument*/NULL); ___value0 = L_8; goto IL_003f; } IL_002c: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_9 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_10; memset((&L_10), 0, sizeof(L_10)); Decimal__ctor_m3C20B602B540FD08434894065D20BDBA60FF79BC((&L_10), ((int32_t)10), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_11; L_11 = Decimal_op_Multiply_mDA6E9440BFD19C66F0233BC6EF8C2E9633DAF56F(L_9, L_10, /*hidden argument*/NULL); ___value0 = L_11; int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_003f: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_13 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_14; L_14 = Decimal_Truncate_m3DA6F823D24930958FCA4301A45A0BC09E0B24A6(L_13, /*hidden argument*/NULL); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_15 = ___value0; bool L_16; L_16 = Decimal_op_Inequality_m3CD0E55B31634EE546947D4A0CB0F24B75146027(L_14, L_15, /*hidden argument*/NULL); if (L_16) { goto IL_002c; } } { bool L_17 = ___checkTotal3; if (!L_17) { goto IL_006e; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_18 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_19 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_20; L_20 = Decimal_op_GreaterThan_m3998ECD90BE6477B2B42B8EB752E135B22287B9C(L_18, L_19, /*hidden argument*/NULL); if (L_20) { goto IL_005e; } } { int32_t L_21 = V_1; int32_t L_22 = ___totalDigits1; if ((((int32_t)L_21) <= ((int32_t)L_22))) { goto IL_006e; } } IL_005e: { String_t* L_23 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_24 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_24, _stringLiteral21C885F024DD76B32C6CA3D9BD35E0A148EDDD9D, L_23, /*hidden argument*/NULL); return L_24; } IL_006e: { bool L_25 = ___checkFraction4; if (!L_25) { goto IL_0086; } } { int32_t L_26 = V_1; int32_t L_27 = ___fractionDigits2; if ((((int32_t)L_26) <= ((int32_t)L_27))) { goto IL_0086; } } { String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_29 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_29, _stringLiteral609F11BECFD0CCE90D4C1D6AA2F061231AAB9266, L_28, /*hidden argument*/NULL); return L_29; } IL_0086: { return (Exception_t *)NULL; } } // System.Void System.Xml.Schema.Numeric10FacetsChecker::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Numeric10FacetsChecker__cctor_mA29B3C8AC7657EF7695281C65C169413FEDA2FA7 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (Il2CppChar)((int32_t)43)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(1), (Il2CppChar)((int32_t)45)); ((Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5_StaticFields*)il2cpp_codegen_static_fields_for(Numeric10FacetsChecker_t014C9C5EF8F28C023E372A39E015328A25129FD5_il2cpp_TypeInfo_var))->set_signs_0(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.Exception System.Xml.Schema.Numeric2FacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric2FacetsChecker_CheckValueFacets_m364B0DA5FCC51E5757FBAA72DFE83CF5B4D1304F (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { double V_0 = 0.0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; NullCheck(L_1); double L_3; L_3 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_1, L_2); V_0 = L_3; double L_4 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype1; Exception_t * L_6; L_6 = VirtFuncInvoker2< Exception_t *, double, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(11 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Double,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_4, L_5); return L_6; } } // System.Exception System.Xml.Schema.Numeric2FacetsChecker::CheckValueFacets(System.Double,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric2FacetsChecker_CheckValueFacets_m66E7A4D47FDA788DFB1F4D02A2FD7CEE0031ED02 (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, double ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, 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*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944); s_Il2CppMethodInitialized = true; } RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_0 = NULL; int32_t V_1 = 0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * V_2 = NULL; int32_t G_B3_0 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1; L_1 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_0); V_0 = L_1; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_2 = V_0; if (L_2) { goto IL_000d; } } { G_B3_0 = 0; goto IL_0013; } IL_000d: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_Flags_12(); G_B3_0 = ((int32_t)(L_4)); } IL_0013: { V_1 = G_B3_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype1; NullCheck(L_5); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_6; L_6 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_5); V_2 = L_6; int32_t L_7 = V_1; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)64)))) { goto IL_0040; } } { double L_8 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_9 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_10 = V_0; NullCheck(L_10); RuntimeObject * L_11 = L_10->get_MaxInclusive_6(); NullCheck(L_9); double L_12; L_12 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_9, L_11); if ((!(((double)L_8) > ((double)L_12)))) { goto IL_0040; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_14 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_14, _stringLiteral628A96807E2AFE216B2BE536DBBB9B88DB607F80, L_13, /*hidden argument*/NULL); return L_14; } IL_0040: { int32_t L_15 = V_1; if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)128)))) { goto IL_0068; } } { double L_16 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_17 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_18 = V_0; NullCheck(L_18); RuntimeObject * L_19 = L_18->get_MaxExclusive_7(); NullCheck(L_17); double L_20; L_20 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_17, L_19); if ((!(((double)L_16) >= ((double)L_20)))) { goto IL_0068; } } { String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_22 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_22, _stringLiteral6C3AB4682D9AA8BCD6C4295BB3342C60EC69EDF1, L_21, /*hidden argument*/NULL); return L_22; } IL_0068: { int32_t L_23 = V_1; if (!((int32_t)((int32_t)L_23&(int32_t)((int32_t)256)))) { goto IL_0090; } } { double L_24 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_25 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_26 = V_0; NullCheck(L_26); RuntimeObject * L_27 = L_26->get_MinInclusive_8(); NullCheck(L_25); double L_28; L_28 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_25, L_27); if ((!(((double)L_24) < ((double)L_28)))) { goto IL_0090; } } { String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_30 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_30, _stringLiteralBB8873F6B25A9E5E06D9ED3F5BF2D407760C997B, L_29, /*hidden argument*/NULL); return L_30; } IL_0090: { int32_t L_31 = V_1; if (!((int32_t)((int32_t)L_31&(int32_t)((int32_t)512)))) { goto IL_00b8; } } { double L_32 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_33 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_34 = V_0; NullCheck(L_34); RuntimeObject * L_35 = L_34->get_MinExclusive_9(); NullCheck(L_33); double L_36; L_36 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_33, L_35); if ((!(((double)L_32) <= ((double)L_36)))) { goto IL_00b8; } } { String_t* L_37 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_38 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_38, _stringLiteralC67060FD0196BAE2E24BF11FA727F29834BE9944, L_37, /*hidden argument*/NULL); return L_38; } IL_00b8: { int32_t L_39 = V_1; if (!((int32_t)((int32_t)L_39&(int32_t)((int32_t)16)))) { goto IL_00de; } } { double L_40 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_41 = V_0; NullCheck(L_41); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_42 = L_41->get_Enumeration_4(); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_43 = V_2; bool L_44; L_44 = Numeric2FacetsChecker_MatchEnumeration_m6FFA4E73536D4AC16674AEB2CD77F0A0D3C47CE4(__this, L_40, L_42, L_43, /*hidden argument*/NULL); if (L_44) { goto IL_00de; } } { String_t* L_45 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_46 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_46, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_45, /*hidden argument*/NULL); return L_46; } IL_00de: { return (Exception_t *)NULL; } } // System.Exception System.Xml.Schema.Numeric2FacetsChecker::CheckValueFacets(System.Single,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Numeric2FacetsChecker_CheckValueFacets_mABC58BCF7D6726DCA0A72C4959097B252E1CC139 (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, float ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { double V_0 = 0.0; { float L_0 = ___value0; V_0 = ((double)((double)L_0)); double L_1 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_2 = ___datatype1; Exception_t * L_3; L_3 = VirtFuncInvoker2< Exception_t *, double, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(11 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Double,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_1, L_2); return L_3; } } // System.Boolean System.Xml.Schema.Numeric2FacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numeric2FacetsChecker_MatchEnumeration_mFDD59CA36D0DA1B7795E705B944A3E0331C5446E (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; NullCheck(L_1); double L_3; L_3 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_1, L_2); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = ___enumeration1; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype2; NullCheck(L_5); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_6; L_6 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_5); bool L_7; L_7 = Numeric2FacetsChecker_MatchEnumeration_m6FFA4E73536D4AC16674AEB2CD77F0A0D3C47CE4(__this, L_3, L_4, L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.Xml.Schema.Numeric2FacetsChecker::MatchEnumeration(System.Double,System.Collections.ArrayList,System.Xml.Schema.XmlValueConverter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numeric2FacetsChecker_MatchEnumeration_m6FFA4E73536D4AC16674AEB2CD77F0A0D3C47CE4 (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, double ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___valueConverter2, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_001a; } IL_0004: { double L_0 = ___value0; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1 = ___valueConverter2; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = ___enumeration1; int32_t L_3 = V_0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3); NullCheck(L_1); double L_5; L_5 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_1, L_4); if ((!(((double)L_0) == ((double)L_5)))) { goto IL_0016; } } { return (bool)1; } IL_0016: { int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_001a: { int32_t L_7 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_8 = ___enumeration1; NullCheck(L_8); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_8); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_0004; } } { return (bool)0; } } // System.Void System.Xml.Schema.Numeric2FacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Numeric2FacetsChecker__ctor_mFE1AC0BDD71FB925A03F366AFCF9B5DF9761907D (Numeric2FacetsChecker_t5667344E51BB726C0D6D94AF2F5F11E22DDE10C8 * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.ObjectMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMap__ctor_mF37BA5AFF032BFC18189BA4CD22381C4D19AE3B5 (ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.OpenedHost::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OpenedHost__ctor_m0FB08FD979C96E5E83286C9879ECDCC2F4F217AB (OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.ParticleContentValidator::.ctor(System.Xml.Schema.XmlSchemaContentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator__ctor_m036FEED0E74413DA78C5C8C6E9717D819D151752 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, int32_t ___contentType0, const RuntimeMethod* method) { { int32_t L_0 = ___contentType0; ParticleContentValidator__ctor_mFF55C49F124E558C01141456CAA7023C1A76D328(__this, L_0, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::.ctor(System.Xml.Schema.XmlSchemaContentType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator__ctor_mFF55C49F124E558C01141456CAA7023C1A76D328 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, int32_t ___contentType0, bool ___enableUpaCheck1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___contentType0; IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator__ctor_m972153C21852C146EA8BB1E35015E7AFE0ACA400(__this, L_0, /*hidden argument*/NULL); bool L_1 = ___enableUpaCheck1; __this->set_enableUpaCheck_13(L_1); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_Start_m5F7A45E5F5562BE2FEAC19614FA29E3BCA436E42 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF *)il2cpp_codegen_object_new(SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_il2cpp_TypeInfo_var); SymbolsDictionary__ctor_mAED079A4E8AB0F4514D208514898D871EC72DF19(L_0, /*hidden argument*/NULL); __this->set_symbols_7(L_0); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_1 = (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F *)il2cpp_codegen_object_new(Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_il2cpp_TypeInfo_var); Positions__ctor_m714DAA090730CD4CE65ED6EDD4B8673AF3415A9F(L_1, /*hidden argument*/NULL); __this->set_positions_8(L_1); Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_2 = (Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 *)il2cpp_codegen_object_new(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8_il2cpp_TypeInfo_var); Stack__ctor_m7B7EA279423863156F25A04362D9FE6C89FAFE70(L_2, /*hidden argument*/NULL); __this->set_stack_9(L_2); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::OpenGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_OpenGroup_m973BDF07A71F08D03C7894C5575F1F233CB7E8CF (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_stack_9(); NullCheck(L_0); VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_0, NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::CloseGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CloseGroup_m994F4F856FB3CA4ED0EDF76256BA860141878BA5 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * V_0 = NULL; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_1 = NULL; { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_stack_9(); NullCheck(L_0); RuntimeObject * L_1; L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_0); V_0 = ((SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 *)CastclassClass((RuntimeObject*)L_1, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var)); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_2 = V_0; if (L_2) { goto IL_0015; } } { return; } IL_0015: { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_3 = __this->get_stack_9(); NullCheck(L_3); int32_t L_4; L_4 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Stack::get_Count() */, L_3); if (L_4) { goto IL_0031; } } { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_5 = V_0; __this->set_contentNode_10(L_5); __this->set_isPartial_11((bool)0); return; } IL_0031: { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_6 = __this->get_stack_9(); NullCheck(L_6); RuntimeObject * L_7; L_7 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_6); V_1 = ((InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *)CastclassClass((RuntimeObject*)L_7, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var)); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_8 = V_1; if (!L_8) { goto IL_0057; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_9 = V_1; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_10 = V_0; NullCheck(L_9); InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline(L_9, L_10, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_11 = V_1; V_0 = L_11; __this->set_isPartial_11((bool)1); goto IL_005e; } IL_0057: { __this->set_isPartial_11((bool)0); } IL_005e: { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_12 = __this->get_stack_9(); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_13 = V_0; NullCheck(L_12); VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_12, L_13); return; } } // System.Boolean System.Xml.Schema.ParticleContentValidator::Exists(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParticleContentValidator_Exists_m17D51B4D1561EB266A8C233F04E6CDB5498FDD5C (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, const RuntimeMethod* method) { { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = __this->get_symbols_7(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_1 = ___name0; NullCheck(L_0); bool L_2; L_2 = SymbolsDictionary_Exists_m155E44B30852DAA863AD77ACEA1A26E33BCC5849(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0010; } } { return (bool)1; } IL_0010: { return (bool)0; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddName(System.Xml.XmlQualifiedName,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddName_m4AD6407EF80604C1838783CD9B392949F1185577 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, RuntimeObject * ___particle1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_0 = __this->get_positions_8(); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_1 = __this->get_symbols_7(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = ___name0; RuntimeObject * L_3 = ___particle1; NullCheck(L_1); int32_t L_4; L_4 = SymbolsDictionary_AddName_mF1E4BAA09330850B9A71DB01910BB4B4672C3EF1(L_1, L_2, L_3, /*hidden argument*/NULL); RuntimeObject * L_5 = ___particle1; NullCheck(L_0); int32_t L_6; L_6 = Positions_Add_mEC7D6654760E4112DF78A37BE117A81C3352C6B6(L_0, L_4, L_5, /*hidden argument*/NULL); LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_7 = (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC *)il2cpp_codegen_object_new(LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var); LeafNode__ctor_mB2913A5E0A097153A953EF35C4160512ECC4EB15(L_7, L_6, /*hidden argument*/NULL); ParticleContentValidator_AddLeafNode_m1112C83E162029FBC1C926D99E9AE613C59162AC(__this, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddNamespaceList(System.Xml.Schema.NamespaceList,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddNamespaceList_mCD51F085021060340A5FBFA5C6BCD5F79AD499C3 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___namespaceList0, RuntimeObject * ___particle1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = __this->get_symbols_7(); NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_1 = ___namespaceList0; RuntimeObject * L_2 = ___particle1; NullCheck(L_0); SymbolsDictionary_AddNamespaceList_m1F58093AA405FD4FEB04B4B14230D9197050F1CA(L_0, L_1, L_2, (bool)0, /*hidden argument*/NULL); NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_3 = ___namespaceList0; RuntimeObject * L_4 = ___particle1; NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 * L_5 = (NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19 *)il2cpp_codegen_object_new(NamespaceListNode_t79B2B4F95791022B8DD478C3E73517E4BE138B19_il2cpp_TypeInfo_var); NamespaceListNode__ctor_m440B6F48BB5C47F8FF2CAEFDC5B2FC17579B72FA(L_5, L_3, L_4, /*hidden argument*/NULL); ParticleContentValidator_AddLeafNode_m1112C83E162029FBC1C926D99E9AE613C59162AC(__this, L_5, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddLeafNode(System.Xml.Schema.SyntaxTreeNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddLeafNode_m1112C83E162029FBC1C926D99E9AE613C59162AC (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___node0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_0 = NULL; { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_stack_9(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Stack::get_Count() */, L_0); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_002c; } } { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_2 = __this->get_stack_9(); NullCheck(L_2); RuntimeObject * L_3; L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_2); V_0 = ((InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *)CastclassClass((RuntimeObject*)L_3, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var)); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_4 = V_0; if (!L_4) { goto IL_002c; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_5 = V_0; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_6 = ___node0; NullCheck(L_5); InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline(L_5, L_6, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_7 = V_0; ___node0 = L_7; } IL_002c: { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_8 = __this->get_stack_9(); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_9 = ___node0; NullCheck(L_8); VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_8, L_9); __this->set_isPartial_11((bool)1); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddChoice() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddChoice_m5F8A03AC7F590C92762A57DF512E798F1E57EC83 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * V_0 = NULL; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_1 = NULL; { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_stack_9(); NullCheck(L_0); RuntimeObject * L_1; L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_0); V_0 = ((SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 *)CastclassClass((RuntimeObject*)L_1, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var)); ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C * L_2 = (ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C *)il2cpp_codegen_object_new(ChoiceNode_tEB25C690DCD8CF930A8D5BBDCCDDAFE8E4697E1C_il2cpp_TypeInfo_var); ChoiceNode__ctor_mA0FF108CA99E7EB7BCEC10203E05004938640FEF(L_2, /*hidden argument*/NULL); V_1 = L_2; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_3 = V_1; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_4 = V_0; NullCheck(L_3); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_3, L_4, /*hidden argument*/NULL); Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_5 = __this->get_stack_9(); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_6 = V_1; NullCheck(L_5); VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_5, L_6); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddSequence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddSequence_mA963AD9B631CA8A910CA4B115F408AE71BFE4B53 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * V_0 = NULL; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_1 = NULL; { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_stack_9(); NullCheck(L_0); RuntimeObject * L_1; L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_0); V_0 = ((SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 *)CastclassClass((RuntimeObject*)L_1, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var)); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_2 = (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD *)il2cpp_codegen_object_new(SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); SequenceNode__ctor_mB5DF9B11AE58300BE3B457BA36E79F8AB635D8F2(L_2, /*hidden argument*/NULL); V_1 = L_2; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_3 = V_1; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_4 = V_0; NullCheck(L_3); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_3, L_4, /*hidden argument*/NULL); Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_5 = __this->get_stack_9(); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_6 = V_1; NullCheck(L_5); VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_5, L_6); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddStar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddStar_m06BFACA99A99EAED7580866C6EC3EBD1F3C6C869 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 * L_0 = (StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 *)il2cpp_codegen_object_new(StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68_il2cpp_TypeInfo_var); StarNode__ctor_mF305B4DE3DE9504E4D4B0C132350AD2917FA67B4(L_0, /*hidden argument*/NULL); ParticleContentValidator_Closure_mC02722EC7DC8B99F076DAC32DC43704156D87E92(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddPlus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddPlus_m67886BDB9DA79814375C6536F897B264101550E0 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 * L_0 = (PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 *)il2cpp_codegen_object_new(PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979_il2cpp_TypeInfo_var); PlusNode__ctor_m8842D4AF6D999A5A62BF512ACD52718CF10B1930(L_0, /*hidden argument*/NULL); ParticleContentValidator_Closure_mC02722EC7DC8B99F076DAC32DC43704156D87E92(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::AddQMark() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddQMark_m6070B936D44FE99227A626DAB134B68B7DBF3254 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 * L_0 = (QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 *)il2cpp_codegen_object_new(QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803_il2cpp_TypeInfo_var); QmarkNode__ctor_m84C424AEB93C7854333A5928A67C09C9BACA6C26(L_0, /*hidden argument*/NULL); ParticleContentValidator_Closure_mC02722EC7DC8B99F076DAC32DC43704156D87E92(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.ParticleContentValidator::Closure(System.Xml.Schema.InteriorNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_Closure_mC02722EC7DC8B99F076DAC32DC43704156D87E92 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___node0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * V_0 = NULL; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_1 = NULL; { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_stack_9(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Stack::get_Count() */, L_0); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_005c; } } { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_2 = __this->get_stack_9(); NullCheck(L_2); RuntimeObject * L_3; L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_2); V_0 = ((SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 *)CastclassClass((RuntimeObject*)L_3, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389_il2cpp_TypeInfo_var)); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_4 = V_0; V_1 = ((InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *)IsInstClass((RuntimeObject*)L_4, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541_il2cpp_TypeInfo_var)); bool L_5 = __this->get_isPartial_11(); if (!L_5) { goto IL_0046; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_6 = V_1; if (!L_6) { goto IL_0046; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_7 = ___node0; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_8 = V_1; NullCheck(L_8); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_9; L_9 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_8, /*hidden argument*/NULL); NullCheck(L_7); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_7, L_9, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_10 = V_1; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_11 = ___node0; NullCheck(L_10); InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline(L_10, L_11, /*hidden argument*/NULL); goto IL_004f; } IL_0046: { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_12 = ___node0; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_13 = V_0; NullCheck(L_12); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_12, L_13, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_14 = ___node0; V_0 = L_14; } IL_004f: { Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_15 = __this->get_stack_9(); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_16 = V_0; NullCheck(L_15); VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_15, L_16); return; } IL_005c: { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_17 = __this->get_contentNode_10(); if (!L_17) { goto IL_0077; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_18 = ___node0; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_19 = __this->get_contentNode_10(); NullCheck(L_18); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_18, L_19, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_20 = ___node0; __this->set_contentNode_10(L_20); } IL_0077: { return; } } // System.Xml.Schema.ContentValidator System.Xml.Schema.ParticleContentValidator::Finish(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ParticleContentValidator_Finish_mBF314E2EA41899551CC6C650847A491EECBE69D8 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, bool ___useDFA0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * V_0 = NULL; LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * V_1 = NULL; int32_t V_2 = 0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_3 = NULL; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_4 = NULL; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* V_5 = NULL; int32_t V_6 = 0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_7 = NULL; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* V_8 = NULL; int32_t V_9 = 0; Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* V_10 = NULL; { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = __this->get_contentNode_10(); if (L_0) { goto IL_0032; } } { int32_t L_1; L_1 = ContentValidator_get_ContentType_m3F213D76D16E71F3524464E82BA2D6E6807B1DB6_inline(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_002c; } } { bool L_2; L_2 = ContentValidator_get_IsOpen_m5FB7F989F339D5D84EB296766D73FB6D64198F53(__this, /*hidden argument*/NULL); bool L_3; L_3 = ContentValidator_get_IsOpen_m5FB7F989F339D5D84EB296766D73FB6D64198F53(__this, /*hidden argument*/NULL); if (L_3) { goto IL_0026; } } { IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * L_4 = ((ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields*)il2cpp_codegen_static_fields_for(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var))->get_TextOnly_4(); return L_4; } IL_0026: { IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * L_5 = ((ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields*)il2cpp_codegen_static_fields_for(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var))->get_Any_6(); return L_5; } IL_002c: { IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * L_6 = ((ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields*)il2cpp_codegen_static_fields_for(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var))->get_Empty_3(); return L_6; } IL_0032: { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_7 = (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD *)il2cpp_codegen_object_new(SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); SequenceNode__ctor_mB5DF9B11AE58300BE3B457BA36E79F8AB635D8F2(L_7, /*hidden argument*/NULL); V_0 = L_7; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_8 = V_0; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_9 = __this->get_contentNode_10(); NullCheck(L_8); InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline(L_8, L_9, /*hidden argument*/NULL); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_10 = __this->get_positions_8(); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_11 = __this->get_symbols_7(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_12 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))->get_Empty_4(); NullCheck(L_11); int32_t L_13; L_13 = SymbolsDictionary_AddName_mF1E4BAA09330850B9A71DB01910BB4B4672C3EF1(L_11, L_12, NULL, /*hidden argument*/NULL); NullCheck(L_10); int32_t L_14; L_14 = Positions_Add_mEC7D6654760E4112DF78A37BE117A81C3352C6B6(L_10, L_13, NULL, /*hidden argument*/NULL); LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_15 = (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC *)il2cpp_codegen_object_new(LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC_il2cpp_TypeInfo_var); LeafNode__ctor_mB2913A5E0A097153A953EF35C4160512ECC4EB15(L_15, L_14, /*hidden argument*/NULL); V_1 = L_15; InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_16 = V_0; LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_17 = V_1; NullCheck(L_16); InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline(L_16, L_17, /*hidden argument*/NULL); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_18 = __this->get_contentNode_10(); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_19 = V_0; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_20 = __this->get_symbols_7(); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_21 = __this->get_positions_8(); NullCheck(L_18); VirtActionInvoker3< InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 *, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF *, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * >::Invoke(4 /* System.Void System.Xml.Schema.SyntaxTreeNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) */, L_18, L_19, L_20, L_21); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_22 = __this->get_symbols_7(); NullCheck(L_22); int32_t L_23; L_23 = SymbolsDictionary_get_Count_mAE31651169418765C4F54B7B3746AB2016B9077C(L_22, /*hidden argument*/NULL); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_24 = __this->get_positions_8(); NullCheck(L_24); int32_t L_25; L_25 = Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8(L_24, /*hidden argument*/NULL); V_2 = L_25; int32_t L_26 = V_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_27 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_27, L_26, /*hidden argument*/NULL); V_3 = L_27; int32_t L_28 = V_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_29 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_29, L_28, /*hidden argument*/NULL); V_4 = L_29; int32_t L_30 = V_2; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_31 = (BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD*)(BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD*)SZArrayNew(BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD_il2cpp_TypeInfo_var, (uint32_t)L_30); V_5 = L_31; V_6 = 0; goto IL_00cb; } IL_00ba: { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_32 = V_5; int32_t L_33 = V_6; int32_t L_34 = V_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_35 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_35, L_34, /*hidden argument*/NULL); NullCheck(L_32); ArrayElementTypeCheck (L_32, L_35); (L_32)->SetAt(static_cast(L_33), (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)L_35); int32_t L_36 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_00cb: { int32_t L_37 = V_6; int32_t L_38 = V_2; if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_00ba; } } { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_39 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_40 = V_3; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_41 = V_4; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_42 = V_5; NullCheck(L_39); VirtActionInvoker3< BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* >::Invoke(5 /* System.Void System.Xml.Schema.SyntaxTreeNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) */, L_39, L_40, L_41, L_42); int32_t L_43 = __this->get_minMaxNodesCount_12(); if ((((int32_t)L_43) <= ((int32_t)0))) { goto IL_0163; } } { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_44 = V_3; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_45 = V_5; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_46; L_46 = ParticleContentValidator_CalculateTotalFollowposForRangeNodes_mB5CD62FE0663A05A2F3C7EDEC3ED7B5ACEBAAAC1(__this, L_44, L_45, (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 **)(&V_7), /*hidden argument*/NULL); V_8 = L_46; bool L_47 = __this->get_enableUpaCheck_13(); if (!L_47) { goto IL_012f; } } { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_48 = V_3; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_49 = V_7; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_50 = V_8; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_51; L_51 = ParticleContentValidator_GetApplicableMinMaxFollowPos_m0E6FAFE2FF50F19E3AB0926EA018E6A792DB1D3B(__this, L_48, L_49, L_50, /*hidden argument*/NULL); ParticleContentValidator_CheckCMUPAWithLeafRangeNodes_m57640135F9E9E950375B988EC29737A882B3276E(__this, L_51, /*hidden argument*/NULL); V_9 = 0; goto IL_012a; } IL_010f: { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_52 = V_5; int32_t L_53 = V_9; NullCheck(L_52); int32_t L_54 = L_53; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_55 = (L_52)->GetAt(static_cast(L_54)); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_56 = V_7; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_57 = V_8; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_58; L_58 = ParticleContentValidator_GetApplicableMinMaxFollowPos_m0E6FAFE2FF50F19E3AB0926EA018E6A792DB1D3B(__this, L_55, L_56, L_57, /*hidden argument*/NULL); ParticleContentValidator_CheckCMUPAWithLeafRangeNodes_m57640135F9E9E950375B988EC29737A882B3276E(__this, L_58, /*hidden argument*/NULL); int32_t L_59 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)); } IL_012a: { int32_t L_60 = V_9; int32_t L_61 = V_2; if ((((int32_t)L_60) < ((int32_t)L_61))) { goto IL_010f; } } IL_012f: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_62 = V_3; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_63 = V_5; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_64 = __this->get_symbols_7(); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_65 = __this->get_positions_8(); LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_66 = V_1; NullCheck(L_66); int32_t L_67; L_67 = LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline(L_66, /*hidden argument*/NULL); int32_t L_68; L_68 = ContentValidator_get_ContentType_m3F213D76D16E71F3524464E82BA2D6E6807B1DB6_inline(__this, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_69 = V_0; NullCheck(L_69); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_70; L_70 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_69, /*hidden argument*/NULL); NullCheck(L_70); bool L_71; L_71 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_70); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_72 = V_7; int32_t L_73 = __this->get_minMaxNodesCount_12(); RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52 * L_74 = (RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52 *)il2cpp_codegen_object_new(RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52_il2cpp_TypeInfo_var); RangeContentValidator__ctor_mF49D45F7C208508F8A648DFE1BA00AA3DC9E7261(L_74, L_62, L_63, L_64, L_65, L_67, L_68, L_71, L_72, L_73, /*hidden argument*/NULL); return L_74; } IL_0163: { V_10 = (Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF*)NULL; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_75 = __this->get_symbols_7(); NullCheck(L_75); bool L_76; L_76 = SymbolsDictionary_get_IsUpaEnforced_mF1CB53D944864D03F27D99ED7EB9F6F3012B28C2_inline(L_75, /*hidden argument*/NULL); if (L_76) { goto IL_0186; } } { bool L_77 = __this->get_enableUpaCheck_13(); if (!L_77) { goto IL_019a; } } { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_78 = V_3; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_79 = V_5; ParticleContentValidator_CheckUniqueParticleAttribution_m20D1BC069D23A2FB347CE62A49B0B545B05A5357(__this, L_78, L_79, /*hidden argument*/NULL); goto IL_019a; } IL_0186: { bool L_80 = ___useDFA0; if (!L_80) { goto IL_019a; } } { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_81 = V_3; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_82 = V_5; LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_83 = V_1; NullCheck(L_83); int32_t L_84; L_84 = LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline(L_83, /*hidden argument*/NULL); Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* L_85; L_85 = ParticleContentValidator_BuildTransitionTable_m6B384EC2BC803DD3C4D335740807ABE5DFDE766C(__this, L_81, L_82, L_84, /*hidden argument*/NULL); V_10 = L_85; } IL_019a: { Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* L_86 = V_10; if (!L_86) { goto IL_01c3; } } { Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* L_87 = V_10; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_88 = __this->get_symbols_7(); int32_t L_89; L_89 = ContentValidator_get_ContentType_m3F213D76D16E71F3524464E82BA2D6E6807B1DB6_inline(__this, /*hidden argument*/NULL); bool L_90; L_90 = ContentValidator_get_IsOpen_m5FB7F989F339D5D84EB296766D73FB6D64198F53(__this, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_91 = V_0; NullCheck(L_91); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_92; L_92 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_91, /*hidden argument*/NULL); NullCheck(L_92); bool L_93; L_93 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_92); DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73 * L_94 = (DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73 *)il2cpp_codegen_object_new(DfaContentValidator_tD9EE329E4615F9DEBCF70FDE097C65865C94BC73_il2cpp_TypeInfo_var); DfaContentValidator__ctor_mF130EA6E741D96E57DAAA298A31051ADF7608C12(L_94, L_87, L_88, L_89, L_90, L_93, /*hidden argument*/NULL); return L_94; } IL_01c3: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_95 = V_3; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_96 = V_5; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_97 = __this->get_symbols_7(); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_98 = __this->get_positions_8(); LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * L_99 = V_1; NullCheck(L_99); int32_t L_100; L_100 = LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline(L_99, /*hidden argument*/NULL); int32_t L_101; L_101 = ContentValidator_get_ContentType_m3F213D76D16E71F3524464E82BA2D6E6807B1DB6_inline(__this, /*hidden argument*/NULL); bool L_102; L_102 = ContentValidator_get_IsOpen_m5FB7F989F339D5D84EB296766D73FB6D64198F53(__this, /*hidden argument*/NULL); InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_103 = V_0; NullCheck(L_103); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_104; L_104 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_103, /*hidden argument*/NULL); NullCheck(L_104); bool L_105; L_105 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_104); NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC * L_106 = (NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC *)il2cpp_codegen_object_new(NfaContentValidator_t8CC9F345A587AC8F77E4F543AD1B377060B289CC_il2cpp_TypeInfo_var); NfaContentValidator__ctor_m507762DC326C895250C7D66F3D021A51B80985FA(L_106, L_95, L_96, L_97, L_98, L_100, L_101, L_102, L_105, /*hidden argument*/NULL); return L_106; } } // System.Xml.Schema.BitSet[] System.Xml.Schema.ParticleContentValidator::CalculateTotalFollowposForRangeNodes(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Xml.Schema.BitSet&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ParticleContentValidator_CalculateTotalFollowposForRangeNodes_mB5CD62FE0663A05A2F3C7EDEC3ED7B5ACEBAAAC1 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** ___posWithRangeTerminals2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 V_4; memset((&V_4), 0, sizeof(V_4)); LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * V_5 = NULL; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_6 = NULL; int32_t V_7 = 0; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 V_8; memset((&V_8), 0, sizeof(V_8)); LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * V_9 = NULL; { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_0 = __this->get_positions_8(); NullCheck(L_0); int32_t L_1; L_1 = Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8(L_0, /*hidden argument*/NULL); V_0 = L_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** L_2 = ___posWithRangeTerminals2; int32_t L_3 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_4 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_4, L_3, /*hidden argument*/NULL); *((RuntimeObject **)L_2) = (RuntimeObject *)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_4); int32_t L_5 = __this->get_minMaxNodesCount_12(); BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_6 = (BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD*)(BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD*)SZArrayNew(BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD_il2cpp_TypeInfo_var, (uint32_t)L_5); V_1 = L_6; V_2 = 0; int32_t L_7 = V_0; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)); goto IL_0107; } IL_002b: { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_8 = __this->get_positions_8(); int32_t L_9 = V_3; NullCheck(L_8); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_10; L_10 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_8, L_9, /*hidden argument*/NULL); V_4 = L_10; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_11 = V_4; int32_t L_12 = L_11.get_symbol_0(); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)-2))))) { goto IL_0103; } } { Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_13 = V_4; RuntimeObject * L_14 = L_13.get_particle_1(); V_5 = ((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)IsInstSealed((RuntimeObject*)L_14, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var)); int32_t L_15 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_16 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_16, L_15, /*hidden argument*/NULL); V_6 = L_16; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_17 = V_6; NullCheck(L_17); BitSet_Clear_mDEB2E185167940AF35FED9A5788A53554A061DE9(L_17, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_18 = V_6; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_19 = ___followpos1; int32_t L_20 = V_3; NullCheck(L_19); int32_t L_21 = L_20; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_22 = (L_19)->GetAt(static_cast(L_21)); NullCheck(L_18); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_18, L_22, /*hidden argument*/NULL); LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * L_23 = V_5; NullCheck(L_23); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_24; L_24 = LeafRangeNode_get_Min_m9ACB52885522383A21EB6FB7116DB9CC618531D6_inline(L_23, /*hidden argument*/NULL); LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * L_25 = V_5; NullCheck(L_25); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_26; L_26 = LeafRangeNode_get_Max_m6A46C79DF4AE663EAC3FF0C57F34D08A24258A95_inline(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); bool L_27; L_27 = Decimal_op_Inequality_m3CD0E55B31634EE546947D4A0CB0F24B75146027(L_24, L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_0091; } } { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_28 = V_6; LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * L_29 = V_5; NullCheck(L_29); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_30; L_30 = LeafRangeNode_get_NextIteration_m4913B769997A91093E84E01B29E836E6F5C7C601_inline(L_29, /*hidden argument*/NULL); NullCheck(L_28); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_28, L_30, /*hidden argument*/NULL); } IL_0091: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_31 = V_6; NullCheck(L_31); int32_t L_32; L_32 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_31, (-1), /*hidden argument*/NULL); V_7 = L_32; goto IL_00e5; } IL_009d: { int32_t L_33 = V_7; int32_t L_34 = V_3; if ((((int32_t)L_33) <= ((int32_t)L_34))) { goto IL_00da; } } { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_35 = __this->get_positions_8(); int32_t L_36 = V_7; NullCheck(L_35); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_37; L_37 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_35, L_36, /*hidden argument*/NULL); V_8 = L_37; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_38 = V_8; int32_t L_39 = L_38.get_symbol_0(); if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)-2))))) { goto IL_00da; } } { Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_40 = V_8; RuntimeObject * L_41 = L_40.get_particle_1(); V_9 = ((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)IsInstSealed((RuntimeObject*)L_41, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var)); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_42 = V_6; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_43 = V_1; LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * L_44 = V_9; NullCheck(L_44); int32_t L_45; L_45 = LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline(L_44, /*hidden argument*/NULL); NullCheck(L_43); int32_t L_46 = L_45; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_47 = (L_43)->GetAt(static_cast(L_46)); NullCheck(L_42); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_42, L_47, /*hidden argument*/NULL); } IL_00da: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_48 = V_6; int32_t L_49 = V_7; NullCheck(L_48); int32_t L_50; L_50 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_48, L_49, /*hidden argument*/NULL); V_7 = L_50; } IL_00e5: { int32_t L_51 = V_7; if ((!(((uint32_t)L_51) == ((uint32_t)(-1))))) { goto IL_009d; } } { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_52 = V_1; int32_t L_53 = V_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_54 = V_6; NullCheck(L_52); ArrayElementTypeCheck (L_52, L_54); (L_52)->SetAt(static_cast(L_53), (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)L_54); LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * L_55 = V_5; int32_t L_56 = V_2; int32_t L_57 = L_56; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1)); NullCheck(L_55); LeafNode_set_Pos_m3FE6DE6E690AFE747A6898DD4C6FBD5B1B8C3B0E_inline(L_55, L_57, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** L_58 = ___posWithRangeTerminals2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_59 = *((BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 **)L_58); int32_t L_60 = V_3; NullCheck(L_59); BitSet_Set_m537E6F3B227408BA917DD58BAE786DCD659E6F77(L_59, L_60, /*hidden argument*/NULL); } IL_0103: { int32_t L_61 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_61, (int32_t)1)); } IL_0107: { int32_t L_62 = V_3; if ((((int32_t)L_62) >= ((int32_t)0))) { goto IL_002b; } } { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_63 = V_1; return L_63; } } // System.Void System.Xml.Schema.ParticleContentValidator::CheckCMUPAWithLeafRangeNodes(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CheckCMUPAWithLeafRangeNodes_m57640135F9E9E950375B988EC29737A882B3276E (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; int32_t V_1 = 0; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = __this->get_symbols_7(); NullCheck(L_0); int32_t L_1; L_1 = SymbolsDictionary_get_Count_mAE31651169418765C4F54B7B3746AB2016B9077C(L_0, /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_3 = ___curpos0; NullCheck(L_3); int32_t L_4; L_4 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_3, (-1), /*hidden argument*/NULL); V_1 = L_4; goto IL_0058; } IL_001b: { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_5 = __this->get_positions_8(); int32_t L_6 = V_1; NullCheck(L_5); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_7; L_7 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_5, L_6, /*hidden argument*/NULL); V_2 = L_7; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_8 = V_2; int32_t L_9 = L_8.get_symbol_0(); V_3 = L_9; int32_t L_10 = V_3; if ((((int32_t)L_10) < ((int32_t)0))) { goto IL_0050; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = V_0; int32_t L_12 = V_3; NullCheck(L_11); int32_t L_13 = L_12; RuntimeObject * L_14 = (L_11)->GetAt(static_cast(L_13)); if (!L_14) { goto IL_0047; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = V_0; int32_t L_16 = V_3; NullCheck(L_15); int32_t L_17 = L_16; RuntimeObject * L_18 = (L_15)->GetAt(static_cast(L_17)); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_19 = V_2; RuntimeObject * L_20 = L_19.get_particle_1(); UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA * L_21 = (UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA_il2cpp_TypeInfo_var))); UpaException__ctor_m8477F8F2C92D245269451AC32F07043BB741B937(L_21, L_18, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ParticleContentValidator_CheckCMUPAWithLeafRangeNodes_m57640135F9E9E950375B988EC29737A882B3276E_RuntimeMethod_var))); } IL_0047: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = V_0; int32_t L_23 = V_3; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_24 = V_2; RuntimeObject * L_25 = L_24.get_particle_1(); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast(L_23), (RuntimeObject *)L_25); } IL_0050: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_26 = ___curpos0; int32_t L_27 = V_1; NullCheck(L_26); int32_t L_28; L_28 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_26, L_27, /*hidden argument*/NULL); V_1 = L_28; } IL_0058: { int32_t L_29 = V_1; if ((!(((uint32_t)L_29) == ((uint32_t)(-1))))) { goto IL_001b; } } { return; } } // System.Xml.Schema.BitSet System.Xml.Schema.ParticleContentValidator::GetApplicableMinMaxFollowPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ParticleContentValidator_GetApplicableMinMaxFollowPos_m0E6FAFE2FF50F19E3AB0926EA018E6A792DB1D3B (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___posWithRangeTerminals1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___minmaxFollowPos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_0 = NULL; int32_t V_1 = 0; LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * V_2 = NULL; { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = ___curpos0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_1 = ___posWithRangeTerminals1; NullCheck(L_0); bool L_2; L_2 = BitSet_Intersects_mE58DAE3469C94CC56347E78DA0042E65A6F74DD7(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_006b; } } { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_3 = __this->get_positions_8(); NullCheck(L_3); int32_t L_4; L_4 = Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8(L_3, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_5 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_5, L_4, /*hidden argument*/NULL); V_0 = L_5; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_6 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_7 = ___curpos0; NullCheck(L_6); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_6, L_7, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_8 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_9 = ___posWithRangeTerminals1; NullCheck(L_8); BitSet_And_m0EF78E42083185D739F209094F2116E8B22B7C30(L_8, L_9, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_10 = ___curpos0; NullCheck(L_10); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_11; L_11 = BitSet_Clone_m42F3015E96CD274C9938B5B8F1E6AA8661EBF603(L_10, /*hidden argument*/NULL); ___curpos0 = L_11; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_12 = V_0; NullCheck(L_12); int32_t L_13; L_13 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_12, (-1), /*hidden argument*/NULL); V_1 = L_13; goto IL_0067; } IL_003a: { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_14 = __this->get_positions_8(); int32_t L_15 = V_1; NullCheck(L_14); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_16; L_16 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_14, L_15, /*hidden argument*/NULL); RuntimeObject * L_17 = L_16.get_particle_1(); V_2 = ((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)IsInstSealed((RuntimeObject*)L_17, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var)); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_18 = ___curpos0; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_19 = ___minmaxFollowPos2; LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * L_20 = V_2; NullCheck(L_20); int32_t L_21; L_21 = LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline(L_20, /*hidden argument*/NULL); NullCheck(L_19); int32_t L_22 = L_21; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_23 = (L_19)->GetAt(static_cast(L_22)); NullCheck(L_18); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_18, L_23, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_24 = V_0; int32_t L_25 = V_1; NullCheck(L_24); int32_t L_26; L_26 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_24, L_25, /*hidden argument*/NULL); V_1 = L_26; } IL_0067: { int32_t L_27 = V_1; if ((!(((uint32_t)L_27) == ((uint32_t)(-1))))) { goto IL_003a; } } IL_006b: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_28 = ___curpos0; return L_28; } } // System.Void System.Xml.Schema.ParticleContentValidator::CheckUniqueParticleAttribution(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CheckUniqueParticleAttribution_m20D1BC069D23A2FB347CE62A49B0B545B05A5357 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, const RuntimeMethod* method) { int32_t V_0 = 0; { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = ___firstpos0; ParticleContentValidator_CheckUniqueParticleAttribution_m6C017664467EEE3561D4703FFAF0C2519A94D752(__this, L_0, /*hidden argument*/NULL); V_0 = 0; goto IL_0018; } IL_000b: { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_1 = ___followpos1; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_4 = (L_1)->GetAt(static_cast(L_3)); ParticleContentValidator_CheckUniqueParticleAttribution_m6C017664467EEE3561D4703FFAF0C2519A94D752(__this, L_4, /*hidden argument*/NULL); int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0018: { int32_t L_6 = V_0; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_7 = __this->get_positions_8(); NullCheck(L_7); int32_t L_8; L_8 = Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8(L_7, /*hidden argument*/NULL); if ((((int32_t)L_6) < ((int32_t)L_8))) { goto IL_000b; } } { return; } } // System.Void System.Xml.Schema.ParticleContentValidator::CheckUniqueParticleAttribution(System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CheckUniqueParticleAttribution_m6C017664467EEE3561D4703FFAF0C2519A94D752 (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_0 = __this->get_symbols_7(); NullCheck(L_0); int32_t L_1; L_1 = SymbolsDictionary_get_Count_mAE31651169418765C4F54B7B3746AB2016B9077C(L_0, /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_3 = ___curpos0; NullCheck(L_3); int32_t L_4; L_4 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_3, (-1), /*hidden argument*/NULL); V_1 = L_4; goto IL_0080; } IL_001b: { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_5 = __this->get_positions_8(); int32_t L_6 = V_1; NullCheck(L_5); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_7; L_7 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_5, L_6, /*hidden argument*/NULL); int32_t L_8 = L_7.get_symbol_0(); V_2 = L_8; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = V_0; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; RuntimeObject * L_12 = (L_9)->GetAt(static_cast(L_11)); if (L_12) { goto IL_0048; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = V_0; int32_t L_14 = V_2; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_15 = __this->get_positions_8(); int32_t L_16 = V_1; NullCheck(L_15); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_17; L_17 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_15, L_16, /*hidden argument*/NULL); RuntimeObject * L_18 = L_17.get_particle_1(); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_18); (L_13)->SetAt(static_cast(L_14), (RuntimeObject *)L_18); goto IL_0078; } IL_0048: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = V_0; int32_t L_20 = V_2; NullCheck(L_19); int32_t L_21 = L_20; RuntimeObject * L_22 = (L_19)->GetAt(static_cast(L_21)); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_23 = __this->get_positions_8(); int32_t L_24 = V_1; NullCheck(L_23); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_25; L_25 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_23, L_24, /*hidden argument*/NULL); RuntimeObject * L_26 = L_25.get_particle_1(); if ((((RuntimeObject*)(RuntimeObject *)L_22) == ((RuntimeObject*)(RuntimeObject *)L_26))) { goto IL_0078; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_0; int32_t L_28 = V_2; NullCheck(L_27); int32_t L_29 = L_28; RuntimeObject * L_30 = (L_27)->GetAt(static_cast(L_29)); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_31 = __this->get_positions_8(); int32_t L_32 = V_1; NullCheck(L_31); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_33; L_33 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_31, L_32, /*hidden argument*/NULL); RuntimeObject * L_34 = L_33.get_particle_1(); UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA * L_35 = (UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA_il2cpp_TypeInfo_var))); UpaException__ctor_m8477F8F2C92D245269451AC32F07043BB741B937(L_35, L_30, L_34, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ParticleContentValidator_CheckUniqueParticleAttribution_m6C017664467EEE3561D4703FFAF0C2519A94D752_RuntimeMethod_var))); } IL_0078: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_36 = ___curpos0; int32_t L_37 = V_1; NullCheck(L_36); int32_t L_38; L_38 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_36, L_37, /*hidden argument*/NULL); V_1 = L_38; } IL_0080: { int32_t L_39 = V_1; if ((!(((uint32_t)L_39) == ((uint32_t)(-1))))) { goto IL_001b; } } { return; } } // System.Int32[][] System.Xml.Schema.ParticleContentValidator::BuildTransitionTable(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ParticleContentValidator_BuildTransitionTable_m6B384EC2BC803DD3C4D335740807ABE5DFDE766C (ParticleContentValidator_tCD1330C423CCA7FCC0DE650DA36476149FDB0EB8 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, int32_t ___endMarkerPos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_t66723C58C7422102C36F8570BE048BD0CC489E52_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_3 = NULL; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * V_4 = NULL; Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * V_5 = NULL; int32_t V_6 = 0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_7 = NULL; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_8 = NULL; int32_t V_9 = 0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * V_10 = NULL; RuntimeObject * V_11 = NULL; int32_t V_12 = 0; int32_t V_13 = 0; { Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_0 = __this->get_positions_8(); NullCheck(L_0); int32_t L_1; L_1 = Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; V_1 = ((int32_t)((int32_t)((int32_t)8192)/(int32_t)L_2)); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_3 = __this->get_symbols_7(); NullCheck(L_3); int32_t L_4; L_4 = SymbolsDictionary_get_Count_mAE31651169418765C4F54B7B3746AB2016B9077C(L_3, /*hidden argument*/NULL); V_2 = L_4; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_5, /*hidden argument*/NULL); V_3 = L_5; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_6, /*hidden argument*/NULL); V_4 = L_6; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_7 = V_4; int32_t L_8 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_9 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_9, L_8, /*hidden argument*/NULL); int32_t L_10 = (-1); RuntimeObject * L_11 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_10); NullCheck(L_7); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_7, L_9, L_11); Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * L_12 = (Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 *)il2cpp_codegen_object_new(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52_il2cpp_TypeInfo_var); Queue__ctor_m9844D111CC69802C62565C05109A2557FD21C127(L_12, /*hidden argument*/NULL); V_5 = L_12; V_6 = 0; Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * L_13 = V_5; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_14 = ___firstpos0; NullCheck(L_13); VirtActionInvoker1< RuntimeObject * >::Invoke(11 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_13, L_14); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_15 = V_4; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_16 = ___firstpos0; int32_t L_17 = 0; RuntimeObject * L_18 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_17); NullCheck(L_15); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_15, L_16, L_18); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_19 = V_3; int32_t L_20 = V_2; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); NullCheck(L_19); int32_t L_22; L_22 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_19, (RuntimeObject *)(RuntimeObject *)L_21); goto IL_015f; } IL_0074: { Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * L_23 = V_5; NullCheck(L_23); RuntimeObject * L_24; L_24 = VirtFuncInvoker0< RuntimeObject * >::Invoke(13 /* System.Object System.Collections.Queue::Dequeue() */, L_23); V_7 = ((BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)CastclassSealed((RuntimeObject*)L_24, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_25 = V_3; int32_t L_26 = V_6; NullCheck(L_25); RuntimeObject * L_27; L_27 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_25, L_26); V_8 = ((Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)Castclass((RuntimeObject*)L_27, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var)); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_28 = V_7; int32_t L_29 = ___endMarkerPos2; NullCheck(L_28); bool L_30; L_30 = BitSet_get_Item_m2695BC4DFBA9F8E1517F7F5D344C5FE012EC29E4(L_28, L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_00a0; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_31 = V_8; int32_t L_32 = V_2; NullCheck(L_31); (L_31)->SetAt(static_cast(L_32), (int32_t)1); } IL_00a0: { V_9 = 0; goto IL_0151; } IL_00a8: { int32_t L_33 = V_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_34 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_34, L_33, /*hidden argument*/NULL); V_10 = L_34; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_35 = V_7; NullCheck(L_35); int32_t L_36; L_36 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_35, (-1), /*hidden argument*/NULL); V_12 = L_36; goto IL_00e8; } IL_00bc: { int32_t L_37 = V_9; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_38 = __this->get_positions_8(); int32_t L_39 = V_12; NullCheck(L_38); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_40; L_40 = Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7(L_38, L_39, /*hidden argument*/NULL); int32_t L_41 = L_40.get_symbol_0(); if ((!(((uint32_t)L_37) == ((uint32_t)L_41)))) { goto IL_00dd; } } { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_42 = V_10; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_43 = ___followpos1; int32_t L_44 = V_12; NullCheck(L_43); int32_t L_45 = L_44; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_46 = (L_43)->GetAt(static_cast(L_45)); NullCheck(L_42); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_42, L_46, /*hidden argument*/NULL); } IL_00dd: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_47 = V_7; int32_t L_48 = V_12; NullCheck(L_47); int32_t L_49; L_49 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_47, L_48, /*hidden argument*/NULL); V_12 = L_49; } IL_00e8: { int32_t L_50 = V_12; if ((!(((uint32_t)L_50) == ((uint32_t)(-1))))) { goto IL_00bc; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_51 = V_4; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_52 = V_10; NullCheck(L_51); RuntimeObject * L_53; L_53 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_51, L_52); V_11 = L_53; RuntimeObject * L_54 = V_11; if (!L_54) { goto IL_010a; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_55 = V_8; int32_t L_56 = V_9; RuntimeObject * L_57 = V_11; NullCheck(L_55); (L_55)->SetAt(static_cast(L_56), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_57, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var))))); goto IL_014b; } IL_010a: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_58 = V_4; NullCheck(L_58); int32_t L_59; L_59 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_58); V_13 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_59, (int32_t)1)); int32_t L_60 = V_13; int32_t L_61 = V_1; if ((((int32_t)L_60) < ((int32_t)L_61))) { goto IL_011c; } } { return (Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF*)NULL; } IL_011c: { Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * L_62 = V_5; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_63 = V_10; NullCheck(L_62); VirtActionInvoker1< RuntimeObject * >::Invoke(11 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_62, L_63); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_64 = V_4; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_65 = V_10; int32_t L_66 = V_13; int32_t L_67 = L_66; RuntimeObject * L_68 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_67); NullCheck(L_64); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_64, L_65, L_68); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_69 = V_3; int32_t L_70 = V_2; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_71 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)1))); NullCheck(L_69); int32_t L_72; L_72 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_69, (RuntimeObject *)(RuntimeObject *)L_71); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_73 = V_8; int32_t L_74 = V_9; int32_t L_75 = V_13; NullCheck(L_73); (L_73)->SetAt(static_cast(L_74), (int32_t)L_75); } IL_014b: { int32_t L_76 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1)); } IL_0151: { int32_t L_77 = V_9; int32_t L_78 = V_2; if ((((int32_t)L_77) < ((int32_t)L_78))) { goto IL_00a8; } } { int32_t L_79 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1)); } IL_015f: { Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * L_80 = V_5; NullCheck(L_80); int32_t L_81; L_81 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Queue::get_Count() */, L_80); if ((((int32_t)L_81) > ((int32_t)0))) { goto IL_0074; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_82 = V_3; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_83 = { reinterpret_cast (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84; L_84 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_83, /*hidden argument*/NULL); NullCheck(L_82); RuntimeArray * L_85; L_85 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(40 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_82, L_84); return ((Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF*)Castclass((RuntimeObject*)L_85, Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF_il2cpp_TypeInfo_var)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.PlusNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlusNode_ConstructPos_mCC1C5A2A1077B141FA680A7E11265483137CB1A5 (PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos2, const RuntimeMethod* method) { int32_t V_0 = 0; { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0; L_0 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(__this, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_1 = ___firstpos0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___lastpos1; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_3 = ___followpos2; NullCheck(L_0); VirtActionInvoker3< BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* >::Invoke(5 /* System.Void System.Xml.Schema.SyntaxTreeNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) */, L_0, L_1, L_2, L_3); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_4 = ___lastpos1; NullCheck(L_4); int32_t L_5; L_5 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_4, (-1), /*hidden argument*/NULL); V_0 = L_5; goto IL_0029; } IL_0018: { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_6 = ___followpos2; int32_t L_7 = V_0; NullCheck(L_6); int32_t L_8 = L_7; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_9 = (L_6)->GetAt(static_cast(L_8)); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_10 = ___firstpos0; NullCheck(L_9); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_9, L_10, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_11 = ___lastpos1; int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13; L_13 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; } IL_0029: { int32_t L_14 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)(-1))))) { goto IL_0018; } } { return; } } // System.Boolean System.Xml.Schema.PlusNode::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlusNode_get_IsNullable_m349DDC6B28927073124672B867D0EAB7B74B5265 (PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 * __this, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0; L_0 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); bool L_1; L_1 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_0); return L_1; } } // System.Void System.Xml.Schema.PlusNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlusNode__ctor_m8842D4AF6D999A5A62BF512ACD52718CF10B1930 (PlusNode_t851099EADD1DCF046426D1F879268DF8AC78A979 * __this, const RuntimeMethod* method) { { InteriorNode__ctor_mE9F860A667BE626F44260612EC983CBDBD16B658(__this, /*hidden argument*/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 // Conversion methods for marshalling of: System.Xml.Schema.Position IL2CPP_EXTERN_C void Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshal_pinvoke(const Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866& unmarshaled, Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_pinvoke& marshaled) { marshaled.___symbol_0 = unmarshaled.get_symbol_0(); if (unmarshaled.get_particle_1() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_particle_1())) { marshaled.___particle_1 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.get_particle_1())); (marshaled.___particle_1)->AddRef(); } else { marshaled.___particle_1 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.get_particle_1()); } } else { marshaled.___particle_1 = NULL; } } IL2CPP_EXTERN_C void Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshal_pinvoke_back(const Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_pinvoke& marshaled, Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_symbol_temp_0 = 0; unmarshaled_symbol_temp_0 = marshaled.___symbol_0; unmarshaled.set_symbol_0(unmarshaled_symbol_temp_0); if (marshaled.___particle_1 != NULL) { unmarshaled.set_particle_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___particle_1, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_particle_1())) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.get_particle_1()), Il2CppIUnknown::IID, marshaled.___particle_1); } } else { unmarshaled.set_particle_1(NULL); } } // Conversion method for clean up from marshalling of: System.Xml.Schema.Position IL2CPP_EXTERN_C void Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshal_pinvoke_cleanup(Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_pinvoke& marshaled) { if (marshaled.___particle_1 != NULL) { (marshaled.___particle_1)->Release(); marshaled.___particle_1 = NULL; } } // Conversion methods for marshalling of: System.Xml.Schema.Position IL2CPP_EXTERN_C void Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshal_com(const Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866& unmarshaled, Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_com& marshaled) { marshaled.___symbol_0 = unmarshaled.get_symbol_0(); if (unmarshaled.get_particle_1() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_particle_1())) { marshaled.___particle_1 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.get_particle_1())); (marshaled.___particle_1)->AddRef(); } else { marshaled.___particle_1 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.get_particle_1()); } } else { marshaled.___particle_1 = NULL; } } IL2CPP_EXTERN_C void Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshal_com_back(const Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_com& marshaled, Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_symbol_temp_0 = 0; unmarshaled_symbol_temp_0 = marshaled.___symbol_0; unmarshaled.set_symbol_0(unmarshaled_symbol_temp_0); if (marshaled.___particle_1 != NULL) { unmarshaled.set_particle_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___particle_1, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_particle_1())) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.get_particle_1()), Il2CppIUnknown::IID, marshaled.___particle_1); } } else { unmarshaled.set_particle_1(NULL); } } // Conversion method for clean up from marshalling of: System.Xml.Schema.Position IL2CPP_EXTERN_C void Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshal_com_cleanup(Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_marshaled_com& marshaled) { if (marshaled.___particle_1 != NULL) { (marshaled.___particle_1)->Release(); marshaled.___particle_1 = NULL; } } // System.Void System.Xml.Schema.Position::.ctor(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Position__ctor_m3F6A5C351510265E5FCE79C95B2F4CF15BB21F35 (Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 * __this, int32_t ___symbol0, RuntimeObject * ___particle1, const RuntimeMethod* method) { { int32_t L_0 = ___symbol0; __this->set_symbol_0(L_0); RuntimeObject * L_1 = ___particle1; __this->set_particle_1(L_1); return; } } IL2CPP_EXTERN_C void Position__ctor_m3F6A5C351510265E5FCE79C95B2F4CF15BB21F35_AdjustorThunk (RuntimeObject * __this, int32_t ___symbol0, RuntimeObject * ___particle1, const RuntimeMethod* method) { int32_t _offset = 1; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 * _thisAdjusted = reinterpret_cast(__this + _offset); Position__ctor_m3F6A5C351510265E5FCE79C95B2F4CF15BB21F35(_thisAdjusted, ___symbol0, ___particle1, 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.Int32 System.Xml.Schema.Positions::Add(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Positions_Add_mEC7D6654760E4112DF78A37BE117A81C3352C6B6 (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, int32_t ___symbol0, RuntimeObject * ___particle1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_positions_0(); int32_t L_1 = ___symbol0; RuntimeObject * L_2 = ___particle1; Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_3; memset((&L_3), 0, sizeof(L_3)); Position__ctor_m3F6A5C351510265E5FCE79C95B2F4CF15BB21F35((&L_3), L_1, L_2, /*hidden argument*/NULL); Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 L_4 = L_3; RuntimeObject * L_5 = Box(Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_il2cpp_TypeInfo_var, &L_4); NullCheck(L_0); int32_t L_6; L_6 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_5); return L_6; } } // System.Xml.Schema.Position System.Xml.Schema.Positions::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 Positions_get_Item_mD49315AADFDD26A392138DB63926773D958A7EA7 (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, int32_t ___pos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_positions_0(); int32_t L_1 = ___pos0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1); return ((*(Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 *)((Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866 *)UnBox(L_2, Position_tD9D8C9ECCEF2EC71D72D9BEE2C4A332E402E6866_il2cpp_TypeInfo_var)))); } } // System.Int32 System.Xml.Schema.Positions::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Positions_get_Count_mA8FAAADEACD8AAC36B9EB1B90A1562181E905AE8 (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, const RuntimeMethod* method) { { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_positions_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); return L_1; } } // System.Void System.Xml.Schema.Positions::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Positions__ctor_m714DAA090730CD4CE65ED6EDD4B8673AF3415A9F (Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL); __this->set_positions_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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.Exception System.Xml.Schema.QNameFacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * QNameFacetsChecker_CheckValueFacets_mB5E74D223BBDDC97D4A3094865E8E87324C1A844 (QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * V_0 = NULL; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_3, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject * L_5; L_5 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, Type_t * >::Invoke(60 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type) */, L_1, L_2, L_4); V_0 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)CastclassClass((RuntimeObject*)L_5, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var)); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_6 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_7 = ___datatype1; Exception_t * L_8; L_8 = VirtFuncInvoker2< Exception_t *, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(16 /* System.Exception System.Xml.Schema.FacetsChecker::CheckValueFacets(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_6, L_7); return L_8; } } // System.Exception System.Xml.Schema.QNameFacetsChecker::CheckValueFacets(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * QNameFacetsChecker_CheckValueFacets_m26745D71DAAEE09F582EE56DD37ED6DF80DDF059 (QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, 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*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142); s_Il2CppMethodInitialized = true; } RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t G_B3_0 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1; L_1 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_0); V_0 = L_1; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_2 = V_0; if (L_2) { goto IL_000d; } } { G_B3_0 = 0; goto IL_0013; } IL_000d: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_Flags_12(); G_B3_0 = ((int32_t)(L_4)); } IL_0013: { V_1 = G_B3_0; int32_t L_5 = V_1; if (!L_5) { goto IL_00a5; } } { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_6 = ___value0; NullCheck(L_6); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6); NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL); V_2 = L_8; int32_t L_9 = V_1; if (!((int32_t)((int32_t)L_9&(int32_t)1))) { goto IL_0044; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_10 = V_0; NullCheck(L_10); int32_t L_11 = L_10->get_Length_0(); int32_t L_12 = V_2; if ((((int32_t)L_11) == ((int32_t)L_12))) { goto IL_0044; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_14 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_14, _stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780, L_13, /*hidden argument*/NULL); return L_14; } IL_0044: { int32_t L_15 = V_1; if (!((int32_t)((int32_t)L_15&(int32_t)2))) { goto IL_0062; } } { int32_t L_16 = V_2; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_17 = V_0; NullCheck(L_17); int32_t L_18 = L_17->get_MinLength_1(); if ((((int32_t)L_16) >= ((int32_t)L_18))) { goto IL_0062; } } { String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_20 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_20, _stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142, L_19, /*hidden argument*/NULL); return L_20; } IL_0062: { int32_t L_21 = V_1; if (!((int32_t)((int32_t)L_21&(int32_t)4))) { goto IL_0080; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_22 = V_0; NullCheck(L_22); int32_t L_23 = L_22->get_MaxLength_2(); int32_t L_24 = V_2; if ((((int32_t)L_23) >= ((int32_t)L_24))) { goto IL_0080; } } { String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_26 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_26, _stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA, L_25, /*hidden argument*/NULL); return L_26; } IL_0080: { int32_t L_27 = V_1; if (!((int32_t)((int32_t)L_27&(int32_t)((int32_t)16)))) { goto IL_00a5; } } { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_28 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_29 = V_0; NullCheck(L_29); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_30 = L_29->get_Enumeration_4(); bool L_31; L_31 = QNameFacetsChecker_MatchEnumeration_m7C4FF6FCC7D85863C1F7065DF07469C8C2E3E1CD(__this, L_28, L_30, /*hidden argument*/NULL); if (L_31) { goto IL_00a5; } } { String_t* L_32 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_33 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_33, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_32, /*hidden argument*/NULL); return L_33; } IL_00a5: { return (Exception_t *)NULL; } } // System.Boolean System.Xml.Schema.QNameFacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QNameFacetsChecker_MatchEnumeration_mD714A7FF12F994AD4BFBAB39E5DA060F82C2C220 (QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_3, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject * L_5; L_5 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, Type_t * >::Invoke(60 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type) */, L_1, L_2, L_4); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_6 = ___enumeration1; bool L_7; L_7 = QNameFacetsChecker_MatchEnumeration_m7C4FF6FCC7D85863C1F7065DF07469C8C2E3E1CD(__this, ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)CastclassClass((RuntimeObject*)L_5, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var)), L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.Xml.Schema.QNameFacetsChecker::MatchEnumeration(System.Xml.XmlQualifiedName,System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QNameFacetsChecker_MatchEnumeration_m7C4FF6FCC7D85863C1F7065DF07469C8C2E3E1CD (QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { V_0 = 0; goto IL_001e; } IL_0004: { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___enumeration1; int32_t L_2 = V_0; NullCheck(L_1); RuntimeObject * L_3; L_3 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_2); NullCheck(L_0); bool L_4; L_4 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)CastclassClass((RuntimeObject*)L_3, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))); if (!L_4) { goto IL_001a; } } { return (bool)1; } IL_001a: { int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_001e: { int32_t L_6 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_7 = ___enumeration1; NullCheck(L_7); int32_t L_8; L_8 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7); if ((((int32_t)L_6) < ((int32_t)L_8))) { goto IL_0004; } } { return (bool)0; } } // System.Void System.Xml.Schema.QNameFacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QNameFacetsChecker__ctor_mE0345A5109D0F20D6AEA2D4E2C20A42202DFDC93 (QNameFacetsChecker_t99F79A097A773CEF15CE258DAF0003018994AADC * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.QmarkNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QmarkNode_ConstructPos_m7EDCBC712BCE3E1A82D8CF60B40BDB051A8E2470 (QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos2, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0; L_0 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(__this, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_1 = ___firstpos0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___lastpos1; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_3 = ___followpos2; NullCheck(L_0); VirtActionInvoker3< BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* >::Invoke(5 /* System.Void System.Xml.Schema.SyntaxTreeNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) */, L_0, L_1, L_2, L_3); return; } } // System.Boolean System.Xml.Schema.QmarkNode::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QmarkNode_get_IsNullable_m8A65D39817857573B68DB31F83AF37A52153A1EE (QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.Schema.QmarkNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QmarkNode__ctor_m84C424AEB93C7854333A5928A67C09C9BACA6C26 (QmarkNode_t81952C0AD074EE649E9186843D136BBF43646803 * __this, const RuntimeMethod* method) { { InteriorNode__ctor_mE9F860A667BE626F44260612EC983CBDBD16B658(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.RangeContentValidator::.ctor(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[],System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions,System.Int32,System.Xml.Schema.XmlSchemaContentType,System.Boolean,System.Xml.Schema.BitSet,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeContentValidator__ctor_mF49D45F7C208508F8A648DFE1BA00AA3DC9E7261 (RangeContentValidator_t0FF32C46394F954E099F3E2D92510BAEA696ED52 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos1, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols2, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions3, int32_t ___endMarkerPos4, int32_t ___contentType5, bool ___isEmptiable6, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___positionsWithRangeTerminals7, int32_t ___minmaxNodesCount8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___contentType5; bool L_1 = ___isEmptiable6; IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator__ctor_m70BBAD5BF4E84F43ABC115AE8F14B47F9C357435(__this, L_0, (bool)0, L_1, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___firstpos0; __this->set_firstpos_7(L_2); BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_3 = ___followpos1; __this->set_followpos_8(L_3); SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_4 = ___symbols2; __this->set_symbols_10(L_4); Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_5 = ___positions3; __this->set_positions_11(L_5); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_6 = ___positionsWithRangeTerminals7; __this->set_positionsWithRangeTerminals_9(L_6); int32_t L_7 = ___minmaxNodesCount8; __this->set_minMaxNodesCount_12(L_7); int32_t L_8 = ___endMarkerPos4; __this->set_endMarkerPos_13(L_8); 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.Boolean System.Xml.Ref::Equal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_mC7446C03C6E7E8A136230B02A6B4F9FA6B389242 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method) { { String_t* L_0 = ___strA0; String_t* L_1 = ___strB1; return (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))? 1 : 0); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.ReflectionHelper::RegisterSchemaType(System.Xml.Serialization.XmlTypeMapping,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper_RegisterSchemaType_mD63658F35808E6758F10C00786FE1C23F3F82593 (ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064 * __this, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___map0, String_t* ___xmlType1, String_t* ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___xmlType1; String_t* L_1 = ___ns2; String_t* L_2; L_2 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_0, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_1, /*hidden argument*/NULL); V_0 = L_2; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = __this->get__schemaTypes_1(); String_t* L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_3, L_4); if (L_5) { goto IL_0028; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = __this->get__schemaTypes_1(); String_t* L_7 = V_0; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_8 = ___map0; NullCheck(L_6); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_8); } IL_0028: { return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.ReflectionHelper::GetRegisteredSchemaType(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ReflectionHelper_GetRegisteredSchemaType_m8F59BDFFDD62EE238F8073D62893C2F10E3EDDBB (ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064 * __this, String_t* ___xmlType0, String_t* ___ns1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___xmlType0; String_t* L_1 = ___ns1; String_t* L_2; L_2 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_0, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_1, /*hidden argument*/NULL); V_0 = L_2; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = __this->get__schemaTypes_1(); String_t* L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5; L_5 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_3, L_4); return ((XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *)IsInstClass((RuntimeObject*)L_5, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.Serialization.ReflectionHelper::RegisterClrType(System.Xml.Serialization.XmlTypeMapping,System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper_RegisterClrType_m7BE8D0A8841FDE79CCC033385A3A7DB3235A1D80 (ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064 * __this, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___map0, Type_t * ___type1, String_t* ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Type_t * L_0 = ___type1; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2; L_2 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_1, /*hidden argument*/NULL); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0019; } } { ___ns2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0019: { Type_t * L_4 = ___type1; NullCheck(L_4); String_t* L_5; L_5 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_4); String_t* L_6 = ___ns2; String_t* L_7; L_7 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_5, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_6, /*hidden argument*/NULL); V_0 = L_7; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_8 = __this->get__clrTypes_0(); String_t* L_9 = V_0; NullCheck(L_8); bool L_10; L_10 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_8, L_9); if (L_10) { goto IL_0046; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_11 = __this->get__clrTypes_0(); String_t* L_12 = V_0; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_13 = ___map0; NullCheck(L_11); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_12, L_13); } IL_0046: { return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.ReflectionHelper::GetRegisteredClrType(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ReflectionHelper_GetRegisteredClrType_m4BFA672D5A5BEB57FFBE7B8A10914860FAF9BC36 (ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064 * __this, Type_t * ___type0, String_t* ___ns1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Type_t * L_0 = ___type0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2; L_2 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_1, /*hidden argument*/NULL); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0019; } } { ___ns1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0019: { Type_t * L_4 = ___type0; NullCheck(L_4); String_t* L_5; L_5 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_4); String_t* L_6 = ___ns1; String_t* L_7; L_7 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_5, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_6, /*hidden argument*/NULL); V_0 = L_7; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_8 = __this->get__clrTypes_0(); String_t* L_9 = V_0; NullCheck(L_8); RuntimeObject * L_10; L_10 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_8, L_9); return ((XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *)IsInstClass((RuntimeObject*)L_10, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.Serialization.ReflectionHelper::CheckSerializableType(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper_CheckSerializableType_m9EC0F006F23E70D9441DA9CED140A631D1B31DA8 (Type_t * ___type0, bool ___allowPrivateConstructors1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1; L_1 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0009; } } { return; } IL_0009: { bool L_2 = ___allowPrivateConstructors1; if (L_2) { goto IL_004d; } } { Type_t * L_3 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_4 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); IL2CPP_RUNTIME_CLASS_INIT(ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_il2cpp_TypeInfo_var); ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* L_5 = ((ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_StaticFields*)il2cpp_codegen_static_fields_for(ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_il2cpp_TypeInfo_var))->get_empty_modifiers_2(); NullCheck(L_3); ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_6; L_6 = Type_GetConstructor_m7D94831F070BECE7BECDAEAFB024981CCC4E03CE(L_3, ((int32_t)52), (Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 *)NULL, L_4, L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); bool L_7; L_7 = ConstructorInfo_op_Equality_m2876ADED3E727EB3BDDD1A684244D91F5CA5D7E2(L_6, (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)NULL, /*hidden argument*/NULL); if (!L_7) { goto IL_004d; } } { Type_t * L_8 = ___type0; NullCheck(L_8); bool L_9; L_9 = Type_get_IsAbstract_mB16DB56FCABF55740019D32C5286F38E30CAA19F(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_004d; } } { Type_t * L_10 = ___type0; NullCheck(L_10); bool L_11; L_11 = Type_get_IsValueType_m9CCCB4759C2D5A890096F8DBA66DAAEFE9D913FB(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_004d; } } { Type_t * L_12 = ___type0; NullCheck(L_12); String_t* L_13; L_13 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_12); String_t* L_14; L_14 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0352EBA15B2C8E5762F848F7B867BBB5F20BAA2B)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_15 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionHelper_CheckSerializableType_m9EC0F006F23E70D9441DA9CED140A631D1B31DA8_RuntimeMethod_var))); } IL_004d: { Type_t * L_16 = ___type0; NullCheck(L_16); bool L_17; L_17 = Type_get_IsInterface_mB10C34DEE8B22E1597C813211BBED17DD724FC07(L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_0078; } } { Type_t * L_18 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_19; L_19 = TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84(L_18, /*hidden argument*/NULL); NullCheck(L_19); bool L_20; L_20 = TypeData_get_IsListType_m3CBCB6B25D4337E243E39B514ACF19144C4A6E82(L_19, /*hidden argument*/NULL); if (L_20) { goto IL_0078; } } { Type_t * L_21 = ___type0; NullCheck(L_21); String_t* L_22; L_22 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_21); String_t* L_23; L_23 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral583FE8FF2848E442B35F899B36D164DB2745CC4C)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_24 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionHelper_CheckSerializableType_m9EC0F006F23E70D9441DA9CED140A631D1B31DA8_RuntimeMethod_var))); } IL_0078: { Type_t * L_25 = ___type0; V_0 = L_25; V_1 = (Type_t *)NULL; } IL_007c: { Type_t * L_26 = V_0; NullCheck(L_26); bool L_27; L_27 = Type_get_IsPublic_mE4BAD3A9E7F21231E4A579F7CF8F2DE4C5E8E0AC(L_26, /*hidden argument*/NULL); if (L_27) { goto IL_00a2; } } { Type_t * L_28 = V_0; NullCheck(L_28); bool L_29; L_29 = Type_get_IsNestedPublic_m699F4C8E5B0FEE0197BE12CD1A4143421B51E820(L_28, /*hidden argument*/NULL); if (L_29) { goto IL_00a2; } } { Type_t * L_30 = ___type0; NullCheck(L_30); String_t* L_31; L_31 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_30); String_t* L_32; L_32 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_31, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7B7577DF2515C03A262A50277B9E218048B228BB)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_33 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_33, L_32, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionHelper_CheckSerializableType_m9EC0F006F23E70D9441DA9CED140A631D1B31DA8_RuntimeMethod_var))); } IL_00a2: { Type_t * L_34 = V_0; V_1 = L_34; Type_t * L_35 = V_0; NullCheck(L_35); Type_t * L_36; L_36 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_35); V_0 = L_36; Type_t * L_37 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_38; L_38 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_37, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_38) { goto IL_00bd; } } { Type_t * L_39 = V_0; Type_t * L_40 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_41; L_41 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_39, L_40, /*hidden argument*/NULL); if (L_41) { goto IL_007c; } } IL_00bd: { return; } } // System.Void System.Xml.Serialization.ReflectionHelper::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper__ctor_m047E272CCD98B372A237956ABA5C1A203A113EBF (ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_0, /*hidden argument*/NULL); __this->set__clrTypes_0(L_0); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL); __this->set__schemaTypes_1(L_1); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Serialization.ReflectionHelper::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper__cctor_m37C79DA12F9454DACBB2FD6BF868F357227C46CF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* L_0 = (ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)SZArrayNew(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B_il2cpp_TypeInfo_var, (uint32_t)0); ((ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_StaticFields*)il2cpp_codegen_static_fields_for(ReflectionHelper_tC67A75338B32BA8115B0CBE9410DAB2D8570B064_il2cpp_TypeInfo_var))->set_empty_modifiers_2(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.String System.Xml.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3 (String_t* ___name0, const RuntimeMethod* method) { { String_t* L_0 = ___name0; return L_0; } } // System.String System.Xml.Res::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17 (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___args1; if (L_0) { goto IL_0005; } } { String_t* L_1 = ___name0; return L_1; } IL_0005: { String_t* L_2 = ___name0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = ___args1; String_t* L_4; L_4 = SR_GetString_m6DA3B70351EEFBA3AF7BCE2B3352E940378A7EFB(L_2, L_3, /*hidden argument*/NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String SR::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m6DA3B70351EEFBA3AF7BCE2B3352E940378A7EFB (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); String_t* L_1 = ___name0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___args1; String_t* L_3; L_3 = SR_GetString_mB079B88E05EF69AE52AEB90445C154D12107097C(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mB079B88E05EF69AE52AEB90445C154D12107097C (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, String_t* ___name1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method) { { CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0; String_t* L_1 = ___name1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___args2; String_t* L_3; L_3 = String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.SafeAsciiDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeAsciiDecoder__ctor_mB033A0469DC80F12A41C799789A73D22176D183D (SafeAsciiDecoder_tCD1ACB5604E6CFBC5F4738EEDCF5EA3A9EA957EF * __this, const RuntimeMethod* method) { { Decoder__ctor_m2EA154371203FAAE1CD0477C828E0B39B2091DF3(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Xml.SafeAsciiDecoder::GetCharCount(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SafeAsciiDecoder_GetCharCount_m108B5EE0BEE050B095BC848A3EB3CFC5681E4A46 (SafeAsciiDecoder_tCD1ACB5604E6CFBC5F4738EEDCF5EA3A9EA957EF * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { int32_t L_0 = ___count2; return L_0; } } // System.Int32 System.Xml.SafeAsciiDecoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SafeAsciiDecoder_GetChars_mCB59148E2C91B2D892039717797C99D1742FBFC0 (SafeAsciiDecoder_tCD1ACB5604E6CFBC5F4738EEDCF5EA3A9EA957EF * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___byteIndex1; V_0 = L_0; int32_t L_1 = ___charIndex4; V_1 = L_1; goto IL_0016; } IL_0007: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = ___chars3; int32_t L_3 = V_1; int32_t L_4 = L_3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___bytes0; int32_t L_6 = V_0; int32_t L_7 = L_6; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); NullCheck(L_5); int32_t L_8 = L_7; uint8_t L_9 = (L_5)->GetAt(static_cast(L_8)); NullCheck(L_2); (L_2)->SetAt(static_cast(L_4), (Il2CppChar)L_9); } IL_0016: { int32_t L_10 = V_0; int32_t L_11 = ___byteIndex1; int32_t L_12 = ___byteCount2; if ((((int32_t)L_10) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12))))) { goto IL_0007; } } { int32_t L_13 = ___byteCount2; return L_13; } } // System.Void System.Xml.SafeAsciiDecoder::Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeAsciiDecoder_Convert_m9E82BC990A35DCFCC10BE52C768F584339FA55C6 (SafeAsciiDecoder_tCD1ACB5604E6CFBC5F4738EEDCF5EA3A9EA957EF * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, int32_t ___charCount5, bool ___flush6, int32_t* ___bytesUsed7, int32_t* ___charsUsed8, bool* ___completed9, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___charCount5; int32_t L_1 = ___byteCount2; if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_000f; } } { int32_t L_2 = ___charCount5; ___byteCount2 = L_2; bool* L_3 = ___completed9; *((int8_t*)L_3) = (int8_t)0; goto IL_0013; } IL_000f: { bool* L_4 = ___completed9; *((int8_t*)L_4) = (int8_t)1; } IL_0013: { int32_t L_5 = ___byteIndex1; V_0 = L_5; int32_t L_6 = ___charIndex4; V_1 = L_6; int32_t L_7 = ___byteIndex1; int32_t L_8 = ___byteCount2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); goto IL_002d; } IL_001e: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_9 = ___chars3; int32_t L_10 = V_1; int32_t L_11 = L_10; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___bytes0; int32_t L_13 = V_0; int32_t L_14 = L_13; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); NullCheck(L_12); int32_t L_15 = L_14; uint8_t L_16 = (L_12)->GetAt(static_cast(L_15)); NullCheck(L_9); (L_9)->SetAt(static_cast(L_11), (Il2CppChar)L_16); } IL_002d: { int32_t L_17 = V_0; int32_t L_18 = V_2; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_001e; } } { int32_t* L_19 = ___charsUsed8; int32_t L_20 = ___byteCount2; *((int32_t*)L_19) = (int32_t)L_20; int32_t* L_21 = ___bytesUsed7; int32_t L_22 = ___byteCount2; *((int32_t*)L_21) = (int32_t)L_22; 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.Xml.Schema.SchemaAttDef::.ctor(System.Xml.XmlQualifiedName,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef__ctor_m8DD0D5317882F5F07CFAEC259164AB43A6C8D9F3 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, String_t* ___prefix1, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___name0; String_t* L_1 = ___prefix1; SchemaDeclBase__ctor_m1BC436E9668EED05F54E492D437DA46C34A551D8(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.SchemaAttDef::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef__ctor_m40A902B1FF7D8A59AC8FF7380C53C78E2C72585B (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { SchemaDeclBase__ctor_m1635E4DACD551DC1FA3CA6B426B8E2E78627F28F(__this, /*hidden argument*/NULL); return; } } // System.String System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_System_Xml_IDtdAttributeInfo_get_Prefix_m9C1B5ADBFCDCABDDAFE00F282080B7C48859BBCB (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaDeclBase_get_Prefix_mF758E713FDA809839D669B6E429AA694EF4588EB(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_System_Xml_IDtdAttributeInfo_get_LocalName_m2B8E81C3C7A839A02CB54EE71F9CE20FE31C0EA1 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0; L_0 = SchemaDeclBase_get_Name_m87FD6E6D364B0F6E028FE4FE87AEFF71575E009E_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1; L_1 = XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_System_Xml_IDtdAttributeInfo_get_LineNumber_m497A54EE6FBABDB37E48438B2E30E925E1D3E6A2 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaAttDef_get_LineNumber_m59313EBBBEB7825F74471D37390A359200BE323F_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_System_Xml_IDtdAttributeInfo_get_LinePosition_m73BC66396A9ED12ECF72B4EE8F7AAA5B32661410 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaAttDef_get_LinePosition_m319A452C4316D5428A237EE28BA0345D96D16D4D_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_IsNonCDataType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaAttDef_System_Xml_IDtdAttributeInfo_get_IsNonCDataType_mE2DDBDC90E986BA004C7B10BCC65ACCD8DD85748 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaAttDef_get_TokenizedType_mFB396F9F1E6D2FCBE5190C46CCAD49AC4FFA1A67(__this, /*hidden argument*/NULL); return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_IsDeclaredInExternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaAttDef_System_Xml_IDtdAttributeInfo_get_IsDeclaredInExternal_m042A8F598A261436090A1C6AFFD3C089215BF3B1 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { bool L_0; L_0 = SchemaDeclBase_get_IsDeclaredInExternal_m1B7033680C64843BC8F62EAE9B47B7FC521E4F2E_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Xml.Schema.SchemaAttDef::System.Xml.IDtdAttributeInfo.get_IsXmlAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaAttDef_System_Xml_IDtdAttributeInfo_get_IsXmlAttribute_mE253DC67DBDB9B06E2D96F9F3247D22E8CC0392E (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaAttDef_get_Reserved_mB2889E74F8D76DB2B9BF6DA7F6280058AE1C4E67_inline(__this, /*hidden argument*/NULL); return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.String System.Xml.Schema.SchemaAttDef::System.Xml.IDtdDefaultAttributeInfo.get_DefaultValueExpanded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_System_Xml_IDtdDefaultAttributeInfo_get_DefaultValueExpanded_m66C9801E15E644EB956029D9BE31EEE218619328 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaAttDef_get_DefaultValueExpanded_m3DD4309DBF57E2E9C4C2EBA74EE54365C51A88C5(__this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Xml.Schema.SchemaAttDef::System.Xml.IDtdDefaultAttributeInfo.get_DefaultValueTyped() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SchemaAttDef_System_Xml_IDtdDefaultAttributeInfo_get_DefaultValueTyped_m4E5A7BC1ECCBFB40FD6F10EE0AE335F7F9706FE0 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0; L_0 = SchemaDeclBase_get_DefaultValueTyped_m181BCA469B286D8325144D11547D51F3BC2BA10F_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Xml.Schema.SchemaAttDef::System.Xml.IDtdDefaultAttributeInfo.get_ValueLineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_System_Xml_IDtdDefaultAttributeInfo_get_ValueLineNumber_mC5CA36EEDCA57069B1984E28BC3E340E52D854B8 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaAttDef_get_ValueLineNumber_m4D2187BB1AA525C3FEA4D4131BF143B7569860BA_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Xml.Schema.SchemaAttDef::System.Xml.IDtdDefaultAttributeInfo.get_ValueLinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_System_Xml_IDtdDefaultAttributeInfo_get_ValueLinePosition_m968FB9292130C18FEA07702A8D2257D1747FABD5 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaAttDef_get_ValueLinePosition_m5392A796775EB83D96511989ECCF49A14EF4C064_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Xml.Schema.SchemaAttDef::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m319A452C4316D5428A237EE28BA0345D96D16D4D (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_linePos_13(); return L_0; } } // System.Void System.Xml.Schema.SchemaAttDef::set_LinePosition(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_LinePosition_m01F233895BAEAA4CF6073C9A3DD19E55FDE90A97 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_linePos_13(L_0); return; } } // System.Int32 System.Xml.Schema.SchemaAttDef::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LineNumber_m59313EBBBEB7825F74471D37390A359200BE323F (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNum_12(); return L_0; } } // System.Void System.Xml.Schema.SchemaAttDef::set_LineNumber(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_LineNumber_mF9A2CF90D506DB944073B5CFF7FBB56C7366CA0B (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_lineNum_12(L_0); return; } } // System.Int32 System.Xml.Schema.SchemaAttDef::get_ValueLinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLinePosition_m5392A796775EB83D96511989ECCF49A14EF4C064 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_valueLinePos_15(); return L_0; } } // System.Void System.Xml.Schema.SchemaAttDef::set_ValueLinePosition(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_ValueLinePosition_m3C695D5E1F49D484EA2034E69AC61925D13D4518 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_valueLinePos_15(L_0); return; } } // System.Int32 System.Xml.Schema.SchemaAttDef::get_ValueLineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLineNumber_m4D2187BB1AA525C3FEA4D4131BF143B7569860BA (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_valueLineNum_14(); return L_0; } } // System.Void System.Xml.Schema.SchemaAttDef::set_ValueLineNumber(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_ValueLineNumber_m74AB47ABABDF780437AC039339AF33B312C1321C (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_valueLineNum_14(L_0); return; } } // System.String System.Xml.Schema.SchemaAttDef::get_DefaultValueExpanded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_get_DefaultValueExpanded_m3DD4309DBF57E2E9C4C2EBA74EE54365C51A88C5 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_defExpanded_11(); if (L_0) { goto IL_000e; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_000e: { String_t* L_2 = __this->get_defExpanded_11(); return L_2; } } // System.Void System.Xml.Schema.SchemaAttDef::set_DefaultValueExpanded(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_DefaultValueExpanded_m0924B261962F28DC8763F5E5B5DB3FCC34C6A643 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_defExpanded_11(L_0); return; } } // System.Xml.XmlTokenizedType System.Xml.Schema.SchemaAttDef::get_TokenizedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_TokenizedType_mFB396F9F1E6D2FCBE5190C46CCAD49AC4FFA1A67 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0; L_0 = SchemaDeclBase_get_Datatype_mA6244D69EB46EA7A09CDB3BD3370B49B89A47FD1_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_0); return L_1; } } // System.Void System.Xml.Schema.SchemaAttDef::set_TokenizedType(System.Xml.XmlTokenizedType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_TokenizedType_mF747F8B6BF6ACA99631783CCA1845061A2671600 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_1; L_1 = XmlSchemaDatatype_FromXmlTokenizedType_mD42B4C7CB2F568D5495A41A29C04FC9AAEC631CD(L_0, /*hidden argument*/NULL); SchemaDeclBase_set_Datatype_m967CABF00F6B33B2EABB6522EBBBC92101F5CC74_inline(__this, L_1, /*hidden argument*/NULL); return; } } // System.Xml.Schema.SchemaAttDef/Reserve System.Xml.Schema.SchemaAttDef::get_Reserved() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_Reserved_mB2889E74F8D76DB2B9BF6DA7F6280058AE1C4E67 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_reserved_16(); return L_0; } } // System.Void System.Xml.Schema.SchemaAttDef::set_Reserved(System.Xml.Schema.SchemaAttDef/Reserve) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_Reserved_m446F2C9A61E13AFE0B7BE5C0BF56A05AC6CF5BA7 (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_reserved_16(L_0); return; } } // System.Void System.Xml.Schema.SchemaAttDef::CheckXmlSpace(System.Xml.IValidationEventHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_CheckXmlSpace_m3B75B027866FE085CAA4E37ECC7260DB7F3DC96B (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, RuntimeObject* ___validationEventHandling0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValidationEventHandling_t574D5D59A6C1707DB494A9F8AFB6A3DB3F0B64D1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral013BD4ABE4D4A1BC6D9EEF501A242AC0124ACED6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ((SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A *)__this)->get_datatype_5(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)9))))) { goto IL_00b0; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_2 = ((SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A *)__this)->get_values_10(); if (!L_2) { goto IL_00b0; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_3 = ((SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A *)__this)->get_values_10(); NullCheck(L_3); int32_t L_4; L_4 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_3, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); if ((((int32_t)L_4) > ((int32_t)2))) { goto IL_00b0; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_5 = ((SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A *)__this)->get_values_10(); NullCheck(L_5); String_t* L_6; L_6 = List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline(L_5, 0, /*hidden argument*/List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); NullCheck(L_6); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6); V_0 = L_7; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_8 = ((SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A *)__this)->get_values_10(); NullCheck(L_8); int32_t L_9; L_9 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_8, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); if ((!(((uint32_t)L_9) == ((uint32_t)2)))) { goto IL_0095; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_10 = ((SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A *)__this)->get_values_10(); NullCheck(L_10); String_t* L_11; L_11 = List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline(L_10, 1, /*hidden argument*/List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); NullCheck(L_11); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); V_1 = L_12; String_t* L_13 = V_0; bool L_14; L_14 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_13, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, /*hidden argument*/NULL); if (L_14) { goto IL_007a; } } { String_t* L_15 = V_1; bool L_16; L_16 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_15, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, /*hidden argument*/NULL); if (!L_16) { goto IL_00b0; } } IL_007a: { String_t* L_17 = V_0; bool L_18; L_18 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_17, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, /*hidden argument*/NULL); if (L_18) { goto IL_0094; } } { String_t* L_19 = V_1; bool L_20; L_20 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_19, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, /*hidden argument*/NULL); if (!L_20) { goto IL_00b0; } } IL_0094: { return; } IL_0095: { String_t* L_21 = V_0; bool L_22; L_22 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_21, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, /*hidden argument*/NULL); if (L_22) { goto IL_00af; } } { String_t* L_23 = V_0; bool L_24; L_24 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_23, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, /*hidden argument*/NULL); if (!L_24) { goto IL_00b0; } } IL_00af: { return; } IL_00b0: { RuntimeObject* L_25 = ___validationEventHandling0; String_t* L_26 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_27 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_27, _stringLiteral013BD4ABE4D4A1BC6D9EEF501A242AC0124ACED6, L_26, /*hidden argument*/NULL); NullCheck(L_25); InterfaceActionInvoker2< Exception_t *, int32_t >::Invoke(0 /* System.Void System.Xml.IValidationEventHandling::SendEvent(System.Exception,System.Xml.Schema.XmlSeverityType) */, IValidationEventHandling_t574D5D59A6C1707DB494A9F8AFB6A3DB3F0B64D1_il2cpp_TypeInfo_var, L_25, L_27, 0); return; } } // System.Void System.Xml.Schema.SchemaAttDef::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef__cctor_m1D55821BCB00219E83E4B9C1F3C71B9538BF6EC5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_0 = (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 *)il2cpp_codegen_object_new(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_il2cpp_TypeInfo_var); SchemaAttDef__ctor_m40A902B1FF7D8A59AC8FF7380C53C78E2C72585B(L_0, /*hidden argument*/NULL); ((SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_StaticFields*)il2cpp_codegen_static_fields_for(SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68_il2cpp_TypeInfo_var))->set_Empty_17(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.Xml.Schema.SchemaDeclBase::.ctor(System.Xml.XmlQualifiedName,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase__ctor_m1BC436E9668EED05F54E492D437DA46C34A551D8 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, String_t* ___prefix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))->get_Empty_4(); __this->set_name_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_1 = ___name0; __this->set_name_0(L_1); String_t* L_2 = ___prefix1; __this->set_prefix_1(L_2); __this->set_maxLength_8(((int64_t)((int64_t)(-1)))); __this->set_minLength_9(((int64_t)((int64_t)(-1)))); return; } } // System.Void System.Xml.Schema.SchemaDeclBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase__ctor_m1635E4DACD551DC1FA3CA6B426B8E2E78627F28F (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))->get_Empty_4(); __this->set_name_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaDeclBase_get_Name_m87FD6E6D364B0F6E028FE4FE87AEFF71575E009E (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_name_0(); return L_0; } } // System.String System.Xml.Schema.SchemaDeclBase::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_Prefix_mF758E713FDA809839D669B6E429AA694EF4588EB (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_prefix_1(); if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->get_prefix_1(); return L_1; } IL_000f: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_2; } } // System.Boolean System.Xml.Schema.SchemaDeclBase::get_IsDeclaredInExternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaDeclBase_get_IsDeclaredInExternal_m1B7033680C64843BC8F62EAE9B47B7FC521E4F2E (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isDeclaredInExternal_2(); return L_0; } } // System.Void System.Xml.Schema.SchemaDeclBase::set_IsDeclaredInExternal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_set_IsDeclaredInExternal_mF90EB47072527F6FFA1CFBADD6C644D00B859376 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isDeclaredInExternal_2(L_0); return; } } // System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::get_Presence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_presence_3(); return L_0; } } // System.Void System.Xml.Schema.SchemaDeclBase::set_Presence(System.Xml.Schema.SchemaDeclBase/Use) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_set_Presence_m339BCD8DCED7AA6EF30798A12BAFA1E6FEE39F6C (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_presence_3(L_0); return; } } // System.Void System.Xml.Schema.SchemaDeclBase::set_SchemaType(System.Xml.Schema.XmlSchemaType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_set_SchemaType_m5E77A5AD91AC87BF6B8F26864E24C4F2BA244FD0 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___value0, const RuntimeMethod* method) { { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_0 = ___value0; __this->set_schemaType_4(L_0); return; } } // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::get_Datatype() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * SchemaDeclBase_get_Datatype_mA6244D69EB46EA7A09CDB3BD3370B49B89A47FD1 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = __this->get_datatype_5(); return L_0; } } // System.Void System.Xml.Schema.SchemaDeclBase::set_Datatype(System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_set_Datatype_m967CABF00F6B33B2EABB6522EBBBC92101F5CC74 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___value0, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___value0; __this->set_datatype_5(L_0); return; } } // System.Void System.Xml.Schema.SchemaDeclBase::AddValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_AddValue_m5BA85092B3CF9246689A7BB991A6D4159F449B42 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_0 = __this->get_values_10(); if (L_0) { goto IL_0013; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_1 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_1, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); __this->set_values_10(L_1); } IL_0013: { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_2 = __this->get_values_10(); String_t* L_3 = ___value0; NullCheck(L_2); List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE(L_2, L_3, /*hidden argument*/List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); return; } } // System.Collections.Generic.List`1 System.Xml.Schema.SchemaDeclBase::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * SchemaDeclBase_get_Values_mB5DF89E64CB21C6BE4CEFB9AC1F8103B13744387 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_0 = __this->get_values_10(); return L_0; } } // System.String System.Xml.Schema.SchemaDeclBase::get_DefaultValueRaw() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_DefaultValueRaw_mCC5A7521B07D0FD35EC496D20E078D782E468939 (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_defaultValueRaw_6(); if (L_0) { goto IL_000e; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_000e: { String_t* L_2 = __this->get_defaultValueRaw_6(); return L_2; } } // System.Object System.Xml.Schema.SchemaDeclBase::get_DefaultValueTyped() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SchemaDeclBase_get_DefaultValueTyped_m181BCA469B286D8325144D11547D51F3BC2BA10F (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_defaultValueTyped_7(); return L_0; } } // System.Void System.Xml.Schema.SchemaDeclBase::set_DefaultValueTyped(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_set_DefaultValueTyped_mC5B1F78E7F6E018074AA8E7672C24E7C844E8A7A (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set_defaultValueTyped_7(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.Xml.Schema.SchemaElementDecl::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl__ctor_mA3FA92EB85ADEBDC562D26730031FBC6738AB1A1 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_0 = (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *)il2cpp_codegen_object_new(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B(L_0, /*hidden argument*/Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); __this->set_attdefs_11(L_0); Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * L_1 = (Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 *)il2cpp_codegen_object_new(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var); Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2(L_1, /*hidden argument*/Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var); __this->set_prohibitedAttributes_17(L_1); SchemaDeclBase__ctor_m1635E4DACD551DC1FA3CA6B426B8E2E78627F28F(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.SchemaElementDecl::.ctor(System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl__ctor_m9D6E34E44A123DAB18122C7EF6D76C104C8A41ED (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___dtype0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_0 = (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *)il2cpp_codegen_object_new(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B(L_0, /*hidden argument*/Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); __this->set_attdefs_11(L_0); Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * L_1 = (Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 *)il2cpp_codegen_object_new(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var); Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2(L_1, /*hidden argument*/Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var); __this->set_prohibitedAttributes_17(L_1); SchemaDeclBase__ctor_m1635E4DACD551DC1FA3CA6B426B8E2E78627F28F(__this, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_2 = ___dtype0; SchemaDeclBase_set_Datatype_m967CABF00F6B33B2EABB6522EBBBC92101F5CC74_inline(__this, L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var); ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * L_3 = ((ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_StaticFields*)il2cpp_codegen_static_fields_for(ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C_il2cpp_TypeInfo_var))->get_TextOnly_4(); __this->set_contentValidator_18(L_3); return; } } // System.Void System.Xml.Schema.SchemaElementDecl::.ctor(System.Xml.XmlQualifiedName,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl__ctor_m6A983B874C3DC8D4F1D5F8DD2B4019D2901B3729 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, String_t* ___prefix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_0 = (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *)il2cpp_codegen_object_new(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B(L_0, /*hidden argument*/Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); __this->set_attdefs_11(L_0); Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 * L_1 = (Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2 *)il2cpp_codegen_object_new(Dictionary_2_t3EDC2BB9B056BB70DDD396DBE1C02C102C4258F2_il2cpp_TypeInfo_var); Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2(L_1, /*hidden argument*/Dictionary_2__ctor_m696C87E07FBFE0B8A0DBA3DB21E363F727498CB2_RuntimeMethod_var); __this->set_prohibitedAttributes_17(L_1); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = ___name0; String_t* L_3 = ___prefix1; SchemaDeclBase__ctor_m1BC436E9668EED05F54E492D437DA46C34A551D8(__this, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Xml.Schema.SchemaElementDecl System.Xml.Schema.SchemaElementDecl::CreateAnyTypeElementDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * SchemaElementDecl_CreateAnyTypeElementDecl_m21D81D3245F22CC97AB06C6DED38CA505889B5DC (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * L_0 = (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B *)il2cpp_codegen_object_new(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_il2cpp_TypeInfo_var); SchemaElementDecl__ctor_mA3FA92EB85ADEBDC562D26730031FBC6738AB1A1(L_0, /*hidden argument*/NULL); SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * L_1 = L_0; IL2CPP_RUNTIME_CLASS_INIT(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_2; L_2 = DatatypeImplementation_get_AnySimpleType_m5D4C0C5826765D6BED48F248225E26AB5CCEF072_inline(/*hidden argument*/NULL); NullCheck(L_2); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_3; L_3 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_2, /*hidden argument*/NULL); NullCheck(L_1); SchemaDeclBase_set_Datatype_m967CABF00F6B33B2EABB6522EBBBC92101F5CC74_inline(L_1, L_3, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.Schema.SchemaElementDecl::System.Xml.IDtdAttributeListInfo.get_HasNonCDataAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaElementDecl_System_Xml_IDtdAttributeListInfo_get_HasNonCDataAttributes_m9D21FCD5D45EE1AEB8A4997CE50FBBE1ACC8B9FC (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_hasNonCDataAttribute_14(); return L_0; } } // System.Xml.IDtdAttributeInfo System.Xml.Schema.SchemaElementDecl::System.Xml.IDtdAttributeListInfo.LookupAttribute(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SchemaElementDecl_System_Xml_IDtdAttributeListInfo_LookupAttribute_mF981DEE74DF2955CFB26E4A47343D4BC56D69E4C (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, String_t* ___prefix0, String_t* ___localName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * V_0 = NULL; SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * V_1 = NULL; { String_t* L_0 = ___localName1; String_t* L_1 = ___prefix0; XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)il2cpp_codegen_object_new(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m1A19E27B7945587EBC7FF67CF33F4920D28C4E70(L_2, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_3 = __this->get_attdefs_11(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34(L_3, L_4, (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34_RuntimeMethod_var); if (!L_5) { goto IL_001a; } } { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_6 = V_1; return L_6; } IL_001a: { return (RuntimeObject*)NULL; } } // System.Collections.Generic.IEnumerable`1 System.Xml.Schema.SchemaElementDecl::System.Xml.IDtdAttributeListInfo.LookupDefaultAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SchemaElementDecl_System_Xml_IDtdAttributeListInfo_LookupDefaultAttributes_m8E71217A665320F7D86B544F815FCBB26F908325 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * L_0 = __this->get_defaultAttdefs_12(); return L_0; } } // System.Boolean System.Xml.Schema.SchemaElementDecl::get_IsIdDeclared() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_IsIdDeclared_m13EDDE43FF100460E2B995C3E830985DEC415DAB (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isIdDeclared_13(); return L_0; } } // System.Void System.Xml.Schema.SchemaElementDecl::set_IsIdDeclared(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_set_IsIdDeclared_m42E33419B58A2E0FEB0E36F1F4856BF7749C4EA8 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isIdDeclared_13(L_0); return; } } // System.Boolean System.Xml.Schema.SchemaElementDecl::get_HasNonCDataAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_HasNonCDataAttribute_mE84C8BBD8FF4C1EFDC66C8C8107229739354F31E (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_hasNonCDataAttribute_14(); return L_0; } } // System.Void System.Xml.Schema.SchemaElementDecl::set_HasNonCDataAttribute(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_set_HasNonCDataAttribute_m71A7B08BF73328BC4C4D41C48283A1B1BFF8AD97 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_hasNonCDataAttribute_14(L_0); return; } } // System.Boolean System.Xml.Schema.SchemaElementDecl::get_IsNotationDeclared() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_IsNotationDeclared_mA7291C2A64056CE5A8E6E40DD8FAA1A957982076 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isNotationDeclared_16(); return L_0; } } // System.Void System.Xml.Schema.SchemaElementDecl::set_IsNotationDeclared(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_set_IsNotationDeclared_m11AF6DFF3495628801564AFE2A057ECF95CBE825 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isNotationDeclared_16(L_0); return; } } // System.Xml.Schema.ContentValidator System.Xml.Schema.SchemaElementDecl::get_ContentValidator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * SchemaElementDecl_get_ContentValidator_m1AFD6086B0FB2DF11CC1185D8335E1AAD80AED9E (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * L_0 = __this->get_contentValidator_18(); return L_0; } } // System.Void System.Xml.Schema.SchemaElementDecl::set_ContentValidator(System.Xml.Schema.ContentValidator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_set_ContentValidator_m3B5492EE4C0954E5FA732D03574FBB9576AD4E97 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * ___value0, const RuntimeMethod* method) { { ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * L_0 = ___value0; __this->set_contentValidator_18(L_0); return; } } // System.Void System.Xml.Schema.SchemaElementDecl::set_AnyAttribute(System.Xml.Schema.XmlSchemaAnyAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_set_AnyAttribute_m5937BBB3D6CCC2263AE4B778A6B3B9E3A2586E74 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 * ___value0, const RuntimeMethod* method) { { XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80 * L_0 = ___value0; __this->set_anyAttribute_19(L_0); return; } } // System.Void System.Xml.Schema.SchemaElementDecl::AddAttDef(System.Xml.Schema.SchemaAttDef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_AddAttDef_mD815781B56044D60F0301E1E62FD5BA0485B5414 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * ___attdef0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mBB79F63412D4B66F04533EE48909A593F7E11EB2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m550B08E5B1CAC2F05E719BDB5A748EC580C826F9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mAB5F7D0019E8BE4E5C283771D17AE3E102AABAC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_0 = __this->get_attdefs_11(); SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_1 = ___attdef0; NullCheck(L_1); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2; L_2 = SchemaDeclBase_get_Name_m87FD6E6D364B0F6E028FE4FE87AEFF71575E009E_inline(L_1, /*hidden argument*/NULL); SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_3 = ___attdef0; NullCheck(L_0); Dictionary_2_Add_mBB79F63412D4B66F04533EE48909A593F7E11EB2(L_0, L_2, L_3, /*hidden argument*/Dictionary_2_Add_mBB79F63412D4B66F04533EE48909A593F7E11EB2_RuntimeMethod_var); SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_4 = ___attdef0; NullCheck(L_4); int32_t L_5; L_5 = SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB_inline(L_4, /*hidden argument*/NULL); if ((((int32_t)L_5) == ((int32_t)1))) { goto IL_0024; } } { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_6 = ___attdef0; NullCheck(L_6); int32_t L_7; L_7 = SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB_inline(L_6, /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)4)))) { goto IL_002b; } } IL_0024: { __this->set_hasRequiredAttribute_15((bool)1); } IL_002b: { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_8 = ___attdef0; NullCheck(L_8); int32_t L_9; L_9 = SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB_inline(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003c; } } { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_10 = ___attdef0; NullCheck(L_10); int32_t L_11; L_11 = SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB_inline(L_10, /*hidden argument*/NULL); if ((!(((uint32_t)L_11) == ((uint32_t)3)))) { goto IL_005b; } } IL_003c: { List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * L_12 = __this->get_defaultAttdefs_12(); if (L_12) { goto IL_004f; } } { List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * L_13 = (List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 *)il2cpp_codegen_object_new(List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75_il2cpp_TypeInfo_var); List_1__ctor_mAB5F7D0019E8BE4E5C283771D17AE3E102AABAC8(L_13, /*hidden argument*/List_1__ctor_mAB5F7D0019E8BE4E5C283771D17AE3E102AABAC8_RuntimeMethod_var); __this->set_defaultAttdefs_12(L_13); } IL_004f: { List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * L_14 = __this->get_defaultAttdefs_12(); SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_15 = ___attdef0; NullCheck(L_14); List_1_Add_m550B08E5B1CAC2F05E719BDB5A748EC580C826F9(L_14, L_15, /*hidden argument*/List_1_Add_m550B08E5B1CAC2F05E719BDB5A748EC580C826F9_RuntimeMethod_var); } IL_005b: { return; } } // System.Xml.Schema.SchemaAttDef System.Xml.Schema.SchemaElementDecl::GetAttDef(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * SchemaElementDecl_GetAttDef_m5E5EAACCF2B3B77572285CCD458C0ABB1511D803 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * V_0 = NULL; { Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_0 = __this->get_attdefs_11(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_1 = ___qname0; NullCheck(L_0); bool L_2; L_2 = Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34(L_0, L_1, (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m4A125510EFF7226D15E7F12B20663B059B0F5F34_RuntimeMethod_var); if (!L_2) { goto IL_0012; } } { SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * L_3 = V_0; return L_3; } IL_0012: { return (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 *)NULL; } } // System.Collections.Generic.IList`1 System.Xml.Schema.SchemaElementDecl::get_DefaultAttDefs() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SchemaElementDecl_get_DefaultAttDefs_m6CCC6299DE4592CE8D2C66CB559179AF478CAD22 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * L_0 = __this->get_defaultAttdefs_12(); return L_0; } } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaElementDecl::get_AttDefs() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * SchemaElementDecl_get_AttDefs_m8A9485A9D345A6E2694C4C9FB6A61965E582A2B9 (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_0 = __this->get_attdefs_11(); return L_0; } } // System.Void System.Xml.Schema.SchemaElementDecl::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl__cctor_m2DC78B473714FE2702ADD57F4B0A29E5A1D899D2 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * L_0 = (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B *)il2cpp_codegen_object_new(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_il2cpp_TypeInfo_var); SchemaElementDecl__ctor_mA3FA92EB85ADEBDC562D26730031FBC6738AB1A1(L_0, /*hidden argument*/NULL); ((SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_StaticFields*)il2cpp_codegen_static_fields_for(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B_il2cpp_TypeInfo_var))->set_Empty_20(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.Xml.Schema.SchemaEntity::.ctor(System.Xml.XmlQualifiedName,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity__ctor_m3B9599DA8C72FC6A07423C38B498732E9CC83750 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname0, bool ___isParameter1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))->get_Empty_4(); __this->set_ndata_4(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_1 = ___qname0; __this->set_qname_0(L_1); bool L_2 = ___isParameter1; __this->set_isParameter_7(L_2); return; } } // System.String System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_System_Xml_IDtdEntityInfo_get_Name_m18FBDC00046D7577F9A652A206A26E1EBA040BE3 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0; L_0 = SchemaEntity_get_Name_mB20AA73F025F99A004B20738C773CEB8D40B7EBA_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1; L_1 = XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_IsExternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_System_Xml_IDtdEntityInfo_get_IsExternal_m20937217873A9FAD8546A5176AABFBFBF2507F46 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0; L_0 = SchemaEntity_get_IsExternal_m2C672737BDD910497BE4AF4E25B25F4797A04A03_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_IsDeclaredInExternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_System_Xml_IDtdEntityInfo_get_IsDeclaredInExternal_mD8F9001545742C37F6664BF2A03F47F7995096B6 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0; L_0 = SchemaEntity_get_DeclaredInExternal_m7FB26DC9D3A1B1B4671FFD0F755B32E087F0663C_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_IsUnparsedEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_System_Xml_IDtdEntityInfo_get_IsUnparsedEntity_m3A896F34C7C439E721B930D62C83EA054697B57F (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0; L_0 = SchemaEntity_get_NData_mFA6084E09F48F115394AEDF935A40D43F59EA9FC_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); bool L_1; L_1 = XmlQualifiedName_get_IsEmpty_m694779833F49A6E81D29F112E3D39483A5967F93(L_0, /*hidden argument*/NULL); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_IsParameterEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_System_Xml_IDtdEntityInfo_get_IsParameterEntity_m3EAA28D7076D53EF3238F9480F56EA0424CF486A (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isParameter_7(); return L_0; } } // System.String System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_BaseUriString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_System_Xml_IDtdEntityInfo_get_BaseUriString_m27CE2880B2D011494282814C431D2BD54EC25E57 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaEntity_get_BaseURI_m001F210A7C143F147C7C46CD567BE605B84B2F17(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_DeclaredUriString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_System_Xml_IDtdEntityInfo_get_DeclaredUriString_mC129FED0989B0CAFC573BF099409229DF905B9BC (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaEntity_get_DeclaredURI_m0E6729CDB1F1FBD637A9F2F951C60895AF8C94A3(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_SystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_System_Xml_IDtdEntityInfo_get_SystemId_m593227E26CD0C1FF36740C3375A47754611450C5 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaEntity_get_Url_m5A96254918F00575C76A5CC66B5D23D15D77EF98_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_PublicId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_System_Xml_IDtdEntityInfo_get_PublicId_mF128180307D2948257D75731DCB6310D52B21228 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaEntity_get_Pubid_mFC308D0C87C3A88CB67A813B56F97F538749E786_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_Text() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_System_Xml_IDtdEntityInfo_get_Text_m3D6E494555984807846FAE419229CE65DF66F981 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SchemaEntity_get_Text_mBDDEA973537098FDCC625FC2349A5D6A2092718D_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaEntity_System_Xml_IDtdEntityInfo_get_LineNumber_mED5616CE4FF8440DB63FC7FAF520F15700B5AF31 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaEntity_get_Line_m4C57C78532808085D0F9FE1B5B98F2E846B8F470_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Xml.Schema.SchemaEntity::System.Xml.IDtdEntityInfo.get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaEntity_System_Xml_IDtdEntityInfo_get_LinePosition_mF491B91BEF8627246D4F72295FA24ADBA7FD6D1B (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = SchemaEntity_get_Pos_m1F95043C9862F14827166F191BB24BF958F96B2B_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaEntity_get_Name_mB20AA73F025F99A004B20738C773CEB8D40B7EBA (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_qname_0(); return L_0; } } // System.String System.Xml.Schema.SchemaEntity::get_Url() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m5A96254918F00575C76A5CC66B5D23D15D77EF98 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_url_1(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_Url(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Url_m61E1D8C602A7F2130760E1E32C1B7D7916E6E7F7 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_url_1(L_0); __this->set_isExternal_8((bool)1); return; } } // System.String System.Xml.Schema.SchemaEntity::get_Pubid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_mFC308D0C87C3A88CB67A813B56F97F538749E786 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_pubid_2(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_Pubid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Pubid_m08846B90B1DBAE7F2D949336C2A1D0D67968FC00 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_pubid_2(L_0); return; } } // System.Boolean System.Xml.Schema.SchemaEntity::get_IsExternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_get_IsExternal_m2C672737BDD910497BE4AF4E25B25F4797A04A03 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isExternal_8(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_IsExternal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_IsExternal_m65463934D765AA2DAE0D569F437B722B9E75E75B (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isExternal_8(L_0); return; } } // System.Boolean System.Xml.Schema.SchemaEntity::get_DeclaredInExternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_get_DeclaredInExternal_m7FB26DC9D3A1B1B4671FFD0F755B32E087F0663C (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isDeclaredInExternal_10(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_DeclaredInExternal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_DeclaredInExternal_m2EFCE2B9E2965C92F97BE69E2D2AA66E0EB9C2D4 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isDeclaredInExternal_10(L_0); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_NData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaEntity_get_NData_mFA6084E09F48F115394AEDF935A40D43F59EA9FC (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_ndata_4(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_NData(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_NData_mD493C42553D9780205C808988FBA4D0F1C40C9B9 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___value0, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___value0; __this->set_ndata_4(L_0); return; } } // System.String System.Xml.Schema.SchemaEntity::get_Text() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mBDDEA973537098FDCC625FC2349A5D6A2092718D (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_text_3(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_Text(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Text_mB2CF52174840CDA901F5F20B909BD8C3A040EF08 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_text_3(L_0); __this->set_isExternal_8((bool)0); return; } } // System.Int32 System.Xml.Schema.SchemaEntity::get_Line() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaEntity_get_Line_m4C57C78532808085D0F9FE1B5B98F2E846B8F470 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNumber_5(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_Line(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Line_mC763565D1C187F4541E42EE21CA76C57EBEA6D72 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_lineNumber_5(L_0); return; } } // System.Int32 System.Xml.Schema.SchemaEntity::get_Pos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaEntity_get_Pos_m1F95043C9862F14827166F191BB24BF958F96B2B (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_linePosition_6(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_Pos(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Pos_mA925BE118C0633173B4C94FD041BEBC5AD5F4674 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_linePosition_6(L_0); return; } } // System.String System.Xml.Schema.SchemaEntity::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_BaseURI_m001F210A7C143F147C7C46CD567BE605B84B2F17 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_baseURI_11(); if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->get_baseURI_11(); return L_1; } IL_000f: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_2; } } // System.Void System.Xml.Schema.SchemaEntity::set_BaseURI(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_BaseURI_mAFDEA9BFF892FAFF701CC4FFEA1CCEEFD538273D (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_baseURI_11(L_0); return; } } // System.Boolean System.Xml.Schema.SchemaEntity::get_ParsingInProgress() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaEntity_get_ParsingInProgress_m560545FEA4040F3DCD9D3E98C9AB97313D4A9378 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_parsingInProgress_9(); return L_0; } } // System.Void System.Xml.Schema.SchemaEntity::set_ParsingInProgress(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_ParsingInProgress_m53B2A6A3A2E573092B19EBA5FFAF368C2BE5A9AB (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_parsingInProgress_9(L_0); return; } } // System.String System.Xml.Schema.SchemaEntity::get_DeclaredURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_DeclaredURI_m0E6729CDB1F1FBD637A9F2F951C60895AF8C94A3 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_declaredURI_12(); if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->get_declaredURI_12(); return L_1; } IL_000f: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_2; } } // System.Void System.Xml.Schema.SchemaEntity::set_DeclaredURI(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_DeclaredURI_mB92A24929A2B6BF67539EFF155615B5AB9150BC8 (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_declaredURI_12(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.Xml.Schema.SchemaInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo__ctor_m698835CEBA256CAD8F929513EE0AB71D6E7DE2AD (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m7B1612DAAC58ADB707313836D78A8FB4556FEBC0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_0 = (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 *)il2cpp_codegen_object_new(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7_il2cpp_TypeInfo_var); Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B(L_0, /*hidden argument*/Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B_RuntimeMethod_var); __this->set_elementDecls_0(L_0); Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_1 = (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 *)il2cpp_codegen_object_new(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7_il2cpp_TypeInfo_var); Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B(L_1, /*hidden argument*/Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B_RuntimeMethod_var); __this->set_undeclaredElementDecls_1(L_1); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))->get_Empty_4(); __this->set_docTypeName_4(L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_internalDtdSubset_5(L_3); Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C * L_4 = (Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C *)il2cpp_codegen_object_new(Dictionary_2_t99F1CF0D8EAD35142580D7CF6EC736C063B6190C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m7B1612DAAC58ADB707313836D78A8FB4556FEBC0(L_4, /*hidden argument*/Dictionary_2__ctor_m7B1612DAAC58ADB707313836D78A8FB4556FEBC0_RuntimeMethod_var); __this->set_targetNamespaces_8(L_4); Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 * L_5 = (Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58 *)il2cpp_codegen_object_new(Dictionary_2_t1FAD0C7CC6F970A1F41D0F7433B8D62A408D1C58_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B(L_5, /*hidden argument*/Dictionary_2__ctor_mF3C7809B7C72479BC5C0C429ACF1EDAE5254C80B_RuntimeMethod_var); __this->set_attributeDecls_9(L_5); Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_6 = (Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 *)il2cpp_codegen_object_new(Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7_il2cpp_TypeInfo_var); Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B(L_6, /*hidden argument*/Dictionary_2__ctor_m860D9125E2BEF757623F8523CAA18062DA3D962B_RuntimeMethod_var); __this->set_elementDeclsByType_11(L_6); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); __this->set_schemaType_10(0); return; } } // System.Void System.Xml.Schema.SchemaInfo::set_DocTypeName(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo_set_DocTypeName_m1BA955D8D7D3D96AEE648C9C0439F689ACD65B79 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___value0, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___value0; __this->set_docTypeName_4(L_0); return; } } // System.Void System.Xml.Schema.SchemaInfo::set_InternalDtdSubset(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo_set_InternalDtdSubset_m9D3F4A8813F8C0B6A0D811558C582752217BC46A (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_internalDtdSubset_5(L_0); return; } } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_ElementDecls() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * SchemaInfo_get_ElementDecls_m693F83C6FD11BDFA1D422BE8F036916818491177 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_0 = __this->get_elementDecls_0(); return L_0; } } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_UndeclaredElementDecls() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * SchemaInfo_get_UndeclaredElementDecls_mC359EC7BD893856AF5E207B653D7848A54BC46F8 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_0 = __this->get_undeclaredElementDecls_1(); return L_0; } } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_GeneralEntities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * SchemaInfo_get_GeneralEntities_m766F776B2DCD6503DD48FD924FF369CDD1F1CC94 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_0 = __this->get_generalEntities_2(); if (L_0) { goto IL_0013; } } { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_1 = (Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 *)il2cpp_codegen_object_new(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523_il2cpp_TypeInfo_var); Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226(L_1, /*hidden argument*/Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226_RuntimeMethod_var); __this->set_generalEntities_2(L_1); } IL_0013: { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_2 = __this->get_generalEntities_2(); return L_2; } } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_ParameterEntities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * SchemaInfo_get_ParameterEntities_mAA1DDEE2B365C5D72CF8A4C20C1F98A6351C7C30 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_0 = __this->get_parameterEntities_3(); if (L_0) { goto IL_0013; } } { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_1 = (Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 *)il2cpp_codegen_object_new(Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523_il2cpp_TypeInfo_var); Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226(L_1, /*hidden argument*/Dictionary_2__ctor_m7268B2DED6843C67C3306C158DA9C0D46B720226_RuntimeMethod_var); __this->set_parameterEntities_3(L_1); } IL_0013: { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_2 = __this->get_parameterEntities_3(); return L_2; } } // System.Xml.Schema.SchemaType System.Xml.Schema.SchemaInfo::get_SchemaType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaInfo_get_SchemaType_m82E26E51C765F4946ACE69375370F4D09B3266A9 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_schemaType_10(); return L_0; } } // System.Void System.Xml.Schema.SchemaInfo::set_SchemaType(System.Xml.Schema.SchemaType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo_set_SchemaType_m028144676EE0A9E9C551BF420AC1E519DEB1263D (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_schemaType_10(L_0); return; } } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_Notations() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * SchemaInfo_get_Notations_m615DDF89AC678404C3AD22848E608B8597437A64 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m467FD97D8B6FDB9657193242324FDAFA10AFAB97_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * L_0 = __this->get_notations_12(); if (L_0) { goto IL_0013; } } { Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * L_1 = (Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 *)il2cpp_codegen_object_new(Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121_il2cpp_TypeInfo_var); Dictionary_2__ctor_m467FD97D8B6FDB9657193242324FDAFA10AFAB97(L_1, /*hidden argument*/Dictionary_2__ctor_m467FD97D8B6FDB9657193242324FDAFA10AFAB97_RuntimeMethod_var); __this->set_notations_12(L_1); } IL_0013: { Dictionary_2_t09B46EB6F8DDD621EBD0DA4C8C9BA1E5749E9121 * L_2 = __this->get_notations_12(); return L_2; } } // System.Void System.Xml.Schema.SchemaInfo::Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo_Finish_m113918206B13BCAF463301412BDB18DF2AC54E6E (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_m985AB63BF8F899A5F0AD7E446613C7201502F386_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAF5AC8910C4D76BA22A0AF4C6B770B9F7DB161BF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mF539B3DCF94C4A0F31CEAD36C1E5524F637761FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m6449672B64AE061714A6FA02374FDB83698F77C4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_m0035310347EE2F2EF4A5D45CD824E62672619E57_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * V_0 = NULL; int32_t V_1 = 0; Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 V_2; memset((&V_2), 0, sizeof(V_2)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * G_B5_0 = NULL; SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * G_B4_0 = NULL; { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_0 = __this->get_elementDecls_0(); V_0 = L_0; V_1 = 0; goto IL_0061; } IL_000b: { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_1 = V_0; NullCheck(L_1); ValueCollection_t566E84C700B8CA57F1C3A24989857DEB3100189D * L_2; L_2 = Dictionary_2_get_Values_m985AB63BF8F899A5F0AD7E446613C7201502F386(L_1, /*hidden argument*/Dictionary_2_get_Values_m985AB63BF8F899A5F0AD7E446613C7201502F386_RuntimeMethod_var); NullCheck(L_2); Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 L_3; L_3 = ValueCollection_GetEnumerator_m0035310347EE2F2EF4A5D45CD824E62672619E57(L_2, /*hidden argument*/ValueCollection_GetEnumerator_m0035310347EE2F2EF4A5D45CD824E62672619E57_RuntimeMethod_var); V_2 = L_3; } IL_0017: try { // begin try (depth: 1) { goto IL_003d; } IL_0019: { SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * L_4; L_4 = Enumerator_get_Current_m6449672B64AE061714A6FA02374FDB83698F77C4_inline((Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m6449672B64AE061714A6FA02374FDB83698F77C4_RuntimeMethod_var); SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * L_5 = L_4; NullCheck(L_5); bool L_6; L_6 = SchemaElementDecl_get_HasNonCDataAttribute_mE84C8BBD8FF4C1EFDC66C8C8107229739354F31E_inline(L_5, /*hidden argument*/NULL); G_B4_0 = L_5; if (!L_6) { G_B5_0 = L_5; goto IL_002f; } } IL_0028: { __this->set_hasNonCDataAttributes_6((bool)1); G_B5_0 = G_B4_0; } IL_002f: { NullCheck(G_B5_0); RuntimeObject* L_7; L_7 = SchemaElementDecl_get_DefaultAttDefs_m6CCC6299DE4592CE8D2C66CB559179AF478CAD22_inline(G_B5_0, /*hidden argument*/NULL); if (!L_7) { goto IL_003d; } } IL_0036: { __this->set_hasDefaultAttributes_7((bool)1); } IL_003d: { bool L_8; L_8 = Enumerator_MoveNext_mF539B3DCF94C4A0F31CEAD36C1E5524F637761FA((Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_mF539B3DCF94C4A0F31CEAD36C1E5524F637761FA_RuntimeMethod_var); if (L_8) { goto IL_0019; } } IL_0046: { IL2CPP_LEAVE(0x56, FINALLY_0048); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0048; } FINALLY_0048: { // begin finally (depth: 1) Enumerator_Dispose_mAF5AC8910C4D76BA22A0AF4C6B770B9F7DB161BF((Enumerator_tAE0A4AA8074D064065FE5EBE290725953637DDE5 *)(&V_2), /*hidden argument*/Enumerator_Dispose_mAF5AC8910C4D76BA22A0AF4C6B770B9F7DB161BF_RuntimeMethod_var); IL2CPP_END_FINALLY(72) } // end finally (depth: 1) IL2CPP_CLEANUP(72) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x56, IL_0056) } IL_0056: { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_9 = __this->get_undeclaredElementDecls_1(); V_0 = L_9; int32_t L_10 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0061: { int32_t L_11 = V_1; if ((((int32_t)L_11) < ((int32_t)2))) { goto IL_000b; } } { return; } } // System.Boolean System.Xml.Schema.SchemaInfo::System.Xml.IDtdInfo.get_HasDefaultAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaInfo_System_Xml_IDtdInfo_get_HasDefaultAttributes_m81CCBC86B9635F1218C3B624947C83CDD2F8FE03 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_hasDefaultAttributes_7(); return L_0; } } // System.Boolean System.Xml.Schema.SchemaInfo::System.Xml.IDtdInfo.get_HasNonCDataAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SchemaInfo_System_Xml_IDtdInfo_get_HasNonCDataAttributes_m837198942587E3358AEAB466B2D1207FCEFF0E17 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_hasNonCDataAttributes_6(); return L_0; } } // System.Xml.IDtdAttributeListInfo System.Xml.Schema.SchemaInfo::System.Xml.IDtdInfo.LookupAttributeList(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SchemaInfo_System_Xml_IDtdInfo_LookupAttributeList_mD773F041A5E907504A9990E35D7181CF175E18A7 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, String_t* ___prefix0, String_t* ___localName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * V_0 = NULL; SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * V_1 = NULL; { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)il2cpp_codegen_object_new(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m1A19E27B7945587EBC7FF67CF33F4920D28C4E70(L_2, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_3 = __this->get_elementDecls_0(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286(L_3, L_4, (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286_RuntimeMethod_var); if (L_5) { goto IL_0027; } } { Dictionary_2_t9716CEDD4260B2B68461B83D64B387A3786A25C7 * L_6 = __this->get_undeclaredElementDecls_1(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_7 = V_0; NullCheck(L_6); bool L_8; L_8 = Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286(L_6, L_7, (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_mCB48F25D4EF4B5BB6B8EB330EBFA3D8A5764B286_RuntimeMethod_var); } IL_0027: { SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * L_9 = V_1; return L_9; } } // System.Xml.IDtdEntityInfo System.Xml.Schema.SchemaInfo::System.Xml.IDtdInfo.LookupEntity(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SchemaInfo_System_Xml_IDtdInfo_LookupEntity_m7E3DCBA1A53A5140D2E86205D7613B25E2F66B38 (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m66AE94E1BCD78D097CABE71BEF584B1F8F5C549C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * V_0 = NULL; SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * V_1 = NULL; { Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_0 = __this->get_generalEntities_2(); if (L_0) { goto IL_000a; } } { return (RuntimeObject*)NULL; } IL_000a: { String_t* L_1 = ___name0; XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)il2cpp_codegen_object_new(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m73A954A83BC208D5CA3B1F1D328DDF6C29453E79(L_2, L_1, /*hidden argument*/NULL); V_0 = L_2; Dictionary_2_tE268B8DA28D3A82319F0632A15D6EC06B68E5523 * L_3 = __this->get_generalEntities_2(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_TryGetValue_m66AE94E1BCD78D097CABE71BEF584B1F8F5C549C(L_3, L_4, (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m66AE94E1BCD78D097CABE71BEF584B1F8F5C549C_RuntimeMethod_var); if (!L_5) { goto IL_0023; } } { SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * L_6 = V_1; return L_6; } IL_0023: { return (RuntimeObject*)NULL; } } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaInfo::System.Xml.IDtdInfo.get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaInfo_System_Xml_IDtdInfo_get_Name_m4A9AAE5CF3C9D6D04EDEBE3C22DBA5AEABBC61BA (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_docTypeName_4(); return L_0; } } // System.String System.Xml.Schema.SchemaInfo::System.Xml.IDtdInfo.get_InternalDtdSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaInfo_System_Xml_IDtdInfo_get_InternalDtdSubset_mE7CE4C4BA36D69681F83E6BD85A11975B93C89BB (SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_internalDtdSubset_5(); 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.Xml.Schema.SchemaNotation::.ctor(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaNotation__ctor_mB9B6D9AC3CA75E0B70AB342EE0B4630256799DEF (SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___name0; __this->set_name_0(L_0); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNotation::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaNotation_get_Name_m08D1A0F31266536764CE44A0633DCC84525E18F3 (SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_name_0(); return L_0; } } // System.String System.Xml.Schema.SchemaNotation::get_SystemLiteral() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_SystemLiteral_m9DB468F07E2E95DFAF2D82A4165D5665E4F9EC6D (SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_systemLiteral_1(); return L_0; } } // System.Void System.Xml.Schema.SchemaNotation::set_SystemLiteral(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaNotation_set_SystemLiteral_m130B3E892EBAF4EAF49AE59324CC1034F5094BBE (SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_systemLiteral_1(L_0); return; } } // System.String System.Xml.Schema.SchemaNotation::get_Pubid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_Pubid_mF5506EEC55649230D39056045E6E3BEA6425EE2D (SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_pubid_2(); return L_0; } } // System.Void System.Xml.Schema.SchemaNotation::set_Pubid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaNotation_set_Pubid_mE52000D2E246F07911EFD3222028AC6F306BA9A6 (SchemaNotation_t8D5A15431203B940197C8F7319BE3BF677D12CED * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_pubid_2(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 #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.Xml.SecureStringHasher::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecureStringHasher__ctor_mEF97616B6D20B8D66A01B2B833C677BF356A1145 (SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0; L_0 = Environment_get_TickCount_mB050D9576FD146AEAA27125F6866EBB9B898BBC1(/*hidden argument*/NULL); __this->set_hashCodeRandomizer_1(L_0); return; } } // System.Boolean System.Xml.SecureStringHasher::Equals(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SecureStringHasher_Equals_m4764CCB4F1A4AED78D021A8DF38A26B6C499691A (SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A * __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) { { String_t* L_0 = ___x0; String_t* L_1 = ___y1; bool L_2; L_2 = String_Equals_mEE55908E87109DB4E5D5A05245332FB2A270F258(L_0, L_1, 4, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Xml.SecureStringHasher::GetHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SecureStringHasher_GetHashCode_m06AA20C7C8C7B52D42E039B7EBB1C9409752B54A (SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A * __this, String_t* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * L_0 = ((SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var))->get_hashCodeDelegate_0(); if (L_0) { goto IL_0011; } } { HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * L_1; L_1 = SecureStringHasher_GetHashCodeDelegate_m0E7DFFE978AB0576F56401B670470AA6DA986D1A(/*hidden argument*/NULL); ((SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var))->set_hashCodeDelegate_0(L_1); } IL_0011: { HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * L_2 = ((SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var))->get_hashCodeDelegate_0(); String_t* L_3 = ___key0; String_t* L_4 = ___key0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL); int32_t L_6 = __this->get_hashCodeRandomizer_1(); NullCheck(L_2); int32_t L_7; L_7 = HashCodeOfStringDelegate_Invoke_m29101897DFC3FF4CEC6E0F148E1E879463DA2F9D(L_2, L_3, L_5, ((int64_t)((int64_t)L_6)), /*hidden argument*/NULL); return L_7; } } // System.Int32 System.Xml.SecureStringHasher::GetHashCodeOfString(System.String,System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SecureStringHasher_GetHashCodeOfString_m1EFCFF9DC803E191D55AA0B2EBE8B615A358990B (String_t* ___key0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int64_t L_0 = ___additionalEntropy2; V_0 = ((int32_t)((int32_t)L_0)); V_1 = 0; goto IL_0019; } IL_0007: { int32_t L_1 = V_0; int32_t L_2 = V_0; String_t* L_3 = ___key0; int32_t L_4 = V_1; NullCheck(L_3); Il2CppChar L_5; L_5 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_3, L_4, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_2<<(int32_t)7))^(int32_t)L_5)))); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0019: { int32_t L_7 = V_1; String_t* L_8 = ___key0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_8, /*hidden argument*/NULL); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_0007; } } { int32_t L_10 = V_0; int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11>>(int32_t)((int32_t)17))))); int32_t L_12 = V_0; int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)((int32_t)((int32_t)L_13>>(int32_t)((int32_t)11))))); int32_t L_14 = V_0; int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)((int32_t)L_15>>(int32_t)5)))); int32_t L_16 = V_0; return L_16; } } // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::GetHashCodeDelegate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * SecureStringHasher_GetHashCodeDelegate_m0E7DFFE978AB0576F56401B670470AA6DA986D1A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_GetHashCodeOfString_m1EFCFF9DC803E191D55AA0B2EBE8B615A358990B_RuntimeMethod_var); 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*)&_stringLiteralD9319D8D06606B8F2B10B57EBAABAE57F7D5B8E7); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_0, /*hidden argument*/NULL); NullCheck(L_1); MethodInfo_t * L_2; L_2 = Type_GetMethod_m2DDEF37DF33D28F579BA8E03F4376B67D91F0DEB(L_1, _stringLiteralD9319D8D06606B8F2B10B57EBAABAE57F7D5B8E7, ((int32_t)40), /*hidden argument*/NULL); V_0 = L_2; MethodInfo_t * L_3 = V_0; bool L_4; L_4 = MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D(L_3, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0036; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_5 = { reinterpret_cast (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6; L_6 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_5, /*hidden argument*/NULL); MethodInfo_t * L_7 = V_0; Delegate_t * L_8; L_8 = Delegate_CreateDelegate_mFC46DEA52542B51D94BB899B68FD599295A4753A(L_6, L_7, /*hidden argument*/NULL); return ((HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 *)CastclassSealed((RuntimeObject*)L_8, HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_il2cpp_TypeInfo_var)); } IL_0036: { HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * L_9 = (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 *)il2cpp_codegen_object_new(HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574_il2cpp_TypeInfo_var); HashCodeOfStringDelegate__ctor_m47EFBAB22CC6E0C04A17B8DA7101906596143BE8(L_9, NULL, (intptr_t)((intptr_t)SecureStringHasher_GetHashCodeOfString_m1EFCFF9DC803E191D55AA0B2EBE8B615A358990B_RuntimeMethod_var), /*hidden argument*/NULL); return L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.SequenceNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceNode_ConstructPos_m5336534FC876C733458AE3360E0B35DA4F94B242 (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * V_0 = NULL; SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED V_1; memset((&V_1), 0, sizeof(V_1)); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * V_2 = NULL; int32_t V_3 = 0; { Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * L_0 = (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 *)il2cpp_codegen_object_new(Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0_il2cpp_TypeInfo_var); Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA(L_0, /*hidden argument*/Stack_1__ctor_m8E603B429D069137DBBA7AB5447DECB06F1461EA_RuntimeMethod_var); V_0 = L_0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_1 = ___firstpos0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___lastpos1; SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3((SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED *)(&V_1), __this, L_1, L_2, /*hidden argument*/NULL); } IL_0010: { SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_3 = V_1; SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_4 = L_3.get_this__0(); V_2 = L_4; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_5 = ___lastpos1; NullCheck(L_5); int32_t L_6; L_6 = BitSet_get_Count_mB16C29ACC198DD2C13E9F98E88D87044CC717165_inline(L_5, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_7 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_7, L_6, /*hidden argument*/NULL); (&V_1)->set_lastposLeft_3(L_7); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_8 = V_2; NullCheck(L_8); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_9; L_9 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_8, /*hidden argument*/NULL); if (!((SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD *)IsInstSealed((RuntimeObject*)L_9, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var))) { goto IL_005d; } } { Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * L_10 = V_0; SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_11 = V_1; NullCheck(L_10); Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540(L_10, L_11, /*hidden argument*/Stack_1_Push_mA54B376DC0E3B425FD69E324500AE25D29594540_RuntimeMethod_var); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_12 = V_2; NullCheck(L_12); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_13; L_13 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_12, /*hidden argument*/NULL); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_14 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_15 = L_14.get_firstpos_1(); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_16 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_17 = L_16.get_lastposLeft_3(); SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3((SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED *)(&V_1), ((SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD *)CastclassSealed((RuntimeObject*)L_13, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var)), L_15, L_17, /*hidden argument*/NULL); goto IL_0010; } IL_005d: { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_18 = V_2; NullCheck(L_18); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_19; L_19 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_18, /*hidden argument*/NULL); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_20 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_21 = L_20.get_firstpos_1(); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_22 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_23 = L_22.get_lastposLeft_3(); BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_24 = ___followpos2; NullCheck(L_19); VirtActionInvoker3< BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* >::Invoke(5 /* System.Void System.Xml.Schema.SyntaxTreeNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) */, L_19, L_21, L_23, L_24); } IL_0075: { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_25 = ___firstpos0; NullCheck(L_25); int32_t L_26; L_26 = BitSet_get_Count_mB16C29ACC198DD2C13E9F98E88D87044CC717165_inline(L_25, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_27 = (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)il2cpp_codegen_object_new(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_il2cpp_TypeInfo_var); BitSet__ctor_m39830021947F9923E60000698E8D337C0A8ABBC6(L_27, L_26, /*hidden argument*/NULL); (&V_1)->set_firstposRight_4(L_27); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_28 = V_2; NullCheck(L_28); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_29; L_29 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_28, /*hidden argument*/NULL); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_30 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_31 = L_30.get_firstposRight_4(); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_32 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_33 = L_32.get_lastpos_2(); BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_34 = ___followpos2; NullCheck(L_29); VirtActionInvoker3< BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* >::Invoke(5 /* System.Void System.Xml.Schema.SyntaxTreeNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) */, L_29, L_31, L_33, L_34); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_35 = V_2; NullCheck(L_35); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_36; L_36 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_35, /*hidden argument*/NULL); NullCheck(L_36); bool L_37; L_37 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_36); if (!L_37) { goto IL_00ca; } } { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_38 = V_2; NullCheck(L_38); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_39; L_39 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_38, /*hidden argument*/NULL); NullCheck(L_39); bool L_40; L_40 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsRangeNode() */, L_39); if (L_40) { goto IL_00ca; } } { SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_41 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_42 = L_41.get_firstpos_1(); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_43 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_44 = L_43.get_firstposRight_4(); NullCheck(L_42); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_42, L_44, /*hidden argument*/NULL); } IL_00ca: { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_45 = V_2; NullCheck(L_45); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_46; L_46 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_45, /*hidden argument*/NULL); NullCheck(L_46); bool L_47; L_47 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_46); if (!L_47) { goto IL_00e8; } } { SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_48 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_49 = L_48.get_lastpos_2(); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_50 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_51 = L_50.get_lastposLeft_3(); NullCheck(L_49); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_49, L_51, /*hidden argument*/NULL); } IL_00e8: { SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_52 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_53 = L_52.get_lastposLeft_3(); NullCheck(L_53); int32_t L_54; L_54 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_53, (-1), /*hidden argument*/NULL); V_3 = L_54; goto IL_0112; } IL_00f7: { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_55 = ___followpos2; int32_t L_56 = V_3; NullCheck(L_55); int32_t L_57 = L_56; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_58 = (L_55)->GetAt(static_cast(L_57)); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_59 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_60 = L_59.get_firstposRight_4(); NullCheck(L_58); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_58, L_60, /*hidden argument*/NULL); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_61 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_62 = L_61.get_lastposLeft_3(); int32_t L_63 = V_3; NullCheck(L_62); int32_t L_64; L_64 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_62, L_63, /*hidden argument*/NULL); V_3 = L_64; } IL_0112: { int32_t L_65 = V_3; if ((!(((uint32_t)L_65) == ((uint32_t)(-1))))) { goto IL_00f7; } } { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_66 = V_2; NullCheck(L_66); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_67; L_67 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_66, /*hidden argument*/NULL); NullCheck(L_67); bool L_68; L_68 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsRangeNode() */, L_67); if (!L_68) { goto IL_013e; } } { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_69 = V_2; NullCheck(L_69); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_70; L_70 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_69, /*hidden argument*/NULL); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_71 = V_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_72 = L_71.get_firstpos_1(); NullCheck(L_72); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_73; L_73 = BitSet_Clone_m42F3015E96CD274C9938B5B8F1E6AA8661EBF603(L_72, /*hidden argument*/NULL); NullCheck(((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)CastclassSealed((RuntimeObject*)L_70, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var))); LeafRangeNode_set_NextIteration_mA4BC4E01B8F5722FD0C158D90FAD54A3D47E8485_inline(((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)CastclassSealed((RuntimeObject*)L_70, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var)), L_73, /*hidden argument*/NULL); } IL_013e: { Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * L_74 = V_0; NullCheck(L_74); int32_t L_75; L_75 = Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_inline(L_74, /*hidden argument*/Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_RuntimeMethod_var); if (!L_75) { goto IL_0159; } } { Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * L_76 = V_0; NullCheck(L_76); SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_77; L_77 = Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B(L_76, /*hidden argument*/Stack_1_Pop_m8FDB0DAF4655A5B0B8122D4F2A4C772BDC85F32B_RuntimeMethod_var); V_1 = L_77; SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_78 = V_1; SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_79 = L_78.get_this__0(); V_2 = L_79; goto IL_0075; } IL_0159: { return; } } // System.Boolean System.Xml.Schema.SequenceNode::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SequenceNode_get_IsNullable_mEE346CC6561B84D18CF20F054873C5EF0DFEFE97 (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * V_0 = NULL; SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * V_1 = NULL; { V_1 = __this; } IL_0002: { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_0 = V_1; NullCheck(L_0); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_1; L_1 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); bool L_2; L_2 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsRangeNode() */, L_1); if (!L_2) { goto IL_002d; } } { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_3 = V_1; NullCheck(L_3); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_4; L_4 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_3, /*hidden argument*/NULL); NullCheck(((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)CastclassSealed((RuntimeObject*)L_4, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var))); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_5; L_5 = LeafRangeNode_get_Min_m9ACB52885522383A21EB6FB7116DB9CC618531D6_inline(((LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 *)CastclassSealed((RuntimeObject*)L_4, LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_6 = ((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var))->get_Zero_7(); bool L_7; L_7 = Decimal_op_Equality_m3BA6FDA0D51500320AC0928695C8CE9F833B0981(L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_002d; } } { return (bool)1; } IL_002d: { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_8 = V_1; NullCheck(L_8); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_9; L_9 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_8, /*hidden argument*/NULL); NullCheck(L_9); bool L_10; L_10 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_9); if (L_10) { goto IL_0049; } } { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_11 = V_1; NullCheck(L_11); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_12; L_12 = InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline(L_11, /*hidden argument*/NULL); NullCheck(L_12); bool L_13; L_13 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsRangeNode() */, L_12); if (L_13) { goto IL_0049; } } { return (bool)0; } IL_0049: { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_14 = V_1; NullCheck(L_14); SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_15; L_15 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(L_14, /*hidden argument*/NULL); V_0 = L_15; SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_16 = V_0; V_1 = ((SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD *)IsInstSealed((RuntimeObject*)L_16, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD_il2cpp_TypeInfo_var)); SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_17 = V_1; if (L_17) { goto IL_0002; } } { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_18 = V_0; NullCheck(L_18); bool L_19; L_19 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsNullable() */, L_18); return L_19; } } // System.Void System.Xml.Schema.SequenceNode::ExpandTree(System.Xml.Schema.InteriorNode,System.Xml.Schema.SymbolsDictionary,System.Xml.Schema.Positions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceNode_ExpandTree_m22E3573CB693E4323032A4EB68397CFB4D96BFB3 (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * __this, InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * ___parent0, SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * ___symbols1, Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * ___positions2, const RuntimeMethod* method) { { InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * L_0 = ___parent0; SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * L_1 = ___symbols1; Positions_t577D66E21F674149C5A3E68851CE88B94C37248F * L_2 = ___positions2; InteriorNode_ExpandTreeNoRecursive_mED7122A2FEA563CA2585C60B43FB8FF3D94C63DB(__this, L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.SequenceNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceNode__ctor_mB5DF9B11AE58300BE3B457BA36E79F8AB635D8F2 (SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * __this, const RuntimeMethod* method) { { InteriorNode__ctor_mE9F860A667BE626F44260612EC983CBDBD16B658(__this, /*hidden argument*/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.Xml.Schema.StarNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StarNode_ConstructPos_mD87FE968213903B150DBA021BF6189AA2B082414 (StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos1, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* ___followpos2, const RuntimeMethod* method) { int32_t V_0 = 0; { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0; L_0 = InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline(__this, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_1 = ___firstpos0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___lastpos1; BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_3 = ___followpos2; NullCheck(L_0); VirtActionInvoker3< BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *, BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* >::Invoke(5 /* System.Void System.Xml.Schema.SyntaxTreeNode::ConstructPos(System.Xml.Schema.BitSet,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet[]) */, L_0, L_1, L_2, L_3); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_4 = ___lastpos1; NullCheck(L_4); int32_t L_5; L_5 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_4, (-1), /*hidden argument*/NULL); V_0 = L_5; goto IL_0029; } IL_0018: { BitSetU5BU5D_t95400D30DE4EA8396AA8017C81305F0A68B3B1FD* L_6 = ___followpos2; int32_t L_7 = V_0; NullCheck(L_6); int32_t L_8 = L_7; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_9 = (L_6)->GetAt(static_cast(L_8)); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_10 = ___firstpos0; NullCheck(L_9); BitSet_Or_m97650756E8B9593BFC80DB152D4BE0C4E1BD985F(L_9, L_10, /*hidden argument*/NULL); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_11 = ___lastpos1; int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13; L_13 = BitSet_NextSet_m2FFD8DA16EB6AD491C81D40008AC8C88CF1AD95B(L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; } IL_0029: { int32_t L_14 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)(-1))))) { goto IL_0018; } } { return; } } // System.Boolean System.Xml.Schema.StarNode::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StarNode_get_IsNullable_mF207099D980022C797DB920848430C4438AA016B (StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.Schema.StarNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StarNode__ctor_mF305B4DE3DE9504E4D4B0C132350AD2917FA67B4 (StarNode_t35998B49B3A23F830E11C0EE75377DA3A93E5A68 * __this, const RuntimeMethod* method) { { InteriorNode__ctor_mE9F860A667BE626F44260612EC983CBDBD16B658(__this, /*hidden argument*/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 System.Xml.Schema.StringFacetsChecker::get_LanguagePattern() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * StringFacetsChecker_get_LanguagePattern_m52AFFA7466AF676D0C4546F149FA888C491D0575 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDC58D280C55C1737F31B2B62F2A84DF60BDDE197); s_Il2CppMethodInitialized = true; } Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * V_0 = NULL; { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_0 = ((StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_StaticFields*)il2cpp_codegen_static_fields_for(StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_il2cpp_TypeInfo_var))->get_languagePattern_0(); if (L_0) { goto IL_0020; } } { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_1 = (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)il2cpp_codegen_object_new(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); Regex__ctor_m5BA9C047FEB3C93AD388668FA855CB1A63FB62A4(L_1, _stringLiteralDC58D280C55C1737F31B2B62F2A84DF60BDDE197, 0, /*hidden argument*/NULL); V_0 = L_1; Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_2 = V_0; Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_3; L_3 = InterlockedCompareExchangeImpl((Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F **)(((StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_StaticFields*)il2cpp_codegen_static_fields_for(StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_il2cpp_TypeInfo_var))->get_address_of_languagePattern_0()), L_2, (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)NULL); } IL_0020: { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_4 = ((StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_StaticFields*)il2cpp_codegen_static_fields_for(StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62_il2cpp_TypeInfo_var))->get_languagePattern_0(); return L_4; } } // System.Exception System.Xml.Schema.StringFacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * StringFacetsChecker_CheckValueFacets_mA30A05D73A1A4242A4FBDEAD7DA2197C54C454C4 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { String_t* V_0 = NULL; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; NullCheck(L_1); String_t* L_3; L_3 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(51 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object) */, L_1, L_2); V_0 = L_3; String_t* L_4 = V_0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype1; Exception_t * L_6; L_6 = StringFacetsChecker_CheckValueFacets_mB5FF71E1F6453E067F229E7EE2DD493B0B82A1D8(__this, L_4, L_5, (bool)1, /*hidden argument*/NULL); return L_6; } } // System.Exception System.Xml.Schema.StringFacetsChecker::CheckValueFacets(System.String,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * StringFacetsChecker_CheckValueFacets_m14CC8ACDDEB32D5CAF22F51E721098DC7835A1E1 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_1 = ___datatype1; Exception_t * L_2; L_2 = StringFacetsChecker_CheckValueFacets_mB5FF71E1F6453E067F229E7EE2DD493B0B82A1D8(__this, L_0, L_1, (bool)1, /*hidden argument*/NULL); return L_2; } } // System.Exception System.Xml.Schema.StringFacetsChecker::CheckValueFacets(System.String,System.Xml.Schema.XmlSchemaDatatype,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * StringFacetsChecker_CheckValueFacets_mB5FF71E1F6453E067F229E7EE2DD493B0B82A1D8 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, bool ___verifyUri2, 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*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_1 = NULL; int32_t V_2 = 0; Exception_t * V_3 = NULL; int32_t G_B3_0 = 0; { String_t* L_0 = ___value0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_2 = ___datatype1; NullCheck(L_2); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3; L_3 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_2); V_1 = L_3; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_4 = V_1; if (L_4) { goto IL_0014; } } { G_B3_0 = 0; goto IL_001a; } IL_0014: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_5 = V_1; NullCheck(L_5); int32_t L_6 = L_5->get_Flags_12(); G_B3_0 = ((int32_t)(L_6)); } IL_001a: { V_2 = G_B3_0; String_t* L_7 = ___value0; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_8 = ___datatype1; NullCheck(L_8); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlSchemaDatatype::get_TypeCode() */, L_8); bool L_10 = ___verifyUri2; Exception_t * L_11; L_11 = StringFacetsChecker_CheckBuiltInFacets_m54AD01DAEAF9825F4AE175BCA0F8CD9A9E998532(__this, L_7, L_9, L_10, /*hidden argument*/NULL); V_3 = L_11; Exception_t * L_12 = V_3; if (!L_12) { goto IL_002f; } } { Exception_t * L_13 = V_3; return L_13; } IL_002f: { int32_t L_14 = V_2; if (!L_14) { goto IL_00b5; } } { int32_t L_15 = V_2; if (!((int32_t)((int32_t)L_15&(int32_t)1))) { goto IL_0053; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_16 = V_1; NullCheck(L_16); int32_t L_17 = L_16->get_Length_0(); int32_t L_18 = V_0; if ((((int32_t)L_17) == ((int32_t)L_18))) { goto IL_0053; } } { String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_20 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_20, _stringLiteralC71FA96AEDA52B028E7DDDC30801B2BE96369780, L_19, /*hidden argument*/NULL); return L_20; } IL_0053: { int32_t L_21 = V_2; if (!((int32_t)((int32_t)L_21&(int32_t)2))) { goto IL_0071; } } { int32_t L_22 = V_0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_23 = V_1; NullCheck(L_23); int32_t L_24 = L_23->get_MinLength_1(); if ((((int32_t)L_22) >= ((int32_t)L_24))) { goto IL_0071; } } { String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_26 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_26, _stringLiteralD8CF940AAED93FD40CE6F02F4A1511A62207C142, L_25, /*hidden argument*/NULL); return L_26; } IL_0071: { int32_t L_27 = V_2; if (!((int32_t)((int32_t)L_27&(int32_t)4))) { goto IL_008f; } } { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_28 = V_1; NullCheck(L_28); int32_t L_29 = L_28->get_MaxLength_2(); int32_t L_30 = V_0; if ((((int32_t)L_29) >= ((int32_t)L_30))) { goto IL_008f; } } { String_t* L_31 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_32 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_32, _stringLiteralD7986912E380F1CB59AAA4D887AEC165F33EA9FA, L_31, /*hidden argument*/NULL); return L_32; } IL_008f: { int32_t L_33 = V_2; if (!((int32_t)((int32_t)L_33&(int32_t)((int32_t)16)))) { goto IL_00b5; } } { String_t* L_34 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_35 = V_1; NullCheck(L_35); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_36 = L_35->get_Enumeration_4(); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_37 = ___datatype1; bool L_38; L_38 = StringFacetsChecker_MatchEnumeration_m63B38C355EEF1109B63CC9488563AB77EBB61FD6(__this, L_34, L_36, L_37, /*hidden argument*/NULL); if (L_38) { goto IL_00b5; } } { String_t* L_39 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_40 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_40, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_39, /*hidden argument*/NULL); return L_40; } IL_00b5: { return (Exception_t *)NULL; } } // System.Boolean System.Xml.Schema.StringFacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringFacetsChecker_MatchEnumeration_m8A57A71739580D62886C9CEC7241365D4DF2E512 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; NullCheck(L_0); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_1; L_1 = VirtFuncInvoker0< XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * >::Invoke(9 /* System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaDatatype::get_ValueConverter() */, L_0); RuntimeObject * L_2 = ___value0; NullCheck(L_1); String_t* L_3; L_3 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(51 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object) */, L_1, L_2); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = ___enumeration1; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_5 = ___datatype2; bool L_6; L_6 = StringFacetsChecker_MatchEnumeration_m63B38C355EEF1109B63CC9488563AB77EBB61FD6(__this, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Boolean System.Xml.Schema.StringFacetsChecker::MatchEnumeration(System.String,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringFacetsChecker_MatchEnumeration_m63B38C355EEF1109B63CC9488563AB77EBB61FD6 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, 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_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlSchemaDatatype::get_TypeCode() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)28))))) { goto IL_0038; } } { V_0 = 0; goto IL_002d; } IL_000e: { String_t* L_2 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = ___enumeration1; int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5; L_5 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_3, L_4); NullCheck(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)CastclassClass((RuntimeObject*)L_5, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); String_t* L_6; L_6 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)CastclassClass((RuntimeObject*)L_5, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_2); bool L_7; L_7 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_2, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0029; } } { return (bool)1; } IL_0029: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002d: { int32_t L_9 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_10 = ___enumeration1; NullCheck(L_10); int32_t L_11; L_11 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10); if ((((int32_t)L_9) < ((int32_t)L_11))) { goto IL_000e; } } { goto IL_005f; } IL_0038: { V_1 = 0; goto IL_0056; } IL_003c: { String_t* L_12 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_13 = ___enumeration1; int32_t L_14 = V_1; NullCheck(L_13); RuntimeObject * L_15; L_15 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_13, L_14); NullCheck(L_12); bool L_16; L_16 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_12, ((String_t*)CastclassSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (!L_16) { goto IL_0052; } } { return (bool)1; } IL_0052: { int32_t L_17 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0056: { int32_t L_18 = V_1; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_19 = ___enumeration1; NullCheck(L_19); int32_t L_20; L_20 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_19); if ((((int32_t)L_18) < ((int32_t)L_20))) { goto IL_003c; } } IL_005f: { return (bool)0; } } // System.Exception System.Xml.Schema.StringFacetsChecker::CheckBuiltInFacets(System.String,System.Xml.Schema.XmlTypeCode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * StringFacetsChecker_CheckBuiltInFacets_m54AD01DAEAF9825F4AE175BCA0F8CD9A9E998532 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, String_t* ___s0, int32_t ___typeCode1, bool ___verifyUri2, 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*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral606D85602184211DB21C40AEC7FD6715395189C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF8C01BF7792E7B3071B4216EB7ED47E83704D3C8); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_1 = NULL; { V_0 = (Exception_t *)NULL; int32_t L_0 = ___typeCode1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)28)))) { case 0: { goto IL_003d; } case 1: { goto IL_00ae; } case 2: { goto IL_00ae; } case 3: { goto IL_004b; } case 4: { goto IL_0054; } case 5: { goto IL_005d; } case 6: { goto IL_0095; } case 7: { goto IL_009e; } case 8: { goto IL_00a7; } case 9: { goto IL_00a7; } case 10: { goto IL_00a7; } case 11: { goto IL_00a7; } } } { goto IL_00ae; } IL_003d: { bool L_1 = ___verifyUri2; if (!L_1) { goto IL_00ae; } } { String_t* L_2 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Exception_t * L_3; L_3 = XmlConvert_TryToUri_mD7E429CB7202C89D8F917ED998A045902CE3A176(L_2, (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 **)(&V_1), /*hidden argument*/NULL); V_0 = L_3; goto IL_00ae; } IL_004b: { String_t* L_4 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Exception_t * L_5; L_5 = XmlConvert_TryVerifyNormalizedString_m492AF54C02E50C7552399F7223B8D9466ECF9C6D(L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_00ae; } IL_0054: { String_t* L_6 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Exception_t * L_7; L_7 = XmlConvert_TryVerifyTOKEN_m3A6BFBF99AA787B5931C9487550FCAD9EB05EF57(L_6, /*hidden argument*/NULL); V_0 = L_7; goto IL_00ae; } IL_005d: { String_t* L_8 = ___s0; if (!L_8) { goto IL_0068; } } { String_t* L_9 = ___s0; NullCheck(L_9); int32_t L_10; L_10 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0078; } } IL_0068: { String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_12 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_12, _stringLiteral606D85602184211DB21C40AEC7FD6715395189C6, L_11, /*hidden argument*/NULL); return L_12; } IL_0078: { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_13; L_13 = StringFacetsChecker_get_LanguagePattern_m52AFFA7466AF676D0C4546F149FA888C491D0575(/*hidden argument*/NULL); String_t* L_14 = ___s0; NullCheck(L_13); bool L_15; L_15 = Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859(L_13, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_00ae; } } { String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_17 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_17, _stringLiteralF8C01BF7792E7B3071B4216EB7ED47E83704D3C8, L_16, /*hidden argument*/NULL); return L_17; } IL_0095: { String_t* L_18 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Exception_t * L_19; L_19 = XmlConvert_TryVerifyNMTOKEN_m14194667D3FD2EBD6F16546531F642E0346F1269(L_18, /*hidden argument*/NULL); V_0 = L_19; goto IL_00ae; } IL_009e: { String_t* L_20 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Exception_t * L_21; L_21 = XmlConvert_TryVerifyName_m225B9175D4907C76E2A37FE4089BA81F96793996(L_20, /*hidden argument*/NULL); V_0 = L_21; goto IL_00ae; } IL_00a7: { String_t* L_22 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Exception_t * L_23; L_23 = XmlConvert_TryVerifyNCName_mB87CFCB56E5EA6690D94F7A071E46F912114FC7B(L_22, /*hidden argument*/NULL); V_0 = L_23; } IL_00ae: { Exception_t * L_24 = V_0; return L_24; } } // System.Void System.Xml.Schema.StringFacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringFacetsChecker__ctor_m158E001635C605661CCC41C17FE9E6752AE51ED8 (StringFacetsChecker_t044F205C90EFCCDF813648D418628A6DBE5E5B62 * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.SymbolsDictionary::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary__ctor_mAED079A4E8AB0F4514D208514898D871EC72DF19 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_isUpaEnforced_5((bool)1); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_0, /*hidden argument*/NULL); __this->set_names_1(L_0); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_1, /*hidden argument*/NULL); __this->set_particles_3(L_1); return; } } // System.Int32 System.Xml.Schema.SymbolsDictionary::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SymbolsDictionary_get_Count_mAE31651169418765C4F54B7B3746AB2016B9077C (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_last_0(); return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)); } } // System.Boolean System.Xml.Schema.SymbolsDictionary::get_IsUpaEnforced() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SymbolsDictionary_get_IsUpaEnforced_mF1CB53D944864D03F27D99ED7EB9F6F3012B28C2 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isUpaEnforced_5(); return L_0; } } // System.Void System.Xml.Schema.SymbolsDictionary::set_IsUpaEnforced(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary_set_IsUpaEnforced_mE9490686782C4AFB2146299CD8EECD5B061FADBE (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isUpaEnforced_5(L_0); return; } } // System.Int32 System.Xml.Schema.SymbolsDictionary::AddName(System.Xml.XmlQualifiedName,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SymbolsDictionary_AddName_mF1E4BAA09330850B9A71DB01910BB4B4672C3EF1 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, RuntimeObject * ___particle1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_names_1(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_1 = ___name0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); V_0 = L_2; RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002f; } } { RuntimeObject * L_4 = V_0; V_1 = ((*(int32_t*)((int32_t*)UnBox(L_4, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = __this->get_particles_3(); int32_t L_6 = V_1; NullCheck(L_5); RuntimeObject * L_7; L_7 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6); RuntimeObject * L_8 = ___particle1; if ((((RuntimeObject*)(RuntimeObject *)L_7) == ((RuntimeObject*)(RuntimeObject *)L_8))) { goto IL_002d; } } { __this->set_isUpaEnforced_5((bool)0); } IL_002d: { int32_t L_9 = V_1; return L_9; } IL_002f: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_10 = __this->get_names_1(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_11 = ___name0; int32_t L_12 = __this->get_last_0(); int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); NullCheck(L_10); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_10, L_11, L_14); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_15 = __this->get_particles_3(); RuntimeObject * L_16 = ___particle1; NullCheck(L_15); int32_t L_17; L_17 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_15, L_16); int32_t L_18 = __this->get_last_0(); V_2 = L_18; int32_t L_19 = V_2; __this->set_last_0(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1))); int32_t L_20 = V_2; return L_20; } } // System.Void System.Xml.Schema.SymbolsDictionary::AddNamespaceList(System.Xml.Schema.NamespaceList,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary_AddNamespaceList_m1F58093AA405FD4FEB04B4B14230D9197050F1CA (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___list0, RuntimeObject * ___particle1, bool ___allowLocal2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject* V_1 = NULL; String_t* V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_0 = ___list0; NullCheck(L_0); int32_t L_1; L_1 = NamespaceList_get_Type_m9B28FA8BE57D9748D681F8239C80B348F0A8FF02_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_001a; } case 1: { goto IL_0022; } case 2: { goto IL_003f; } } } { return; } IL_001a: { RuntimeObject * L_3 = ___particle1; __this->set_particleLast_4(L_3); return; } IL_0022: { NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_4 = ___list0; NullCheck(L_4); String_t* L_5; L_5 = NamespaceList_get_Excluded_mF6AFE63E06E2842A9F193A6A3BC7F7C34B436A33_inline(L_4, /*hidden argument*/NULL); SymbolsDictionary_AddWildcard_m0FF60AB58E25920113147E5D108D30A158D016EB(__this, L_5, NULL, /*hidden argument*/NULL); bool L_6 = ___allowLocal2; if (L_6) { goto IL_007c; } } { String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); SymbolsDictionary_AddWildcard_m0FF60AB58E25920113147E5D108D30A158D016EB(__this, L_7, NULL, /*hidden argument*/NULL); return; } IL_003f: { NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_8 = ___list0; NullCheck(L_8); RuntimeObject* L_9; L_9 = NamespaceList_get_Enumerate_m287DD831CF2AE5099998D22EFCEA6769A9D546B9(L_8, /*hidden argument*/NULL); NullCheck(L_9); RuntimeObject* L_10; L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_9); V_1 = L_10; } IL_004b: try { // begin try (depth: 1) { goto IL_0061; } IL_004d: { RuntimeObject* L_11 = V_1; NullCheck(L_11); RuntimeObject * L_12; L_12 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_11); V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_12, String_t_il2cpp_TypeInfo_var)); String_t* L_13 = V_2; RuntimeObject * L_14 = ___particle1; SymbolsDictionary_AddWildcard_m0FF60AB58E25920113147E5D108D30A158D016EB(__this, L_13, L_14, /*hidden argument*/NULL); } IL_0061: { RuntimeObject* L_15 = V_1; NullCheck(L_15); bool L_16; L_16 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_15); if (L_16) { goto IL_004d; } } IL_0069: { IL2CPP_LEAVE(0x7C, FINALLY_006b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_006b; } FINALLY_006b: { // begin finally (depth: 1) { RuntimeObject* L_17 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_17, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_18 = V_3; if (!L_18) { goto IL_007b; } } IL_0075: { RuntimeObject* L_19 = V_3; NullCheck(L_19); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_19); } IL_007b: { IL2CPP_END_FINALLY(107) } } // end finally (depth: 1) IL2CPP_CLEANUP(107) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x7C, IL_007c) } IL_007c: { return; } } // System.Void System.Xml.Schema.SymbolsDictionary::AddWildcard(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymbolsDictionary_AddWildcard_m0FF60AB58E25920113147E5D108D30A158D016EB (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, String_t* ___wildcard0, RuntimeObject * ___particle1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_wildcards_2(); if (L_0) { goto IL_0013; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL); __this->set_wildcards_2(L_1); } IL_0013: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = __this->get_wildcards_2(); String_t* L_3 = ___wildcard0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3); V_0 = L_4; RuntimeObject * L_5 = V_0; if (L_5) { goto IL_0056; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = __this->get_wildcards_2(); String_t* L_7 = ___wildcard0; int32_t L_8 = __this->get_last_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_9); NullCheck(L_6); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_10); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_11 = __this->get_particles_3(); RuntimeObject * L_12 = ___particle1; NullCheck(L_11); int32_t L_13; L_13 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_12); int32_t L_14 = __this->get_last_0(); __this->set_last_0(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); return; } IL_0056: { RuntimeObject * L_15 = ___particle1; if (!L_15) { goto IL_006b; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_16 = __this->get_particles_3(); RuntimeObject * L_17 = V_0; RuntimeObject * L_18 = ___particle1; NullCheck(L_16); VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(23 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_16, ((*(int32_t*)((int32_t*)UnBox(L_17, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))), L_18); } IL_006b: { return; } } // System.Collections.ICollection System.Xml.Schema.SymbolsDictionary::GetNamespaceListSymbols(System.Xml.Schema.NamespaceList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SymbolsDictionary_GetNamespaceListSymbols_mC58319A3C142FCFF7D7BC233CD93C6A173019B4D (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * ___list0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; RuntimeObject* V_1 = NULL; XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * V_2 = NULL; RuntimeObject* V_3 = NULL; String_t* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL); V_0 = L_0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_names_1(); NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtFuncInvoker0< RuntimeObject* >::Invoke(25 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_1); NullCheck(L_2); RuntimeObject* L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_2); V_1 = L_3; } IL_0017: try { // begin try (depth: 1) { goto IL_004e; } IL_0019: { RuntimeObject* L_4 = V_1; NullCheck(L_4); RuntimeObject * L_5; L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_4); V_2 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)CastclassClass((RuntimeObject*)L_5, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var)); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_6 = V_2; IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_7 = ((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var))->get_Empty_4(); bool L_8; L_8 = XmlQualifiedName_op_Inequality_m41E46D4716F1168DF9152C551CD2F79231750271(L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_004e; } } IL_0032: { NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_9 = ___list0; XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_10 = V_2; NullCheck(L_9); bool L_11; L_11 = NamespaceList_Allows_m1C718062930547A9C254F07C63A8F034B6B2A29E(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_004e; } } IL_003b: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_12 = V_0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_13 = __this->get_names_1(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_14 = V_2; NullCheck(L_13); RuntimeObject * L_15; L_15 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_13, L_14); NullCheck(L_12); int32_t L_16; L_16 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_12, L_15); } IL_004e: { RuntimeObject* L_17 = V_1; NullCheck(L_17); bool L_18; L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_17); if (L_18) { goto IL_0019; } } IL_0056: { IL2CPP_LEAVE(0x69, FINALLY_0058); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0058; } FINALLY_0058: { // begin finally (depth: 1) { RuntimeObject* L_19 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_20 = V_3; if (!L_20) { goto IL_0068; } } IL_0062: { RuntimeObject* L_21 = V_3; NullCheck(L_21); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_21); } IL_0068: { IL2CPP_END_FINALLY(88) } } // end finally (depth: 1) IL2CPP_CLEANUP(88) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x69, IL_0069) } IL_0069: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_22 = __this->get_wildcards_2(); if (!L_22) { goto IL_00ca; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_23 = __this->get_wildcards_2(); NullCheck(L_23); RuntimeObject* L_24; L_24 = VirtFuncInvoker0< RuntimeObject* >::Invoke(25 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_23); NullCheck(L_24); RuntimeObject* L_25; L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_24); V_1 = L_25; } IL_0082: try { // begin try (depth: 1) { goto IL_00af; } IL_0084: { RuntimeObject* L_26 = V_1; NullCheck(L_26); RuntimeObject * L_27; L_27 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_26); V_4 = ((String_t*)CastclassSealed((RuntimeObject*)L_27, String_t_il2cpp_TypeInfo_var)); NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_28 = ___list0; String_t* L_29 = V_4; NullCheck(L_28); bool L_30; L_30 = VirtFuncInvoker1< bool, String_t* >::Invoke(4 /* System.Boolean System.Xml.Schema.NamespaceList::Allows(System.String) */, L_28, L_29); if (!L_30) { goto IL_00af; } } IL_009b: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_31 = V_0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_32 = __this->get_wildcards_2(); String_t* L_33 = V_4; NullCheck(L_32); RuntimeObject * L_34; L_34 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_32, L_33); NullCheck(L_31); int32_t L_35; L_35 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_31, L_34); } IL_00af: { RuntimeObject* L_36 = V_1; NullCheck(L_36); bool L_37; L_37 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_36); if (L_37) { goto IL_0084; } } IL_00b7: { IL2CPP_LEAVE(0xCA, FINALLY_00b9); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b9; } FINALLY_00b9: { // begin finally (depth: 1) { RuntimeObject* L_38 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_38, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_39 = V_3; if (!L_39) { goto IL_00c9; } } IL_00c3: { RuntimeObject* L_40 = V_3; NullCheck(L_40); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_40); } IL_00c9: { IL2CPP_END_FINALLY(185) } } // end finally (depth: 1) IL2CPP_CLEANUP(185) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xCA, IL_00ca) } IL_00ca: { NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_41 = ___list0; NullCheck(L_41); int32_t L_42; L_42 = NamespaceList_get_Type_m9B28FA8BE57D9748D681F8239C80B348F0A8FF02_inline(L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_00db; } } { NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * L_43 = ___list0; NullCheck(L_43); int32_t L_44; L_44 = NamespaceList_get_Type_m9B28FA8BE57D9748D681F8239C80B348F0A8FF02_inline(L_43, /*hidden argument*/NULL); if ((!(((uint32_t)L_44) == ((uint32_t)1)))) { goto IL_00ed; } } IL_00db: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_45 = V_0; int32_t L_46 = __this->get_last_0(); int32_t L_47 = L_46; RuntimeObject * L_48 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_47); NullCheck(L_45); int32_t L_49; L_49 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_45, L_48); } IL_00ed: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_50 = V_0; return L_50; } } // System.Boolean System.Xml.Schema.SymbolsDictionary::Exists(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SymbolsDictionary_Exists_m155E44B30852DAA863AD77ACEA1A26E33BCC5849 (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___name0, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_names_1(); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_1 = ___name0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); if (!L_2) { goto IL_0010; } } { return (bool)1; } IL_0010: { return (bool)0; } } // System.Object System.Xml.Schema.SymbolsDictionary::GetParticle(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SymbolsDictionary_GetParticle_m9C9C3A7E25975924A53A4B497290AC6495AB5A0F (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, int32_t ___symbol0, const RuntimeMethod* method) { { int32_t L_0 = ___symbol0; int32_t L_1 = __this->get_last_0(); if ((((int32_t)L_0) == ((int32_t)L_1))) { goto IL_0016; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = __this->get_particles_3(); int32_t L_3 = ___symbol0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3); return L_4; } IL_0016: { RuntimeObject * L_5 = __this->get_particleLast_4(); return L_5; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Xml.Schema.SyntaxTreeNode::get_IsRangeNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyntaxTreeNode_get_IsRangeNode_m56F2DBA0DA0B1B3ACC2F78C85739BE3BCE927B60 (SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.Schema.SyntaxTreeNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyntaxTreeNode__ctor_m317889346E8C58842102DA39C8D783CCC2C098AD (SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; String_t* L_1 = ___elementName1; bool L_2 = ___isPrimitive2; TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931(__this, L_0, L_1, L_2, (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)NULL, (XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 *)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean,System.Xml.Serialization.TypeData,System.Xml.Schema.XmlSchemaPatternFacet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___mappedType3, XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * ___facet4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_t5BEF028D2890007426B01C2B934C2469498B8013_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_0_0_0_var); s_Il2CppMethodInitialized = true; } TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B25_0 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B20_0 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B24_0 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B21_0 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B22_0 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B23_0 = NULL; int32_t G_B26_0 = 0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * G_B26_1 = NULL; { __this->set_hasPublicConstructor_10((bool)1); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1; L_1 = VirtFuncInvoker0< bool >::Invoke(79 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_0); if (!L_1) { goto IL_0020; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77E83EB343C1814A5961E10409BC28F2A48C7E22)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931_RuntimeMethod_var))); } IL_0020: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_3 = ___mappedType3; __this->set_mappedType_7(L_3); XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * L_4 = ___facet4; __this->set_facet_8(L_4); Type_t * L_5 = ___type0; __this->set_type_0(L_5); Type_t * L_6 = ___type0; NullCheck(L_6); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); __this->set_typeName_4(L_7); Type_t * L_8 = ___type0; NullCheck(L_8); String_t* L_9; L_9 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_8); NullCheck(L_9); String_t* L_10; L_10 = String_Replace_mD912844A1141FE8771F55255C4A8D29C80C47618(L_9, ((int32_t)43), ((int32_t)46), /*hidden argument*/NULL); __this->set_fullTypeName_5(L_10); bool L_11 = ___isPrimitive2; if (!L_11) { goto IL_0064; } } { __this->set_sType_2(1); goto IL_00d5; } IL_0064: { Type_t * L_12 = ___type0; NullCheck(L_12); bool L_13; L_13 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_IsEnum() */, L_12); if (!L_13) { goto IL_0075; } } { __this->set_sType_2(2); goto IL_00d5; } IL_0075: { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_14 = { reinterpret_cast (IXmlSerializable_t5BEF028D2890007426B01C2B934C2469498B8013_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15; L_15 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_14, /*hidden argument*/NULL); Type_t * L_16 = ___type0; NullCheck(L_15); bool L_17; L_17 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_15, L_16); if (!L_17) { goto IL_0090; } } { __this->set_sType_2(5); goto IL_00d5; } IL_0090: { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast (XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19; L_19 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_18, /*hidden argument*/NULL); Type_t * L_20 = ___type0; NullCheck(L_19); bool L_21; L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_19, L_20); if (!L_21) { goto IL_00ab; } } { __this->set_sType_2(6); goto IL_00d5; } IL_00ab: { Type_t * L_22 = ___type0; NullCheck(L_22); bool L_23; L_23 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_22, /*hidden argument*/NULL); if (L_23) { goto IL_00c5; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_24 = { reinterpret_cast (IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25; L_25 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_24, /*hidden argument*/NULL); Type_t * L_26 = ___type0; NullCheck(L_25); bool L_27; L_27 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_25, L_26); if (!L_27) { goto IL_00ce; } } IL_00c5: { __this->set_sType_2(3); goto IL_00d5; } IL_00ce: { __this->set_sType_2(4); } IL_00d5: { bool L_28; L_28 = TypeData_get_IsListType_m3CBCB6B25D4337E243E39B514ACF19144C4A6E82(__this, /*hidden argument*/NULL); if (!L_28) { goto IL_00f5; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_29; L_29 = TypeData_get_ListItemTypeData_m0FA3A62DFB823ECD4B3DA4987FD66C54789ABDD6(__this, /*hidden argument*/NULL); NullCheck(L_29); String_t* L_30; L_30 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_29, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); String_t* L_31; L_31 = TypeTranslator_GetArrayName_mC21C9EA401D0CD4F6BA9EAAA0E10FD99C5B5AA04(L_30, /*hidden argument*/NULL); __this->set_elementName_1(L_31); goto IL_00fc; } IL_00f5: { String_t* L_32 = ___elementName1; __this->set_elementName_1(L_32); } IL_00fc: { int32_t L_33 = __this->get_sType_2(); if ((((int32_t)L_33) == ((int32_t)3))) { goto IL_010e; } } { int32_t L_34 = __this->get_sType_2(); if ((!(((uint32_t)L_34) == ((uint32_t)4)))) { goto IL_014b; } } IL_010e: { Type_t * L_35 = ___type0; NullCheck(L_35); bool L_36; L_36 = Type_get_IsInterface_mB10C34DEE8B22E1597C813211BBED17DD724FC07(L_35, /*hidden argument*/NULL); G_B20_0 = __this; if (L_36) { G_B25_0 = __this; goto IL_0145; } } { Type_t * L_37 = ___type0; NullCheck(L_37); bool L_38; L_38 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_37, /*hidden argument*/NULL); G_B21_0 = G_B20_0; if (L_38) { G_B24_0 = G_B20_0; goto IL_0142; } } { Type_t * L_39 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_40 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_39); ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_41; L_41 = Type_GetConstructor_m98D609FCFA8EB6E54A9FF705D77EEE16603B278C(L_39, L_40, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); bool L_42; L_42 = ConstructorInfo_op_Inequality_mC30EF7D429ABB517BDDB4FAE9CA1E0652DABBDC9(L_41, (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)NULL, /*hidden argument*/NULL); G_B22_0 = G_B21_0; if (L_42) { G_B24_0 = G_B21_0; goto IL_0142; } } { Type_t * L_43 = ___type0; NullCheck(L_43); bool L_44; L_44 = Type_get_IsAbstract_mB16DB56FCABF55740019D32C5286F38E30CAA19F(L_43, /*hidden argument*/NULL); G_B23_0 = G_B22_0; if (L_44) { G_B24_0 = G_B22_0; goto IL_0142; } } { Type_t * L_45 = ___type0; NullCheck(L_45); bool L_46; L_46 = Type_get_IsValueType_m9CCCB4759C2D5A890096F8DBA66DAAEFE9D913FB(L_45, /*hidden argument*/NULL); G_B26_0 = ((int32_t)(L_46)); G_B26_1 = G_B23_0; goto IL_0146; } IL_0142: { G_B26_0 = 1; G_B26_1 = G_B24_0; goto IL_0146; } IL_0145: { G_B26_0 = 0; G_B26_1 = G_B25_0; } IL_0146: { NullCheck(G_B26_1); G_B26_1->set_hasPublicConstructor_10((bool)G_B26_0); } IL_014b: { TypeData_LookupTypeConvertor_m04EFD6ED52010C33848AFFAFEECD370AA72CC91F(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Serialization.TypeData::LookupTypeConvertor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_LookupTypeConvertor_m04EFD6ED52010C33848AFFAFEECD370AA72CC91F (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CustomAttributeExtensions_GetCustomAttribute_TisXmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_m9A984C5391F697D8144A8A48173F577E765E977D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * V_1 = NULL; { Type_t * L_0 = __this->get_type_0(); V_0 = L_0; Type_t * L_1 = V_0; NullCheck(L_1); bool L_2; L_2 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0016; } } { Type_t * L_3 = V_0; NullCheck(L_3); Type_t * L_4; L_4 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetElementType() */, L_3); V_0 = L_4; } IL_0016: { Type_t * L_5 = V_0; XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * L_6; L_6 = CustomAttributeExtensions_GetCustomAttribute_TisXmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_m9A984C5391F697D8144A8A48173F577E765E977D(L_5, /*hidden argument*/CustomAttributeExtensions_GetCustomAttribute_TisXmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_m9A984C5391F697D8144A8A48173F577E765E977D_RuntimeMethod_var); V_1 = L_6; XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * L_7 = V_1; if (!L_7) { goto IL_0034; } } { Type_t * L_8 = V_0; XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * L_9 = V_1; NullCheck(L_9); String_t* L_10; L_10 = XmlTypeConvertorAttribute_get_Method_mE95367532E96E4E4709DEFE87C3DA2985255BCED_inline(L_9, /*hidden argument*/NULL); NullCheck(L_8); MethodInfo_t * L_11; L_11 = Type_GetMethod_m2DDEF37DF33D28F579BA8E03F4376B67D91F0DEB(L_8, L_10, ((int32_t)40), /*hidden argument*/NULL); __this->set_typeConvertor_9(L_11); } IL_0034: { return; } } // System.Void System.Xml.Serialization.TypeData::ConvertForAssignment(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_ConvertForAssignment_mC99B467E9BA7AF52487538303C17505F2B2DA655 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, RuntimeObject ** ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MethodInfo_t * L_0 = __this->get_typeConvertor_9(); bool L_1; L_1 = MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D(L_0, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0027; } } { RuntimeObject ** L_2 = ___value0; MethodInfo_t * L_3 = __this->get_typeConvertor_9(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_4; RuntimeObject ** L_6 = ___value0; RuntimeObject * L_7 = *((RuntimeObject **)L_6); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast(0), (RuntimeObject *)L_7); NullCheck(L_3); RuntimeObject * L_8; L_8 = MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3(L_3, NULL, L_5, /*hidden argument*/NULL); *((RuntimeObject **)L_2) = (RuntimeObject *)L_8; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_8); } IL_0027: { return; } } // System.String System.Xml.Serialization.TypeData::get_TypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeData_get_TypeName_m668AE0E924392266E74D909657C056F8AAA596B7 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_typeName_4(); return L_0; } } // System.String System.Xml.Serialization.TypeData::get_XmlType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_elementName_1(); return L_0; } } // System.Type System.Xml.Serialization.TypeData::get_Type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_0(); return L_0; } } // System.String System.Xml.Serialization.TypeData::get_FullTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_mFFCC7D2CB2D25AB7EB9FB3B395515A52B19D9A29 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_fullTypeName_5(); return L_0; } } // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_sType_2(); return L_0; } } // System.Boolean System.Xml.Serialization.TypeData::get_IsListType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsListType_m3CBCB6B25D4337E243E39B514ACF19144C4A6E82 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)3))? 1 : 0); } } // System.Boolean System.Xml.Serialization.TypeData::get_IsComplexType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsComplexType_m7F74C117E649C691E8EF8989A7CB470A59405A28 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)4))) { goto IL_0037; } } { int32_t L_1; L_1 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)3))) { goto IL_0037; } } { int32_t L_2; L_2 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_0037; } } { int32_t L_3; L_3 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)6))) { goto IL_0037; } } { int32_t L_4; L_4 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)5))) { goto IL_0037; } } { bool L_5; L_5 = TypeData_get_IsXsdType_m75389176FE4780C65C3EDC58960C62E52A51CD08(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } IL_0037: { return (bool)1; } } // System.Boolean System.Xml.Serialization.TypeData::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsValueType_m859872378938A6201F2AAB9A905069D0BCB564FC (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, 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 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { Type_t * L_2 = __this->get_type_0(); NullCheck(L_2); bool L_3; L_3 = Type_get_IsValueType_m9CCCB4759C2D5A890096F8DBA66DAAEFE9D913FB(L_2, /*hidden argument*/NULL); return L_3; } IL_001a: { int32_t L_4 = __this->get_sType_2(); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_002d; } } { int32_t L_5 = __this->get_sType_2(); return (bool)((((int32_t)L_5) == ((int32_t)2))? 1 : 0); } IL_002d: { return (bool)1; } } // System.Boolean System.Xml.Serialization.TypeData::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsNullable_mD24CD1E465C07ADBA559890CC8DB5FD2100BEADF (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t4EDBE007AFFA0315135B9A508DACA62D3C201867_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_nullableOverride_11(); if (!L_0) { goto IL_000a; } } { return (bool)1; } IL_000a: { bool L_1; L_1 = TypeData_get_IsValueType_m859872378938A6201F2AAB9A905069D0BCB564FC(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_004a; } } { Type_t * L_2 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0048; } } { Type_t * L_4 = __this->get_type_0(); NullCheck(L_4); bool L_5; L_5 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_IsGenericType() */, L_4); if (!L_5) { goto IL_0048; } } { Type_t * L_6 = __this->get_type_0(); NullCheck(L_6); Type_t * L_7; L_7 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::GetGenericTypeDefinition() */, L_6); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_8 = { reinterpret_cast (Nullable_1_t4EDBE007AFFA0315135B9A508DACA62D3C201867_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9; L_9 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_8, /*hidden argument*/NULL); bool L_10; L_10 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_9, /*hidden argument*/NULL); return L_10; } IL_0048: { return (bool)0; } IL_004a: { return (bool)1; } } // System.Void System.Xml.Serialization.TypeData::set_IsNullable(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_nullableOverride_11(L_0); return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeData_get_ListItemTypeData_m0FA3A62DFB823ECD4B3DA4987FD66C54789ABDD6 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get_listItemTypeData_6(); if (L_0) { goto IL_0027; } } { Type_t * L_1 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_2; L_2 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_1, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_0027; } } { Type_t * L_3; L_3 = TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_4; L_4 = TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84(L_3, /*hidden argument*/NULL); __this->set_listItemTypeData_6(L_4); } IL_0027: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_5 = __this->get_listItemTypeData_6(); return L_5; } } // System.Type System.Xml.Serialization.TypeData::get_ListItemType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107694947DB47644F8036602F63473486E1ED925); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A84973670418F8458870283182D87D4E901FF7B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA29F3B17CF6E8054389BB8337ACBE5E4C8F4722B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC4E51EF398FD14BDDA545F219C5AB05C49CD591); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; PropertyInfo_t * V_1 = NULL; MethodInfo_t * V_2 = NULL; PropertyInfo_t * V_3 = NULL; { Type_t * L_0 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA38CBCA4B2CB6DC99BB9B654C1998124F6581941)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var))); } IL_0019: { Type_t * L_3 = __this->get_listItemType_3(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_4; L_4 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_3, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_002e; } } { Type_t * L_5 = __this->get_listItemType_3(); return L_5; } IL_002e: { V_0 = (Type_t *)NULL; int32_t L_6; L_6 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_6) == ((int32_t)3))) { goto IL_0054; } } { Type_t * L_7; L_7 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(__this, /*hidden argument*/NULL); NullCheck(L_7); String_t* L_8; L_8 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_7); String_t* L_9; L_9 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral58923673A6DE01B228CD0826473139B945885139)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_10 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var))); } IL_0054: { Type_t * L_11 = __this->get_type_0(); NullCheck(L_11); bool L_12; L_12 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0077; } } { Type_t * L_13 = __this->get_type_0(); NullCheck(L_13); Type_t * L_14; L_14 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetElementType() */, L_13); __this->set_listItemType_3(L_14); goto IL_0220; } IL_0077: { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_15 = { reinterpret_cast (ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16; L_16 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_15, /*hidden argument*/NULL); Type_t * L_17 = __this->get_type_0(); NullCheck(L_16); bool L_18; L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17); if (L_18) { goto IL_00a6; } } { Type_t * L_19 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); Type_t * L_20; L_20 = TypeData_GetGenericListItemType_m6C2943E5118DD1ACAD59F7C46B413963E677486B(L_19, /*hidden argument*/NULL); Type_t * L_21 = L_20; V_0 = L_21; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_22; L_22 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_21, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_22) { goto IL_0171; } } IL_00a6: { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast (IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24; L_24 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_23, /*hidden argument*/NULL); Type_t * L_25 = __this->get_type_0(); NullCheck(L_24); bool L_26; L_26 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_24, L_25); if (!L_26) { goto IL_00dd; } } { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_27; L_27 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); Type_t * L_28 = __this->get_type_0(); NullCheck(L_28); String_t* L_29; L_29 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_28); String_t* L_30; L_30 = String_Format_m65D1D384B19FD8F7BD8BC71EE2B75E00488853DB(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5DFC19D379C148B3B003BB99BBD6AAD19B24AA72)), L_29, /*hidden argument*/NULL); NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_31 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_31, L_30, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var))); } IL_00dd: { Type_t * L_32 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_33; L_33 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_32, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_33) { goto IL_00ef; } } { Type_t * L_34 = V_0; __this->set_listItemType_3(L_34); goto IL_0130; } IL_00ef: { Type_t * L_35 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); PropertyInfo_t * L_36; L_36 = TypeData_GetIndexerProperty_m632F33926F505B429015D6FBD243BD289F7D163E(L_35, /*hidden argument*/NULL); V_1 = L_36; PropertyInfo_t * L_37 = V_1; bool L_38; L_38 = PropertyInfo_op_Equality_mA31D091F79905A0F888F66DE48E56805F4DB12E2(L_37, (PropertyInfo_t *)NULL, /*hidden argument*/NULL); if (!L_38) { goto IL_0124; } } { Type_t * L_39 = __this->get_type_0(); NullCheck(L_39); String_t* L_40; L_40 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_39); String_t* L_41; L_41 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2487EBB314A1B3B04B516ED1FF00721AFA81FAAF)), L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CD467B5F5A978DD7D3631E46793E9D7235411A1)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_42 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_42, L_41, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var))); } IL_0124: { PropertyInfo_t * L_43 = V_1; NullCheck(L_43); Type_t * L_44; L_44 = VirtFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_43); __this->set_listItemType_3(L_44); } IL_0130: { Type_t * L_45 = __this->get_type_0(); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_46 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_47 = L_46; Type_t * L_48 = __this->get_listItemType_3(); NullCheck(L_47); ArrayElementTypeCheck (L_47, L_48); (L_47)->SetAt(static_cast(0), (Type_t *)L_48); NullCheck(L_45); MethodInfo_t * L_49; L_49 = Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E(L_45, _stringLiteral107694947DB47644F8036602F63473486E1ED925, L_47, /*hidden argument*/NULL); bool L_50; L_50 = MethodInfo_op_Equality_m0716EB8EAA86F91031CF1C0B5E5D4B0269AC6A08(L_49, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_50) { goto IL_0220; } } { Type_t * L_51 = __this->get_type_0(); Type_t * L_52 = __this->get_listItemType_3(); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var))); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_53; L_53 = TypeData_CreateMissingAddMethodException_m85C3EFA7166AD60E58D4D4D15B4837C6528E014E(L_51, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBED927361BA852E2227DF19ED8AA3AB2D0C113E5)), L_52, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_53, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var))); } IL_0171: { Type_t * L_54 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_55 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_54); MethodInfo_t * L_56; L_56 = Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E(L_54, _stringLiteral5A84973670418F8458870283182D87D4E901FF7B, L_55, /*hidden argument*/NULL); V_2 = L_56; MethodInfo_t * L_57 = V_2; bool L_58; L_58 = MethodInfo_op_Equality_m0716EB8EAA86F91031CF1C0B5E5D4B0269AC6A08(L_57, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_58) { goto IL_01aa; } } { Type_t * L_59 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_60 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_59); MethodInfo_t * L_61; L_61 = Type_GetMethod_m69EE86B5A87244C925333CCF1B6D6B9BCFED8A89(L_59, _stringLiteralAC4E51EF398FD14BDDA545F219C5AB05C49CD591, ((int32_t)52), (Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 *)NULL, L_60, (ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)NULL, /*hidden argument*/NULL); V_2 = L_61; } IL_01aa: { MethodInfo_t * L_62 = V_2; NullCheck(L_62); Type_t * L_63; L_63 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_62); NullCheck(L_63); PropertyInfo_t * L_64; L_64 = Type_GetProperty_mF9677E24A43BADE21DE5E45E0BD0CB881BAB4C89(L_63, _stringLiteralA29F3B17CF6E8054389BB8337ACBE5E4C8F4722B, /*hidden argument*/NULL); V_3 = L_64; PropertyInfo_t * L_65 = V_3; bool L_66; L_66 = PropertyInfo_op_Equality_mA31D091F79905A0F888F66DE48E56805F4DB12E2(L_65, (PropertyInfo_t *)NULL, /*hidden argument*/NULL); if (!L_66) { goto IL_01d6; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_67 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_68; L_68 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_67, /*hidden argument*/NULL); __this->set_listItemType_3(L_68); goto IL_01e2; } IL_01d6: { PropertyInfo_t * L_69 = V_3; NullCheck(L_69); Type_t * L_70; L_70 = VirtFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_69); __this->set_listItemType_3(L_70); } IL_01e2: { Type_t * L_71 = __this->get_type_0(); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_72 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_73 = L_72; Type_t * L_74 = __this->get_listItemType_3(); NullCheck(L_73); ArrayElementTypeCheck (L_73, L_74); (L_73)->SetAt(static_cast(0), (Type_t *)L_74); NullCheck(L_71); MethodInfo_t * L_75; L_75 = Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E(L_71, _stringLiteral107694947DB47644F8036602F63473486E1ED925, L_73, /*hidden argument*/NULL); bool L_76; L_76 = MethodInfo_op_Equality_m0716EB8EAA86F91031CF1C0B5E5D4B0269AC6A08(L_75, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_76) { goto IL_0220; } } { Type_t * L_77 = __this->get_type_0(); Type_t * L_78 = __this->get_listItemType_3(); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var))); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_79; L_79 = TypeData_CreateMissingAddMethodException_m85C3EFA7166AD60E58D4D4D15B4837C6528E014E(L_77, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84151DE9802C0943FEB2C77FEF117D8E1026B86A)), L_78, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeData_get_ListItemType_m7701AC967B5DD742A2525C4853116EDBF66F73F3_RuntimeMethod_var))); } IL_0220: { Type_t * L_80 = __this->get_listItemType_3(); return L_80; } } // System.Boolean System.Xml.Serialization.TypeData::get_IsXsdType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsXsdType_m75389176FE4780C65C3EDC58960C62E52A51CD08 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get_mappedType_7(); return (bool)((((RuntimeObject*)(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } } // System.Boolean System.Xml.Serialization.TypeData::get_HasPublicConstructor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_HasPublicConstructor_mD6E6F5C1F97AC1EC4AADCFDD09A894F9F65E5882 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_hasPublicConstructor_10(); return L_0; } } // System.Reflection.PropertyInfo System.Xml.Serialization.TypeData::GetIndexerProperty(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * TypeData_GetIndexerProperty_m632F33926F505B429015D6FBD243BD289F7D163E (Type_t * ___collectionType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* V_0 = NULL; int32_t V_1 = 0; PropertyInfo_t * V_2 = NULL; ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* V_3 = NULL; { Type_t * L_0 = ___collectionType0; NullCheck(L_0); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_1; L_1 = VirtFuncInvoker1< PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A*, int32_t >::Invoke(55 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_0, ((int32_t)20)); V_0 = L_1; V_1 = 0; goto IL_0040; } IL_000d: { PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_2 = V_0; int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; PropertyInfo_t * L_5 = (L_2)->GetAt(static_cast(L_4)); V_2 = L_5; PropertyInfo_t * L_6 = V_2; NullCheck(L_6); ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_7; L_7 = VirtFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(24 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_6); V_3 = L_7; ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_8 = V_3; if (!L_8) { goto IL_003c; } } { ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_9 = V_3; NullCheck(L_9); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))) == ((uint32_t)1)))) { goto IL_003c; } } { ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_10 = V_3; NullCheck(L_10); int32_t L_11 = 0; ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_12 = (L_10)->GetAt(static_cast(L_11)); NullCheck(L_12); Type_t * L_13; L_13 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_12); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_14 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15; L_15 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_14, /*hidden argument*/NULL); bool L_16; L_16 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_13, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_003c; } } { PropertyInfo_t * L_17 = V_2; return L_17; } IL_003c: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0040: { int32_t L_19 = V_1; PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_20 = V_0; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))) { goto IL_000d; } } { return (PropertyInfo_t *)NULL; } } // System.InvalidOperationException System.Xml.Serialization.TypeData::CreateMissingAddMethodException(System.Type,System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * TypeData_CreateMissingAddMethodException_m85C3EFA7166AD60E58D4D4D15B4837C6528E014E (Type_t * ___type0, String_t* ___inheritFrom1, Type_t * ___argumentType2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7099A3052174F2598AADAA5FAD61FEC76E46D64F); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); String_t* L_1 = ___inheritFrom1; Type_t * L_2 = ___argumentType2; NullCheck(L_2); String_t* L_3; L_3 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_2); Type_t * L_4 = ___type0; NullCheck(L_4); String_t* L_5; L_5 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_4); String_t* L_6; L_6 = String_Format_mA3BB834FA13052393D767E65AD6AA9F5895106B8(L_0, _stringLiteral7099A3052174F2598AADAA5FAD61FEC76E46D64F, L_1, L_3, L_5, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_7 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_7, L_6, /*hidden argument*/NULL); return L_7; } } // System.Type System.Xml.Serialization.TypeData::GetGenericListItemType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeData_GetGenericListItemType_m6C2943E5118DD1ACAD59F7C46B413963E677486B (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107694947DB47644F8036602F63473486E1ED925); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_1 = NULL; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_2 = NULL; int32_t V_3 = 0; { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1; L_1 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_IsGenericType() */, L_0); if (!L_1) { goto IL_003e; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_2 = { reinterpret_cast (IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3; L_3 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_2, /*hidden argument*/NULL); Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5; L_5 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::GetGenericTypeDefinition() */, L_4); NullCheck(L_3); bool L_6; L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_3, L_5); if (!L_6) { goto IL_003e; } } { Type_t * L_7 = ___type0; NullCheck(L_7); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_8; L_8 = VirtFuncInvoker0< TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(103 /* System.Type[] System.Type::GetGenericArguments() */, L_7); V_1 = L_8; Type_t * L_9 = ___type0; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_10 = V_1; NullCheck(L_9); MethodInfo_t * L_11; L_11 = Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E(L_9, _stringLiteral107694947DB47644F8036602F63473486E1ED925, L_10, /*hidden argument*/NULL); bool L_12; L_12 = MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D(L_11, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_12) { goto IL_003e; } } { TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_13 = V_1; NullCheck(L_13); int32_t L_14 = 0; Type_t * L_15 = (L_13)->GetAt(static_cast(L_14)); return L_15; } IL_003e: { V_0 = (Type_t *)NULL; Type_t * L_16 = ___type0; NullCheck(L_16); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_17; L_17 = VirtFuncInvoker0< TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(47 /* System.Type[] System.Type::GetInterfaces() */, L_16); V_2 = L_17; V_3 = 0; goto IL_0063; } IL_004b: { TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_18 = V_2; int32_t L_19 = V_3; NullCheck(L_18); int32_t L_20 = L_19; Type_t * L_21 = (L_18)->GetAt(static_cast(L_20)); IL2CPP_RUNTIME_CLASS_INIT(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); Type_t * L_22; L_22 = TypeData_GetGenericListItemType_m6C2943E5118DD1ACAD59F7C46B413963E677486B(L_21, /*hidden argument*/NULL); Type_t * L_23 = L_22; V_0 = L_23; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_24; L_24 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_23, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_24) { goto IL_005f; } } { Type_t * L_25 = V_0; return L_25; } IL_005f: { int32_t L_26 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_0063: { int32_t L_27 = V_3; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_28 = V_2; NullCheck(L_28); if ((((int32_t)L_27) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))) { goto IL_004b; } } { return (Type_t *)NULL; } } // System.Void System.Xml.Serialization.TypeData::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData__cctor_m856B57A87C1443F6DD38585E1C81098A78124DDC (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BB39DE8D1B747008B7AA481357BD906FEA90B6F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0CE918CF589A0B3A3BDB90F0F98BCC43CDF6169E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0CEBF7DFA17440E9873C47A2C1BE712F98DFA500); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A9F773AF09A196B0A76B00E4B47084B3EA86D59); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1B6D0EA4FFAEA7868BA3D296BF046EF1266CEC55); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25F5EF17AC725A91FE3F3CE895C16ED6DD9B3499); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral286CC02C1E7ED462D7D2D31546D5144F88661A2F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28A2974B55097EBB10C3D44D4452824517C0783D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E3ED7A81B1913E943A744C8F9E7D5EB5C672B4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral316316045E2DB71BB9C0748EE882DBF00C83FD8E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F3CCC8C96B52CBA9D88D899779B6191CE15B79); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3618AD4590B5AEEAF5022BE929B8BA84D836466C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral36A07254D81AF39088E2BED8EFC92E153ED48ECC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral384565B8399EC9A224FB52B7078096010121FA9F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38D3008511B528A5F192D58360168CA7329DE2AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B5E495CDE8B6F083E7D5ACE1D945067609680FC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40238A1A323AEE2FA699BCF0BB5F71A5CCC87DA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral443BD561FA5A81D321CAAF0B444C0CFB1C5811D4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50D4804BC7D54E5E3D765D78A85B3784DBE80471); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral541BC3E626400B590FFDBE860C1855349210E425); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57046FC2B1DAF399BC0B2381DB8D6833BEC364B6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CF637AF1571A6E5D0B437E9E082426D624A4FCA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5DFC03B35CE1610D507097EBBBD36CF45BCB4C2C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral614B501556B12B5890C878B29FB23C1807F2B680); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61A88EF487F99DCB9558AAAD39471532DEE75F42); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61C6D968B7FE88D4B8A63934DD5685C362457520); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral673CC9996FD90AFE21BD8D0E6E6824353AF4BDA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral679D068D573133B9C7C465FC6CF9C9D07B531421); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A7C5B87AC840B649D5115CC2F065246EA1D14D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ECB47BAE746457DBE91D0BA044A27960D4563D9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral766E767D6A87AB03C7C3410F3665A93D03D6E9FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83882E2E410B213AB2B2289E29DC55945FAD39F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral89337E2EE35A3C198227FBA81922CE5F0C58D97F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8940E1FEA4EBF3CA20C44768AA93531C62B71B4A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C1D304CED4C13075109A2D82DE6D8D24A9E3678); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral934962903D946CC131DF8E5E4E575453098EEF43); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral97A9FFA2774B057B3CB8403D1F4547E1AE1CDA4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AD0BAB2813AC84F1BA06E134DA49490A035C21E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C48C24D4BF1ED95579220DFFA96B8E7E7AB87E0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA041A903507FD76791B65E77B8DA1BF219158F7D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD522BF64F2D257409CB3BAC45086A2EA0B03C59); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1868FA5803D4E948C556DEC84B3C733E6C6863C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB95AED94347EEEE80FE2B58CC6819F8D88029C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC203279FC91536021E64CC54092300BDE54D3FEB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC205D54CE3878136AF6661FE2D0B347BEC57D5AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3EC0475D7BECB6F89847EE0E364B00D04507118); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC94CA552630B8AC1ADF21BAF5252FC9092E4DDDC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB2070BB5AC5DA50197474C74B7EA4D7BDEEBCB1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEBC2707039661BD61D98F991B27F2B9CB160373); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD03C3C7F3A363D2E45775B1A6E39D7D5E5BEA998); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD525221FF38EAF1A30491622A0B39D5D960A7815); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEF7342DCBF4F4F80F2C4D42F5991B8E851510BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDFC500CF01D877A89AA3F6E3447F79A733BA63FF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3165827D406DD8F354BE7515C630A771E98916A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3AB954C27345B5777E41817C31696D6AC0E87C1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5B7FB5BFBF1CF60857A40FCA10F830CC619AE16); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEAA8D9C3445FEBFE3701DDB0406A86D63B80BB2F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECC5FBBC8E0BED3B8718D6E2160AD386C9CEC212); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECE7ACD2EBE43C9753D823F423714DB870E2FDC2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4E35F8C3B4DEB7662034D2DB84C95826A9E9496); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF56887477425485B59C9C4926D0FEFC2946FA21E); s_Il2CppMethodInitialized = true; } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)80)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral28A2974B55097EBB10C3D44D4452824517C0783D); (L_1)->SetAt(static_cast(0), (String_t*)_stringLiteral28A2974B55097EBB10C3D44D4452824517C0783D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralEAA8D9C3445FEBFE3701DDB0406A86D63B80BB2F); (L_2)->SetAt(static_cast(1), (String_t*)_stringLiteralEAA8D9C3445FEBFE3701DDB0406A86D63B80BB2F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = L_2; NullCheck(L_3); ArrayElementTypeCheck (L_3, _stringLiteral33F3CCC8C96B52CBA9D88D899779B6191CE15B79); (L_3)->SetAt(static_cast(2), (String_t*)_stringLiteral33F3CCC8C96B52CBA9D88D899779B6191CE15B79); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = L_3; NullCheck(L_4); ArrayElementTypeCheck (L_4, _stringLiteral766E767D6A87AB03C7C3410F3665A93D03D6E9FA); (L_4)->SetAt(static_cast(3), (String_t*)_stringLiteral766E767D6A87AB03C7C3410F3665A93D03D6E9FA); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = L_4; NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral0BB39DE8D1B747008B7AA481357BD906FEA90B6F); (L_5)->SetAt(static_cast(4), (String_t*)_stringLiteral0BB39DE8D1B747008B7AA481357BD906FEA90B6F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteralB1868FA5803D4E948C556DEC84B3C733E6C6863C); (L_6)->SetAt(static_cast(5), (String_t*)_stringLiteralB1868FA5803D4E948C556DEC84B3C733E6C6863C); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174); (L_7)->SetAt(static_cast(6), (String_t*)_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = L_7; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral679D068D573133B9C7C465FC6CF9C9D07B531421); (L_8)->SetAt(static_cast(7), (String_t*)_stringLiteral679D068D573133B9C7C465FC6CF9C9D07B531421); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral3618AD4590B5AEEAF5022BE929B8BA84D836466C); (L_9)->SetAt(static_cast(8), (String_t*)_stringLiteral3618AD4590B5AEEAF5022BE929B8BA84D836466C); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral541BC3E626400B590FFDBE860C1855349210E425); (L_10)->SetAt(static_cast(((int32_t)9)), (String_t*)_stringLiteral541BC3E626400B590FFDBE860C1855349210E425); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteralD525221FF38EAF1A30491622A0B39D5D960A7815); (L_11)->SetAt(static_cast(((int32_t)10)), (String_t*)_stringLiteralD525221FF38EAF1A30491622A0B39D5D960A7815); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = L_11; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB); (L_12)->SetAt(static_cast(((int32_t)11)), (String_t*)_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteralC203279FC91536021E64CC54092300BDE54D3FEB); (L_13)->SetAt(static_cast(((int32_t)12)), (String_t*)_stringLiteralC203279FC91536021E64CC54092300BDE54D3FEB); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral36A07254D81AF39088E2BED8EFC92E153ED48ECC); (L_14)->SetAt(static_cast(((int32_t)13)), (String_t*)_stringLiteral36A07254D81AF39088E2BED8EFC92E153ED48ECC); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = L_14; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralCB2070BB5AC5DA50197474C74B7EA4D7BDEEBCB1); (L_15)->SetAt(static_cast(((int32_t)14)), (String_t*)_stringLiteralCB2070BB5AC5DA50197474C74B7EA4D7BDEEBCB1); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = L_15; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral5DFC03B35CE1610D507097EBBBD36CF45BCB4C2C); (L_16)->SetAt(static_cast(((int32_t)15)), (String_t*)_stringLiteral5DFC03B35CE1610D507097EBBBD36CF45BCB4C2C); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral9C48C24D4BF1ED95579220DFFA96B8E7E7AB87E0); (L_17)->SetAt(static_cast(((int32_t)16)), (String_t*)_stringLiteral9C48C24D4BF1ED95579220DFFA96B8E7E7AB87E0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_17; NullCheck(L_18); ArrayElementTypeCheck (L_18, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); (L_18)->SetAt(static_cast(((int32_t)17)), (String_t*)_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteralF4E35F8C3B4DEB7662034D2DB84C95826A9E9496); (L_19)->SetAt(static_cast(((int32_t)18)), (String_t*)_stringLiteralF4E35F8C3B4DEB7662034D2DB84C95826A9E9496); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteralDEF7342DCBF4F4F80F2C4D42F5991B8E851510BD); (L_20)->SetAt(static_cast(((int32_t)19)), (String_t*)_stringLiteralDEF7342DCBF4F4F80F2C4D42F5991B8E851510BD); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteral0CEBF7DFA17440E9873C47A2C1BE712F98DFA500); (L_21)->SetAt(static_cast(((int32_t)20)), (String_t*)_stringLiteral0CEBF7DFA17440E9873C47A2C1BE712F98DFA500); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = L_21; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteralD03C3C7F3A363D2E45775B1A6E39D7D5E5BEA998); (L_22)->SetAt(static_cast(((int32_t)21)), (String_t*)_stringLiteralD03C3C7F3A363D2E45775B1A6E39D7D5E5BEA998); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral8940E1FEA4EBF3CA20C44768AA93531C62B71B4A); (L_23)->SetAt(static_cast(((int32_t)22)), (String_t*)_stringLiteral8940E1FEA4EBF3CA20C44768AA93531C62B71B4A); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = L_23; NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteralECC5FBBC8E0BED3B8718D6E2160AD386C9CEC212); (L_24)->SetAt(static_cast(((int32_t)23)), (String_t*)_stringLiteralECC5FBBC8E0BED3B8718D6E2160AD386C9CEC212); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral38D3008511B528A5F192D58360168CA7329DE2AB); (L_25)->SetAt(static_cast(((int32_t)24)), (String_t*)_stringLiteral38D3008511B528A5F192D58360168CA7329DE2AB); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteralECE7ACD2EBE43C9753D823F423714DB870E2FDC2); (L_26)->SetAt(static_cast(((int32_t)25)), (String_t*)_stringLiteralECE7ACD2EBE43C9753D823F423714DB870E2FDC2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = L_26; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral6A7C5B87AC840B649D5115CC2F065246EA1D14D2); (L_27)->SetAt(static_cast(((int32_t)26)), (String_t*)_stringLiteral6A7C5B87AC840B649D5115CC2F065246EA1D14D2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_28 = L_27; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral3B5E495CDE8B6F083E7D5ACE1D945067609680FC); (L_28)->SetAt(static_cast(((int32_t)27)), (String_t*)_stringLiteral3B5E495CDE8B6F083E7D5ACE1D945067609680FC); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = L_28; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteral286CC02C1E7ED462D7D2D31546D5144F88661A2F); (L_29)->SetAt(static_cast(((int32_t)28)), (String_t*)_stringLiteral286CC02C1E7ED462D7D2D31546D5144F88661A2F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1); (L_30)->SetAt(static_cast(((int32_t)29)), (String_t*)_stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralDFC500CF01D877A89AA3F6E3447F79A733BA63FF); (L_31)->SetAt(static_cast(((int32_t)30)), (String_t*)_stringLiteralDFC500CF01D877A89AA3F6E3447F79A733BA63FF); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_32 = L_31; NullCheck(L_32); ArrayElementTypeCheck (L_32, _stringLiteral934962903D946CC131DF8E5E4E575453098EEF43); (L_32)->SetAt(static_cast(((int32_t)31)), (String_t*)_stringLiteral934962903D946CC131DF8E5E4E575453098EEF43); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, _stringLiteral0CE918CF589A0B3A3BDB90F0F98BCC43CDF6169E); (L_33)->SetAt(static_cast(((int32_t)32)), (String_t*)_stringLiteral0CE918CF589A0B3A3BDB90F0F98BCC43CDF6169E); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = L_33; NullCheck(L_34); ArrayElementTypeCheck (L_34, _stringLiteral614B501556B12B5890C878B29FB23C1807F2B680); (L_34)->SetAt(static_cast(((int32_t)33)), (String_t*)_stringLiteral614B501556B12B5890C878B29FB23C1807F2B680); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_35 = L_34; NullCheck(L_35); ArrayElementTypeCheck (L_35, _stringLiteral61A88EF487F99DCB9558AAAD39471532DEE75F42); (L_35)->SetAt(static_cast(((int32_t)34)), (String_t*)_stringLiteral61A88EF487F99DCB9558AAAD39471532DEE75F42); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_36 = L_35; NullCheck(L_36); ArrayElementTypeCheck (L_36, _stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9); (L_36)->SetAt(static_cast(((int32_t)35)), (String_t*)_stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_37 = L_36; NullCheck(L_37); ArrayElementTypeCheck (L_37, _stringLiteral61C6D968B7FE88D4B8A63934DD5685C362457520); (L_37)->SetAt(static_cast(((int32_t)36)), (String_t*)_stringLiteral61C6D968B7FE88D4B8A63934DD5685C362457520); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = L_37; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteral2E3ED7A81B1913E943A744C8F9E7D5EB5C672B4C); (L_38)->SetAt(static_cast(((int32_t)37)), (String_t*)_stringLiteral2E3ED7A81B1913E943A744C8F9E7D5EB5C672B4C); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = L_38; NullCheck(L_39); ArrayElementTypeCheck (L_39, _stringLiteral40238A1A323AEE2FA699BCF0BB5F71A5CCC87DA2); (L_39)->SetAt(static_cast(((int32_t)38)), (String_t*)_stringLiteral40238A1A323AEE2FA699BCF0BB5F71A5CCC87DA2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, _stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356); (L_40)->SetAt(static_cast(((int32_t)39)), (String_t*)_stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_41 = L_40; NullCheck(L_41); ArrayElementTypeCheck (L_41, _stringLiteralA041A903507FD76791B65E77B8DA1BF219158F7D); (L_41)->SetAt(static_cast(((int32_t)40)), (String_t*)_stringLiteralA041A903507FD76791B65E77B8DA1BF219158F7D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_42 = L_41; NullCheck(L_42); ArrayElementTypeCheck (L_42, _stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110); (L_42)->SetAt(static_cast(((int32_t)41)), (String_t*)_stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = L_42; NullCheck(L_43); ArrayElementTypeCheck (L_43, _stringLiteral25F5EF17AC725A91FE3F3CE895C16ED6DD9B3499); (L_43)->SetAt(static_cast(((int32_t)42)), (String_t*)_stringLiteral25F5EF17AC725A91FE3F3CE895C16ED6DD9B3499); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = L_43; NullCheck(L_44); ArrayElementTypeCheck (L_44, _stringLiteralE5B7FB5BFBF1CF60857A40FCA10F830CC619AE16); (L_44)->SetAt(static_cast(((int32_t)43)), (String_t*)_stringLiteralE5B7FB5BFBF1CF60857A40FCA10F830CC619AE16); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_45 = L_44; NullCheck(L_45); ArrayElementTypeCheck (L_45, _stringLiteral5CF637AF1571A6E5D0B437E9E082426D624A4FCA); (L_45)->SetAt(static_cast(((int32_t)44)), (String_t*)_stringLiteral5CF637AF1571A6E5D0B437E9E082426D624A4FCA); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_46 = L_45; NullCheck(L_46); ArrayElementTypeCheck (L_46, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); (L_46)->SetAt(static_cast(((int32_t)45)), (String_t*)_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_47 = L_46; NullCheck(L_47); ArrayElementTypeCheck (L_47, _stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580); (L_47)->SetAt(static_cast(((int32_t)46)), (String_t*)_stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_48 = L_47; NullCheck(L_48); ArrayElementTypeCheck (L_48, _stringLiteral83882E2E410B213AB2B2289E29DC55945FAD39F3); (L_48)->SetAt(static_cast(((int32_t)47)), (String_t*)_stringLiteral83882E2E410B213AB2B2289E29DC55945FAD39F3); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_49 = L_48; NullCheck(L_49); ArrayElementTypeCheck (L_49, _stringLiteral8C1D304CED4C13075109A2D82DE6D8D24A9E3678); (L_49)->SetAt(static_cast(((int32_t)48)), (String_t*)_stringLiteral8C1D304CED4C13075109A2D82DE6D8D24A9E3678); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_50 = L_49; NullCheck(L_50); ArrayElementTypeCheck (L_50, _stringLiteral1B6D0EA4FFAEA7868BA3D296BF046EF1266CEC55); (L_50)->SetAt(static_cast(((int32_t)49)), (String_t*)_stringLiteral1B6D0EA4FFAEA7868BA3D296BF046EF1266CEC55); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_51 = L_50; NullCheck(L_51); ArrayElementTypeCheck (L_51, _stringLiteral89337E2EE35A3C198227FBA81922CE5F0C58D97F); (L_51)->SetAt(static_cast(((int32_t)50)), (String_t*)_stringLiteral89337E2EE35A3C198227FBA81922CE5F0C58D97F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_52 = L_51; NullCheck(L_52); ArrayElementTypeCheck (L_52, _stringLiteralF56887477425485B59C9C4926D0FEFC2946FA21E); (L_52)->SetAt(static_cast(((int32_t)51)), (String_t*)_stringLiteralF56887477425485B59C9C4926D0FEFC2946FA21E); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_53 = L_52; NullCheck(L_53); ArrayElementTypeCheck (L_53, _stringLiteralC3EC0475D7BECB6F89847EE0E364B00D04507118); (L_53)->SetAt(static_cast(((int32_t)52)), (String_t*)_stringLiteralC3EC0475D7BECB6F89847EE0E364B00D04507118); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_54 = L_53; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteralBB95AED94347EEEE80FE2B58CC6819F8D88029C9); (L_54)->SetAt(static_cast(((int32_t)53)), (String_t*)_stringLiteralBB95AED94347EEEE80FE2B58CC6819F8D88029C9); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_55 = L_54; NullCheck(L_55); ArrayElementTypeCheck (L_55, _stringLiteralAD522BF64F2D257409CB3BAC45086A2EA0B03C59); (L_55)->SetAt(static_cast(((int32_t)54)), (String_t*)_stringLiteralAD522BF64F2D257409CB3BAC45086A2EA0B03C59); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_56 = L_55; NullCheck(L_56); ArrayElementTypeCheck (L_56, _stringLiteral50D4804BC7D54E5E3D765D78A85B3784DBE80471); (L_56)->SetAt(static_cast(((int32_t)55)), (String_t*)_stringLiteral50D4804BC7D54E5E3D765D78A85B3784DBE80471); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_57 = L_56; NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteralC94CA552630B8AC1ADF21BAF5252FC9092E4DDDC); (L_57)->SetAt(static_cast(((int32_t)56)), (String_t*)_stringLiteralC94CA552630B8AC1ADF21BAF5252FC9092E4DDDC); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_58 = L_57; NullCheck(L_58); ArrayElementTypeCheck (L_58, _stringLiteral443BD561FA5A81D321CAAF0B444C0CFB1C5811D4); (L_58)->SetAt(static_cast(((int32_t)57)), (String_t*)_stringLiteral443BD561FA5A81D321CAAF0B444C0CFB1C5811D4); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_59 = L_58; NullCheck(L_59); ArrayElementTypeCheck (L_59, _stringLiteral1A9F773AF09A196B0A76B00E4B47084B3EA86D59); (L_59)->SetAt(static_cast(((int32_t)58)), (String_t*)_stringLiteral1A9F773AF09A196B0A76B00E4B47084B3EA86D59); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_60 = L_59; NullCheck(L_60); ArrayElementTypeCheck (L_60, _stringLiteral384565B8399EC9A224FB52B7078096010121FA9F); (L_60)->SetAt(static_cast(((int32_t)59)), (String_t*)_stringLiteral384565B8399EC9A224FB52B7078096010121FA9F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_61 = L_60; NullCheck(L_61); ArrayElementTypeCheck (L_61, _stringLiteralCEBC2707039661BD61D98F991B27F2B9CB160373); (L_61)->SetAt(static_cast(((int32_t)60)), (String_t*)_stringLiteralCEBC2707039661BD61D98F991B27F2B9CB160373); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_62 = L_61; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18); (L_62)->SetAt(static_cast(((int32_t)61)), (String_t*)_stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_63 = L_62; NullCheck(L_63); ArrayElementTypeCheck (L_63, _stringLiteral673CC9996FD90AFE21BD8D0E6E6824353AF4BDA2); (L_63)->SetAt(static_cast(((int32_t)62)), (String_t*)_stringLiteral673CC9996FD90AFE21BD8D0E6E6824353AF4BDA2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_64 = L_63; NullCheck(L_64); ArrayElementTypeCheck (L_64, _stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7); (L_64)->SetAt(static_cast(((int32_t)63)), (String_t*)_stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_65 = L_64; NullCheck(L_65); ArrayElementTypeCheck (L_65, _stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29); (L_65)->SetAt(static_cast(((int32_t)64)), (String_t*)_stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_66 = L_65; NullCheck(L_66); ArrayElementTypeCheck (L_66, _stringLiteralE3165827D406DD8F354BE7515C630A771E98916A); (L_66)->SetAt(static_cast(((int32_t)65)), (String_t*)_stringLiteralE3165827D406DD8F354BE7515C630A771E98916A); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_67 = L_66; NullCheck(L_67); ArrayElementTypeCheck (L_67, _stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7); (L_67)->SetAt(static_cast(((int32_t)66)), (String_t*)_stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_68 = L_67; NullCheck(L_68); ArrayElementTypeCheck (L_68, _stringLiteralE3AB954C27345B5777E41817C31696D6AC0E87C1); (L_68)->SetAt(static_cast(((int32_t)67)), (String_t*)_stringLiteralE3AB954C27345B5777E41817C31696D6AC0E87C1); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_69 = L_68; NullCheck(L_69); ArrayElementTypeCheck (L_69, _stringLiteral316316045E2DB71BB9C0748EE882DBF00C83FD8E); (L_69)->SetAt(static_cast(((int32_t)68)), (String_t*)_stringLiteral316316045E2DB71BB9C0748EE882DBF00C83FD8E); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_70 = L_69; NullCheck(L_70); ArrayElementTypeCheck (L_70, _stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D); (L_70)->SetAt(static_cast(((int32_t)69)), (String_t*)_stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_71 = L_70; NullCheck(L_71); ArrayElementTypeCheck (L_71, _stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72); (L_71)->SetAt(static_cast(((int32_t)70)), (String_t*)_stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_72 = L_71; NullCheck(L_72); ArrayElementTypeCheck (L_72, _stringLiteralC205D54CE3878136AF6661FE2D0B347BEC57D5AB); (L_72)->SetAt(static_cast(((int32_t)71)), (String_t*)_stringLiteralC205D54CE3878136AF6661FE2D0B347BEC57D5AB); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_73 = L_72; NullCheck(L_73); ArrayElementTypeCheck (L_73, _stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7); (L_73)->SetAt(static_cast(((int32_t)72)), (String_t*)_stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_74 = L_73; NullCheck(L_74); ArrayElementTypeCheck (L_74, _stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8); (L_74)->SetAt(static_cast(((int32_t)73)), (String_t*)_stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_75 = L_74; NullCheck(L_75); ArrayElementTypeCheck (L_75, _stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7); (L_75)->SetAt(static_cast(((int32_t)74)), (String_t*)_stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_76 = L_75; NullCheck(L_76); ArrayElementTypeCheck (L_76, _stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE); (L_76)->SetAt(static_cast(((int32_t)75)), (String_t*)_stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_77 = L_76; NullCheck(L_77); ArrayElementTypeCheck (L_77, _stringLiteral6ECB47BAE746457DBE91D0BA044A27960D4563D9); (L_77)->SetAt(static_cast(((int32_t)76)), (String_t*)_stringLiteral6ECB47BAE746457DBE91D0BA044A27960D4563D9); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteral57046FC2B1DAF399BC0B2381DB8D6833BEC364B6); (L_78)->SetAt(static_cast(((int32_t)77)), (String_t*)_stringLiteral57046FC2B1DAF399BC0B2381DB8D6833BEC364B6); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_79 = L_78; NullCheck(L_79); ArrayElementTypeCheck (L_79, _stringLiteral97A9FFA2774B057B3CB8403D1F4547E1AE1CDA4C); (L_79)->SetAt(static_cast(((int32_t)78)), (String_t*)_stringLiteral97A9FFA2774B057B3CB8403D1F4547E1AE1CDA4C); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_80 = L_79; NullCheck(L_80); ArrayElementTypeCheck (L_80, _stringLiteral9AD0BAB2813AC84F1BA06E134DA49490A035C21E); (L_80)->SetAt(static_cast(((int32_t)79)), (String_t*)_stringLiteral9AD0BAB2813AC84F1BA06E134DA49490A035C21E); ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_StaticFields*)il2cpp_codegen_static_fields_for(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var))->set_keywords_12(L_80); 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.Xml.Serialization.TypeMember::.ctor(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeMember__ctor_m01AF9E4AF31E6A796FBB8BBB5AA06119E9CEED2A (TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * __this, Type_t * ___type0, String_t* ___member1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; __this->set_type_0(L_0); String_t* L_1 = ___member1; __this->set_member_1(L_1); return; } } // System.Int32 System.Xml.Serialization.TypeMember::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeMember_GetHashCode_mDAC2688C09E11CC088EB2508B7F1CC56CD217154 (TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); String_t* L_2 = __this->get_member_1(); NullCheck(L_2); int32_t L_3; L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_2); return ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_3)); } } // System.Boolean System.Xml.Serialization.TypeMember::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeMember_Equals_m03687F2975CE9B3FD29B5C3B43D6B4BF8DBA2294 (TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeMember_t8F822B48C520500825EE30B53C9F31070682019C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (!((TypeMember_t8F822B48C520500825EE30B53C9F31070682019C *)IsInstSealed((RuntimeObject*)L_0, TypeMember_t8F822B48C520500825EE30B53C9F31070682019C_il2cpp_TypeInfo_var))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2; L_2 = TypeMember_Equals_m0FFF810E5A6F5BE0F1D5122C993E2908681D5480(__this, ((TypeMember_t8F822B48C520500825EE30B53C9F31070682019C *)CastclassSealed((RuntimeObject*)L_1, TypeMember_t8F822B48C520500825EE30B53C9F31070682019C_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_2; } IL_0015: { return (bool)0; } } // System.Boolean System.Xml.Serialization.TypeMember::Equals(System.Xml.Serialization.TypeMember,System.Xml.Serialization.TypeMember) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeMember_Equals_m0FFF810E5A6F5BE0F1D5122C993E2908681D5480 (TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * ___tm10, TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * ___tm21, 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; } { TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_0 = ___tm10; TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_1 = ___tm21; if ((!(((RuntimeObject*)(TypeMember_t8F822B48C520500825EE30B53C9F31070682019C *)L_0) == ((RuntimeObject*)(TypeMember_t8F822B48C520500825EE30B53C9F31070682019C *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_2 = ___tm10; if (!L_2) { goto IL_000c; } } { TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_3 = ___tm21; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_4 = ___tm10; NullCheck(L_4); Type_t * L_5 = L_4->get_type_0(); TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_6 = ___tm21; NullCheck(L_6); Type_t * L_7 = L_6->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_8; L_8 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_5, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0036; } } { TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_9 = ___tm10; NullCheck(L_9); String_t* L_10 = L_9->get_member_1(); TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * L_11 = ___tm21; NullCheck(L_11); String_t* L_12 = L_11->get_member_1(); bool L_13; L_13 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0036; } } { return (bool)1; } IL_0036: { return (bool)0; } } // System.String System.Xml.Serialization.TypeMember::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeMember_ToString_m2A5101D187FFA02C6DED66F1288AE84931D6E479 (TypeMember_t8F822B48C520500825EE30B53C9F31070682019C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = __this->get_type_0(); NullCheck(L_0); String_t* L_1; L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0); String_t* L_2 = __this->get_member_1(); String_t* L_3; L_3 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_1, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_2, /*hidden argument*/NULL); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.TypeTranslator::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeTranslator__cctor_mFBA982DB40923C9532F135D39AE0C93366B6A257 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_tF11C508FEEF5FBE169DCE4A7538BE55B1F0C4BCF_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0797970A05214E4132EBF1E0E234C882D1DCD3C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F351FFA0B5B35F215CCBDDE75840E380391AA2C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E6F6A066E9C41521D9969E61D6F5F89615E3161); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral265F3FB35B71A1769644CBC8A1BD32CE34B94D63); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AD43975A69D522C9BBF973465C2270EB67DD0C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3988471A2015D5CC894E22E1A900B66E97CD4306); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral39C2692DA901B66EB5530E3899C26FD34413E858); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C19E9456A591B7480BFD140A0016E01BC880976); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BD1D6F2500A903652036B29D6882FA865715A46); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50F42FA04A7512CEA891683F4BA8A38F5CEFD199); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51C6279E31F7483126B79E3000116001A915B690); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral648E7A40D2E5792A25DB368740E29C86157D8779); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral705E2E4DA8BAADF981F701A6C65423C725FAFCA4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A5D0DE73AB75C5B7EE6ABF1E2442A67D3A3746C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88B0F4492745F11C4B6C970B7204C62E64A1183E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB277B5B1CF7C3380602834A207C18657E7B8A9F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD131E029E531EEF793FBF0B4609AC73AD1F372F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBAA0AE1BC05CD8F3F881F4350A1BCAC87A11697); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC622F0B78799504E9F670AD20F9006F7BD480C1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA645ED4B07E7B41C211BD7FDE87069773914BF6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC1F7052057A1EC518E41F548AA4C5A4BA47C59D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29D7A474294CE305B3899F0EF058A660546CC77); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9AD03488C0FD2A5029083D5A67F58438C2A5CF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEF871D9D8BC4EA6B73BA76904D036DFA754981F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE234C34099947BE8BB6C958B450C81758FC6EC63); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8EF143FC12E1038D8EDB7C9DD16A495861FBC7B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4541B932FD6CC47E51779BE1ADC2CE3B2928831); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF68BE93499EBDA525EAB969E88B05907332F6184); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8); s_Il2CppMethodInitialized = true; } XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * V_0 = NULL; RuntimeObject* V_1 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_2 = NULL; RuntimeObject* V_3 = NULL; RuntimeObject* V_4 = NULL; DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_5; memset((&V_5), 0, sizeof(V_5)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_6 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_7 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_0, /*hidden argument*/NULL); ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->set_nameCache_0(L_0); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2; L_2 = Hashtable_Synchronized_m57834C6DB52C04CAC03792622B42881B15BB77A9(L_1, /*hidden argument*/NULL); ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->set_primitiveArrayTypes_2(L_2); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_4; L_4 = Hashtable_Synchronized_m57834C6DB52C04CAC03792622B42881B15BB77A9(L_3, /*hidden argument*/NULL); ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->set_nameCache_0(L_4); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_5 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast (Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7; L_7 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_6, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_8 = { reinterpret_cast (Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var) }; Type_t * L_9; L_9 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_8, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_10 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_10, L_9, _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490, (bool)1, /*hidden argument*/NULL); NullCheck(L_5); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_5, L_7, L_10); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_11 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_12 = { reinterpret_cast (Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var) }; Type_t * L_13; L_13 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_12, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_14 = { reinterpret_cast (Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var) }; Type_t * L_15; L_15 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_14, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_16 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_16, L_15, _stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7, (bool)1, /*hidden argument*/NULL); NullCheck(L_11); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_13, L_16); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_17 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast (UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var) }; Type_t * L_19; L_19 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_18, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_20 = { reinterpret_cast (UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var) }; Type_t * L_21; L_21 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_20, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_22 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_22, L_21, _stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3, (bool)1, /*hidden argument*/NULL); NullCheck(L_17); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_17, L_19, L_22); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_23 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_24 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; Type_t * L_25; L_25 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_24, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_26 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; Type_t * L_27; L_27 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_26, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_28 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_28, L_27, _stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72, (bool)1, /*hidden argument*/NULL); NullCheck(L_23); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_23, L_25, L_28); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_29 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_30 = { reinterpret_cast (UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var) }; Type_t * L_31; L_31 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_30, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_32 = { reinterpret_cast (UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var) }; Type_t * L_33; L_33 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_32, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_34 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_34, L_33, _stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88, (bool)1, /*hidden argument*/NULL); NullCheck(L_29); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_29, L_31, L_34); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_35 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_36 = { reinterpret_cast (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) }; Type_t * L_37; L_37 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_36, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_38 = { reinterpret_cast (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) }; Type_t * L_39; L_39 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_38, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_40 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_40, L_39, _stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7, (bool)1, /*hidden argument*/NULL); NullCheck(L_35); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_35, L_37, L_40); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_41 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_42 = { reinterpret_cast (UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var) }; Type_t * L_43; L_43 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_42, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_44 = { reinterpret_cast (UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var) }; Type_t * L_45; L_45 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_44, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_46 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_46, L_45, _stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7, (bool)1, /*hidden argument*/NULL); NullCheck(L_41); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_41, L_43, L_46); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_47 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_48 = { reinterpret_cast (Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var) }; Type_t * L_49; L_49 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_48, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_50 = { reinterpret_cast (Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var) }; Type_t * L_51; L_51 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_50, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_52 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_52, L_51, _stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29, (bool)1, /*hidden argument*/NULL); NullCheck(L_47); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_47, L_49, L_52); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_53 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_54 = { reinterpret_cast (Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var) }; Type_t * L_55; L_55 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_54, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_56 = { reinterpret_cast (Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var) }; Type_t * L_57; L_57 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_56, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_58 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_58, L_57, _stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8, (bool)1, /*hidden argument*/NULL); NullCheck(L_53); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_53, L_55, L_58); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_59 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_60 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; Type_t * L_61; L_61 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_60, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_62 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; Type_t * L_63; L_63 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_62, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_64 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_64, L_63, _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6, (bool)1, /*hidden argument*/NULL); NullCheck(L_59); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_59, L_61, L_64); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_65 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_66 = { reinterpret_cast (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var) }; Type_t * L_67; L_67 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_66, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_68 = { reinterpret_cast (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var) }; Type_t * L_69; L_69 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_68, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_70 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_70, L_69, _stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D, (bool)1, /*hidden argument*/NULL); NullCheck(L_65); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_65, L_67, L_70); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_71 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_72 = { reinterpret_cast (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var) }; Type_t * L_73; L_73 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_72, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_74 = { reinterpret_cast (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_0_0_0_var) }; Type_t * L_75; L_75 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_74, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_76 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_76, L_75, _stringLiteral88B0F4492745F11C4B6C970B7204C62E64A1183E, (bool)1, /*hidden argument*/NULL); NullCheck(L_71); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_71, L_73, L_76); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_77 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_78 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_79; L_79 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_78, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_80 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_81; L_81 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_80, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_82 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_82, L_81, _stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE, (bool)1, /*hidden argument*/NULL); NullCheck(L_77); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_77, L_79, L_82); XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * L_83 = (XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 *)il2cpp_codegen_object_new(XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193_il2cpp_TypeInfo_var); XmlSchemaPatternFacet__ctor_mE3A39F905BEBF1A514928F79E7949FE737D453BF(L_83, /*hidden argument*/NULL); V_0 = L_83; XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * L_84 = V_0; NullCheck(L_84); XmlSchemaFacet_set_Value_mF3322B22AE16FC04F69EE0FD145B95D806B1F7F0_inline(L_84, _stringLiteral0F351FFA0B5B35F215CCBDDE75840E380391AA2C, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_85 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_86 = { reinterpret_cast (Guid_t_0_0_0_var) }; Type_t * L_87; L_87 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_86, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_88 = { reinterpret_cast (Guid_t_0_0_0_var) }; Type_t * L_89; L_89 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_88, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_90 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_91 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_92; L_92 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_91, /*hidden argument*/NULL); NullCheck(L_90); RuntimeObject * L_93; L_93 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_90, L_92); XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * L_94 = V_0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_95 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931(L_95, L_89, _stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932, (bool)1, ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_93, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)), L_94, /*hidden argument*/NULL); NullCheck(L_85); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_85, L_87, L_95); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_96 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_97 = { reinterpret_cast (Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var) }; Type_t * L_98; L_98 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_97, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_99 = { reinterpret_cast (Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var) }; Type_t * L_100; L_100 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_99, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_101 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_101, L_100, _stringLiteralE234C34099947BE8BB6C958B450C81758FC6EC63, (bool)1, /*hidden argument*/NULL); NullCheck(L_96); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_96, L_98, L_101); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_102 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_103 = { reinterpret_cast (SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var) }; Type_t * L_104; L_104 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_103, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_105 = { reinterpret_cast (SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var) }; Type_t * L_106; L_106 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_105, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_107 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_107, L_106, _stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7, (bool)1, /*hidden argument*/NULL); NullCheck(L_102); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_102, L_104, L_107); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_108 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_109 = { reinterpret_cast (Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var) }; Type_t * L_110; L_110 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_109, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_111 = { reinterpret_cast (Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var) }; Type_t * L_112; L_112 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_111, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_113 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_114 = { reinterpret_cast (UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var) }; Type_t * L_115; L_115 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_114, /*hidden argument*/NULL); NullCheck(L_113); RuntimeObject * L_116; L_116 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_113, L_115); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_117 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m04A735DFAEA0E73993605A46675804AE74680931(L_117, L_112, _stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7, (bool)1, ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_116, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)), (XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 *)NULL, /*hidden argument*/NULL); NullCheck(L_108); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_108, L_110, L_117); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_118 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_119 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t * L_120; L_120 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_119, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_121 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t * L_122; L_122 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_121, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_123 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_123, L_122, _stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E, (bool)0, /*hidden argument*/NULL); NullCheck(L_118); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_118, L_120, L_123); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_124 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_125 = { reinterpret_cast (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var) }; Type_t * L_126; L_126 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_125, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_127 = { reinterpret_cast (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var) }; Type_t * L_128; L_128 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_127, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_129 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_129, L_128, _stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9, (bool)1, /*hidden argument*/NULL); NullCheck(L_124); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_124, L_126, L_129); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_130 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_131 = { reinterpret_cast (XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_0_0_0_var) }; Type_t * L_132; L_132 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_131, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_133 = { reinterpret_cast (XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_0_0_0_var) }; Type_t * L_134; L_134 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_133, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_135 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_135, L_134, _stringLiteral7A5D0DE73AB75C5B7EE6ABF1E2442A67D3A3746C, (bool)0, /*hidden argument*/NULL); NullCheck(L_130); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_130, L_132, L_135); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_136 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_137 = { reinterpret_cast (XmlElement_tF11C508FEEF5FBE169DCE4A7538BE55B1F0C4BCF_0_0_0_var) }; Type_t * L_138; L_138 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_137, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_139 = { reinterpret_cast (XmlElement_tF11C508FEEF5FBE169DCE4A7538BE55B1F0C4BCF_0_0_0_var) }; Type_t * L_140; L_140 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_139, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_141 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_141, L_140, _stringLiteral39C2692DA901B66EB5530E3899C26FD34413E858, (bool)0, /*hidden argument*/NULL); NullCheck(L_136); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_136, L_138, L_141); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_142 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_142, /*hidden argument*/NULL); ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->set_primitiveTypes_1(L_142); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_143 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); NullCheck(L_143); RuntimeObject* L_144; L_144 = VirtFuncInvoker0< RuntimeObject* >::Invoke(26 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_143); NullCheck(L_144); RuntimeObject* L_145; L_145 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_144); V_1 = L_145; } IL_03e4: try { // begin try (depth: 1) { goto IL_0403; } IL_03e6: { RuntimeObject* L_146 = V_1; NullCheck(L_146); RuntimeObject * L_147; L_147 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_146); V_2 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_147, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_148 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_149 = V_2; NullCheck(L_149); String_t* L_150; L_150 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_149, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_151 = V_2; NullCheck(L_148); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_148, L_150, L_151); } IL_0403: { RuntimeObject* L_152 = V_1; NullCheck(L_152); bool L_153; L_153 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_152); if (L_153) { goto IL_03e6; } } IL_040b: { IL2CPP_LEAVE(0x41E, FINALLY_040d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_040d; } FINALLY_040d: { // begin finally (depth: 1) { RuntimeObject* L_154 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_154, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_155 = V_3; if (!L_155) { goto IL_041d; } } IL_0417: { RuntimeObject* L_156 = V_3; NullCheck(L_156); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_156); } IL_041d: { IL2CPP_END_FINALLY(1037) } } // end finally (depth: 1) IL2CPP_CLEANUP(1037) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x41E, IL_041e) } IL_041e: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_157 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_158 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_159; L_159 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_158, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_160 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_160, L_159, _stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300, (bool)1, /*hidden argument*/NULL); NullCheck(L_157); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_157, _stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300, L_160); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_161 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_162 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; Type_t * L_163; L_163 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_162, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_164 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_164, L_163, _stringLiteral51C6279E31F7483126B79E3000116001A915B690, (bool)1, /*hidden argument*/NULL); NullCheck(L_161); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_161, _stringLiteral51C6279E31F7483126B79E3000116001A915B690, L_164); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_165 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_166 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; Type_t * L_167; L_167 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_166, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_168 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_168, L_167, _stringLiteralE8EF143FC12E1038D8EDB7C9DD16A495861FBC7B, (bool)1, /*hidden argument*/NULL); NullCheck(L_165); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_165, _stringLiteralE8EF143FC12E1038D8EDB7C9DD16A495861FBC7B, L_168); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_169 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_170 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_171; L_171 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_170, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_172 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_172, L_171, _stringLiteralAD131E029E531EEF793FBF0B4609AC73AD1F372F, (bool)1, /*hidden argument*/NULL); NullCheck(L_169); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_169, _stringLiteralAD131E029E531EEF793FBF0B4609AC73AD1F372F, L_172); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_173 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_174 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_175; L_175 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_174, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_176 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_176, L_175, _stringLiteralD29D7A474294CE305B3899F0EF058A660546CC77, (bool)1, /*hidden argument*/NULL); NullCheck(L_173); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_173, _stringLiteralD29D7A474294CE305B3899F0EF058A660546CC77, L_176); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_177 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_178 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_179; L_179 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_178, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_180 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_180, L_179, _stringLiteralAB277B5B1CF7C3380602834A207C18657E7B8A9F, (bool)1, /*hidden argument*/NULL); NullCheck(L_177); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_177, _stringLiteralAB277B5B1CF7C3380602834A207C18657E7B8A9F, L_180); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_181 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_182 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_183; L_183 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_182, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_184 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_184, L_183, _stringLiteralDEF871D9D8BC4EA6B73BA76904D036DFA754981F, (bool)1, /*hidden argument*/NULL); NullCheck(L_181); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_181, _stringLiteralDEF871D9D8BC4EA6B73BA76904D036DFA754981F, L_184); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_185 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_186 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; Type_t * L_187; L_187 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_186, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_188 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_188, L_187, _stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174, (bool)1, /*hidden argument*/NULL); NullCheck(L_185); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_185, _stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174, L_188); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_189 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_190 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_191; L_191 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_190, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_192 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_192, L_191, _stringLiteral2AD43975A69D522C9BBF973465C2270EB67DD0C6, (bool)1, /*hidden argument*/NULL); NullCheck(L_189); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_189, _stringLiteral2AD43975A69D522C9BBF973465C2270EB67DD0C6, L_192); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_193 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_194 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_195; L_195 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_194, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_196 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_196, L_195, _stringLiteralD9AD03488C0FD2A5029083D5A67F58438C2A5CF1, (bool)1, /*hidden argument*/NULL); NullCheck(L_193); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_193, _stringLiteralD9AD03488C0FD2A5029083D5A67F58438C2A5CF1, L_196); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_197 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_198 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_199; L_199 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_198, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_200 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_200, L_199, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, (bool)1, /*hidden argument*/NULL); NullCheck(L_197); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_197, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, L_200); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_201 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_202 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_203; L_203 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_202, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_204 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_204, L_203, _stringLiteral50F42FA04A7512CEA891683F4BA8A38F5CEFD199, (bool)1, /*hidden argument*/NULL); NullCheck(L_201); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_201, _stringLiteral50F42FA04A7512CEA891683F4BA8A38F5CEFD199, L_204); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_205 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_206 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_207; L_207 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_206, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_208 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_208, L_207, _stringLiteralCC1F7052057A1EC518E41F548AA4C5A4BA47C59D, (bool)1, /*hidden argument*/NULL); NullCheck(L_205); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_205, _stringLiteralCC1F7052057A1EC518E41F548AA4C5A4BA47C59D, L_208); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_209 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_210 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_211; L_211 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_210, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_212 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_212, L_211, _stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F, (bool)1, /*hidden argument*/NULL); NullCheck(L_209); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_209, _stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F, L_212); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_213 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_214 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_215; L_215 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_214, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_216 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_216, L_215, _stringLiteral265F3FB35B71A1769644CBC8A1BD32CE34B94D63, (bool)1, /*hidden argument*/NULL); NullCheck(L_213); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_213, _stringLiteral265F3FB35B71A1769644CBC8A1BD32CE34B94D63, L_216); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_217 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_218 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_219; L_219 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_218, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_220 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_220, L_219, _stringLiteral1E6F6A066E9C41521D9969E61D6F5F89615E3161, (bool)1, /*hidden argument*/NULL); NullCheck(L_217); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_217, _stringLiteral1E6F6A066E9C41521D9969E61D6F5F89615E3161, L_220); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_221 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_222 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_223; L_223 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_222, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_224 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_224, L_223, _stringLiteralCA645ED4B07E7B41C211BD7FDE87069773914BF6, (bool)1, /*hidden argument*/NULL); NullCheck(L_221); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_221, _stringLiteralCA645ED4B07E7B41C211BD7FDE87069773914BF6, L_224); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_225 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_226 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_227; L_227 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_226, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_228 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_228, L_227, _stringLiteralBBAA0AE1BC05CD8F3F881F4350A1BCAC87A11697, (bool)1, /*hidden argument*/NULL); NullCheck(L_225); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_225, _stringLiteralBBAA0AE1BC05CD8F3F881F4350A1BCAC87A11697, L_228); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_229 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_230 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_231; L_231 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_230, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_232 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_232, L_231, _stringLiteralF4541B932FD6CC47E51779BE1ADC2CE3B2928831, (bool)1, /*hidden argument*/NULL); NullCheck(L_229); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_229, _stringLiteralF4541B932FD6CC47E51779BE1ADC2CE3B2928831, L_232); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_233 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_234 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_235; L_235 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_234, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_236 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_236, L_235, _stringLiteral0797970A05214E4132EBF1E0E234C882D1DCD3C6, (bool)1, /*hidden argument*/NULL); NullCheck(L_233); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_233, _stringLiteral0797970A05214E4132EBF1E0E234C882D1DCD3C6, L_236); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_237 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_238 = { reinterpret_cast (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var) }; Type_t * L_239; L_239 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_238, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_240 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_240, L_239, _stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437, (bool)1, /*hidden argument*/NULL); NullCheck(L_237); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_237, _stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437, L_240); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_241 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_242 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_243; L_243 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_242, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_244 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_244, L_243, _stringLiteralF68BE93499EBDA525EAB969E88B05907332F6184, (bool)1, /*hidden argument*/NULL); NullCheck(L_241); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_241, _stringLiteralF68BE93499EBDA525EAB969E88B05907332F6184, L_244); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_245 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_246 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_247; L_247 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_246, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_248 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_248, L_247, _stringLiteral4BD1D6F2500A903652036B29D6882FA865715A46, (bool)1, /*hidden argument*/NULL); NullCheck(L_245); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_245, _stringLiteral4BD1D6F2500A903652036B29D6882FA865715A46, L_248); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_249 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_250 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_251; L_251 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_250, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_252 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_252, L_251, _stringLiteral648E7A40D2E5792A25DB368740E29C86157D8779, (bool)1, /*hidden argument*/NULL); NullCheck(L_249); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_249, _stringLiteral648E7A40D2E5792A25DB368740E29C86157D8779, L_252); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_253 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_254 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_255; L_255 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_254, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_256 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_256, L_255, _stringLiteral3C19E9456A591B7480BFD140A0016E01BC880976, (bool)1, /*hidden argument*/NULL); NullCheck(L_253); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_253, _stringLiteral3C19E9456A591B7480BFD140A0016E01BC880976, L_256); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_257 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_258 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_259; L_259 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_258, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_260 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_260, L_259, _stringLiteral3988471A2015D5CC894E22E1A900B66E97CD4306, (bool)1, /*hidden argument*/NULL); NullCheck(L_257); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_257, _stringLiteral3988471A2015D5CC894E22E1A900B66E97CD4306, L_260); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_261 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_262 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_263; L_263 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_262, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_264 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_264, L_263, _stringLiteral705E2E4DA8BAADF981F701A6C65423C725FAFCA4, (bool)1, /*hidden argument*/NULL); NullCheck(L_261); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_261, _stringLiteral705E2E4DA8BAADF981F701A6C65423C725FAFCA4, L_264); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_265 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_266 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_267; L_267 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_266, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_268 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_268, L_267, _stringLiteralC622F0B78799504E9F670AD20F9006F7BD480C1D, (bool)1, /*hidden argument*/NULL); NullCheck(L_265); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_265, _stringLiteralC622F0B78799504E9F670AD20F9006F7BD480C1D, L_268); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_269 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_270 = { reinterpret_cast (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var) }; Type_t * L_271; L_271 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_270, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_272 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_272, L_271, _stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8, (bool)1, /*hidden argument*/NULL); NullCheck(L_269); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_269, _stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8, L_272); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_273 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_274 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_275; L_275 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_274, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_276 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_276, L_275, _stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D, (bool)1, /*hidden argument*/NULL); NullCheck(L_273); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_273, _stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D, L_276); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_277 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_277, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_278; L_278 = Hashtable_Synchronized_m57834C6DB52C04CAC03792622B42881B15BB77A9(L_277, /*hidden argument*/NULL); ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->set_nullableTypes_3(L_278); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_279 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); NullCheck(L_279); RuntimeObject* L_280; L_280 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_279); V_4 = L_280; } IL_0871: try { // begin try (depth: 1) { goto IL_08c0; } IL_0873: { RuntimeObject* L_281 = V_4; NullCheck(L_281); RuntimeObject * L_282; L_282 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_281); V_5 = ((*(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_282, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var)))); RuntimeObject * L_283; L_283 = DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_5), /*hidden argument*/NULL); V_6 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_283, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_284 = V_6; NullCheck(L_284); Type_t * L_285; L_285 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_284, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_286 = V_6; NullCheck(L_286); String_t* L_287; L_287 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_286, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_288 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_288, L_285, L_287, (bool)1, /*hidden argument*/NULL); V_7 = L_288; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_289 = V_7; NullCheck(L_289); TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041_inline(L_289, (bool)1, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_290 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); RuntimeObject * L_291; L_291 = DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_5), /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_292 = V_7; NullCheck(L_290); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_290, L_291, L_292); } IL_08c0: { RuntimeObject* L_293 = V_4; NullCheck(L_293); bool L_294; L_294 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_293); if (L_294) { goto IL_0873; } } IL_08c9: { IL2CPP_LEAVE(0x8DD, FINALLY_08cb); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_08cb; } FINALLY_08cb: { // begin finally (depth: 1) { RuntimeObject* L_295 = V_4; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_295, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_296 = V_3; if (!L_296) { goto IL_08dc; } } IL_08d6: { RuntimeObject* L_297 = V_3; NullCheck(L_297); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_297); } IL_08dc: { IL2CPP_END_FINALLY(2251) } } // end finally (depth: 1) IL2CPP_CLEANUP(2251) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x8DD, IL_08dd) } IL_08dd: { return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_1; L_1 = TypeTranslator_GetTypeData_m34ECB131DF1502AA0C92FEFCDBB86D0192F486C2(L_0, (String_t*)NULL, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetTypeData_m34ECB131DF1502AA0C92FEFCDBB86D0192F486C2 (Type_t * ___runtimeType0, String_t* ___xmlDataType1, bool ___underlyingEnumType2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CodeIdentifier_t7A70E983581E6F31BA9725F69C524264DAB98814_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t4EDBE007AFFA0315135B9A508DACA62D3C201867_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral979269FAE9C4200527FC6CE07752015D148FBC2E); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; bool V_1 = false; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_2 = NULL; String_t* V_3 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_4 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_5 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_6 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_7 = NULL; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_8 = NULL; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_9 = NULL; int32_t V_10 = 0; Type_t * V_11 = NULL; String_t* G_B35_0 = NULL; String_t* G_B33_0 = NULL; String_t* G_B34_0 = NULL; String_t* G_B36_0 = NULL; String_t* G_B36_1 = NULL; { bool L_0 = ___underlyingEnumType2; if (!L_0) { goto IL_0013; } } { Type_t * L_1 = ___runtimeType0; NullCheck(L_1); bool L_2; L_2 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_IsEnum() */, L_1); if (!L_2) { goto IL_0013; } } { Type_t * L_3 = ___runtimeType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Enum_GetUnderlyingType_m380C0D0D93A7161EAB25F84B68BF263693C9361B(L_3, /*hidden argument*/NULL); ___runtimeType0 = L_4; } IL_0013: { Type_t * L_5 = ___runtimeType0; V_0 = L_5; V_1 = (bool)0; Type_t * L_6 = V_0; NullCheck(L_6); bool L_7; L_7 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_IsGenericType() */, L_6); if (!L_7) { goto IL_0041; } } { Type_t * L_8 = V_0; NullCheck(L_8); Type_t * L_9; L_9 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::GetGenericTypeDefinition() */, L_8); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast (Nullable_1_t4EDBE007AFFA0315135B9A508DACA62D3C201867_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11; L_11 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_10, /*hidden argument*/NULL); bool L_12; L_12 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_9, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0041; } } { V_1 = (bool)1; Type_t * L_13 = V_0; NullCheck(L_13); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_14; L_14 = VirtFuncInvoker0< TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(103 /* System.Type[] System.Type::GetGenericArguments() */, L_13); NullCheck(L_14); int32_t L_15 = 0; Type_t * L_16 = (L_14)->GetAt(static_cast(L_15)); V_0 = L_16; } IL_0041: { String_t* L_17 = ___xmlDataType1; if (!L_17) { goto IL_014f; } } { String_t* L_18 = ___xmlDataType1; NullCheck(L_18); int32_t L_19; L_19 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_014f; } } { String_t* L_20 = ___xmlDataType1; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_21; L_21 = TypeTranslator_GetPrimitiveTypeData_m9714FB6747FA5A512BC4AAD4AC62F3173455DC7F(L_20, /*hidden argument*/NULL); V_4 = L_21; Type_t * L_22 = V_0; NullCheck(L_22); bool L_23; L_23 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_00ff; } } { Type_t * L_24 = V_0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_25 = V_4; NullCheck(L_25); Type_t * L_26; L_26 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_27; L_27 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_24, L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00ff; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_28 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveArrayTypes_2(); String_t* L_29 = ___xmlDataType1; NullCheck(L_28); RuntimeObject * L_30; L_30 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_28, L_29); V_5 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_30, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_31 = V_5; if (!L_31) { goto IL_0090; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_32 = V_5; return L_32; } IL_0090: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_33 = V_4; NullCheck(L_33); Type_t * L_34; L_34 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_33, /*hidden argument*/NULL); Type_t * L_35 = V_0; NullCheck(L_35); Type_t * L_36; L_36 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetElementType() */, L_35); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_37; L_37 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_34, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_00c9; } } { Type_t * L_38 = V_0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_39 = V_4; NullCheck(L_39); String_t* L_40; L_40 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_39, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); String_t* L_41; L_41 = TypeTranslator_GetArrayName_mC21C9EA401D0CD4F6BA9EAAA0E10FD99C5B5AA04(L_40, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_42 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_42, L_38, L_41, (bool)0, /*hidden argument*/NULL); V_5 = L_42; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_43 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveArrayTypes_2(); String_t* L_44 = ___xmlDataType1; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_45 = V_5; NullCheck(L_43); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_43, L_44, L_45); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_46 = V_5; return L_46; } IL_00c9: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_47 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_48 = L_47; NullCheck(L_48); ArrayElementTypeCheck (L_48, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1DE54C9A1703F01C21264B713072AE50B7C6215))); (L_48)->SetAt(static_cast(0), (RuntimeObject *)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1DE54C9A1703F01C21264B713072AE50B7C6215))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_49 = L_48; Type_t * L_50 = V_0; NullCheck(L_50); Type_t * L_51; L_51 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetElementType() */, L_50); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_51); (L_49)->SetAt(static_cast(1), (RuntimeObject *)L_51); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_52 = L_49; NullCheck(L_52); ArrayElementTypeCheck (L_52, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B1E6C4760A8F1324F6412ACD9FD8DB27D1E9151))); (L_52)->SetAt(static_cast(2), (RuntimeObject *)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B1E6C4760A8F1324F6412ACD9FD8DB27D1E9151))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_53 = L_52; String_t* L_54 = ___xmlDataType1; NullCheck(L_53); ArrayElementTypeCheck (L_53, L_54); (L_53)->SetAt(static_cast(3), (RuntimeObject *)L_54); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_55 = L_53; NullCheck(L_55); ArrayElementTypeCheck (L_55, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D))); (L_55)->SetAt(static_cast(4), (RuntimeObject *)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D))); String_t* L_56; L_56 = String_Concat_mCA053C6F9F80091150799BA7B4EDE7E4A3262E77(L_55, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_57 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_57, L_56, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_57, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeTranslator_GetTypeData_m34ECB131DF1502AA0C92FEFCDBB86D0192F486C2_RuntimeMethod_var))); } IL_00ff: { bool L_58 = V_1; if (!L_58) { goto IL_014c; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_59 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_60 = V_4; NullCheck(L_60); String_t* L_61; L_61 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_60, /*hidden argument*/NULL); NullCheck(L_59); RuntimeObject * L_62; L_62 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_59, L_61); V_6 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_62, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_63 = V_6; if (L_63) { goto IL_0149; } } { Type_t * L_64 = V_0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_65 = V_4; NullCheck(L_65); String_t* L_66; L_66 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_65, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_67 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_67, L_64, L_66, (bool)0, /*hidden argument*/NULL); V_6 = L_67; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_68 = V_6; NullCheck(L_68); TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041_inline(L_68, (bool)1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_69 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_70 = V_4; NullCheck(L_70); String_t* L_71; L_71 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_70, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_72 = V_6; NullCheck(L_69); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_69, L_71, L_72); } IL_0149: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_73 = V_6; return L_73; } IL_014c: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_74 = V_4; return L_74; } IL_014f: { bool L_75 = V_1; if (!L_75) { goto IL_01a8; } } { Type_t * L_76 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_77; L_77 = TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84(L_76, /*hidden argument*/NULL); V_7 = L_77; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_78 = V_7; if (!L_78) { goto IL_01a8; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_79 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_80 = V_7; NullCheck(L_80); String_t* L_81; L_81 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_80, /*hidden argument*/NULL); NullCheck(L_79); RuntimeObject * L_82; L_82 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_79, L_81); V_8 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_82, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_83 = V_8; if (L_83) { goto IL_01a5; } } { Type_t * L_84 = V_0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_85 = V_7; NullCheck(L_85); String_t* L_86; L_86 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_85, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_87 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_87, L_84, L_86, (bool)0, /*hidden argument*/NULL); V_8 = L_87; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_88 = V_8; NullCheck(L_88); TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041_inline(L_88, (bool)1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_89 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_90 = V_7; NullCheck(L_90); String_t* L_91; L_91 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_90, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_92 = V_8; NullCheck(L_89); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_89, L_91, L_92); } IL_01a5: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_93 = V_8; return L_93; } IL_01a8: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_94 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); Type_t * L_95 = ___runtimeType0; NullCheck(L_94); RuntimeObject * L_96; L_96 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_94, L_95); V_2 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)IsInstClass((RuntimeObject*)L_96, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_97 = V_2; if (!L_97) { goto IL_01be; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_98 = V_2; return L_98; } IL_01be: { Type_t * L_99 = V_0; NullCheck(L_99); bool L_100; L_100 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_99, /*hidden argument*/NULL); if (!L_100) { goto IL_01e1; } } { Type_t * L_101 = V_0; NullCheck(L_101); Type_t * L_102; L_102 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetElementType() */, L_101); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_103; L_103 = TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84(L_102, /*hidden argument*/NULL); NullCheck(L_103); String_t* L_104; L_104 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_103, /*hidden argument*/NULL); String_t* L_105; L_105 = TypeTranslator_GetArrayName_mC21C9EA401D0CD4F6BA9EAAA0E10FD99C5B5AA04(L_104, /*hidden argument*/NULL); V_3 = L_105; goto IL_0288; } IL_01e1: { Type_t * L_106 = V_0; NullCheck(L_106); bool L_107; L_107 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_IsGenericType() */, L_106); if (!L_107) { goto IL_027c; } } { Type_t * L_108 = V_0; NullCheck(L_108); bool L_109; L_109 = VirtFuncInvoker0< bool >::Invoke(79 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_108); if (L_109) { goto IL_027c; } } { Type_t * L_110 = V_0; NullCheck(L_110); String_t* L_111; L_111 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_110); Type_t * L_112 = V_0; NullCheck(L_112); String_t* L_113; L_113 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_112); NullCheck(L_113); int32_t L_114; L_114 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_113, ((int32_t)96), /*hidden argument*/NULL); NullCheck(L_111); String_t* L_115; L_115 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_111, 0, L_114, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_116; L_116 = XmlConvert_EncodeLocalName_m4E9F61061594C6D2D4BF25AF107C7208C0E6AD2E(L_115, /*hidden argument*/NULL); String_t* L_117; L_117 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_116, _stringLiteral979269FAE9C4200527FC6CE07752015D148FBC2E, /*hidden argument*/NULL); V_3 = L_117; Type_t * L_118 = V_0; NullCheck(L_118); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_119; L_119 = VirtFuncInvoker0< TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(103 /* System.Type[] System.Type::GetGenericArguments() */, L_118); V_9 = L_119; V_10 = 0; goto IL_0272; } IL_022d: { TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_120 = V_9; int32_t L_121 = V_10; NullCheck(L_120); int32_t L_122 = L_121; Type_t * L_123 = (L_120)->GetAt(static_cast(L_122)); V_11 = L_123; String_t* L_124 = V_3; Type_t * L_125 = V_11; NullCheck(L_125); bool L_126; L_126 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_125, /*hidden argument*/NULL); G_B33_0 = L_124; if (L_126) { G_B35_0 = L_124; goto IL_025a; } } { Type_t * L_127 = V_11; NullCheck(L_127); bool L_128; L_128 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_IsGenericType() */, L_127); G_B34_0 = G_B33_0; if (L_128) { G_B35_0 = G_B33_0; goto IL_025a; } } { Type_t * L_129 = V_11; NullCheck(L_129); String_t* L_130; L_130 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_129); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_131; L_131 = XmlConvert_EncodeLocalName_m4E9F61061594C6D2D4BF25AF107C7208C0E6AD2E(L_130, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CodeIdentifier_t7A70E983581E6F31BA9725F69C524264DAB98814_il2cpp_TypeInfo_var); String_t* L_132; L_132 = CodeIdentifier_MakePascal_m6D1153E6F5123974F96BAE4DBE08B3942142013E(L_131, /*hidden argument*/NULL); G_B36_0 = L_132; G_B36_1 = G_B34_0; goto IL_0266; } IL_025a: { Type_t * L_133 = V_11; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_134; L_134 = TypeTranslator_GetTypeData_mCCF6ACBDA188128044B25420124E8A2CD0885E84(L_133, /*hidden argument*/NULL); NullCheck(L_134); String_t* L_135; L_135 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_134, /*hidden argument*/NULL); G_B36_0 = L_135; G_B36_1 = G_B35_0; } IL_0266: { String_t* L_136; L_136 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B36_1, G_B36_0, /*hidden argument*/NULL); V_3 = L_136; int32_t L_137 = V_10; V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_137, (int32_t)1)); } IL_0272: { int32_t L_138 = V_10; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_139 = V_9; NullCheck(L_139); if ((((int32_t)L_138) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_139)->max_length)))))) { goto IL_022d; } } { goto IL_0288; } IL_027c: { Type_t * L_140 = V_0; NullCheck(L_140); String_t* L_141; L_141 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_140); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_142; L_142 = XmlConvert_EncodeLocalName_m4E9F61061594C6D2D4BF25AF107C7208C0E6AD2E(L_141, /*hidden argument*/NULL); V_3 = L_142; } IL_0288: { Type_t * L_143 = V_0; String_t* L_144 = V_3; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_145 = (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)il2cpp_codegen_object_new(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); TypeData__ctor_m573135E137A11AE3E05CC36AB222252F0FB2F765(L_145, L_143, L_144, (bool)0, /*hidden argument*/NULL); V_2 = L_145; bool L_146 = V_1; if (!L_146) { goto IL_029b; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_147 = V_2; NullCheck(L_147); TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041_inline(L_147, (bool)1, /*hidden argument*/NULL); } IL_029b: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_148 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nameCache_0(); Type_t * L_149 = ___runtimeType0; TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_150 = V_2; NullCheck(L_148); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_148, L_149, L_150); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_151 = V_2; return L_151; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetPrimitiveTypeData_m9714FB6747FA5A512BC4AAD4AC62F3173455DC7F (String_t* ___typeName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___typeName0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_1; L_1 = TypeTranslator_GetPrimitiveTypeData_mC96665826943DFE7C0E86BF37FD8AE2AF6FDFA39(L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_GetPrimitiveTypeData_mC96665826943DFE7C0E86BF37FD8AE2AF6FDFA39 (String_t* ___typeName0, bool ___nullable1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * V_0 = NULL; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * G_B7_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); String_t* L_1 = ___typeName0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); V_0 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_2, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_3 = V_0; if (!L_3) { goto IL_0023; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_4 = V_0; NullCheck(L_4); Type_t * L_5; L_5 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_4, /*hidden argument*/NULL); NullCheck(L_5); bool L_6; L_6 = Type_get_IsValueType_m9CCCB4759C2D5A890096F8DBA66DAAEFE9D913FB(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0023; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_7 = V_0; return L_7; } IL_0023: { bool L_8 = ___nullable1; if (!L_8) { goto IL_002d; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_9 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); if (L_9) { goto IL_0034; } } IL_002d: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_10 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); G_B7_0 = L_10; goto IL_0039; } IL_0034: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_11 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_nullableTypes_3(); G_B7_0 = L_11; } IL_0039: { String_t* L_12 = ___typeName0; NullCheck(G_B7_0); RuntimeObject * L_13; L_13 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, G_B7_0, L_12); V_0 = ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_13, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_14 = V_0; if (L_14) { goto IL_005e; } } { String_t* L_15 = ___typeName0; String_t* L_16; L_16 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB5D4739359E1E35BC7089600BD8DE3A87DC8D592)), L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBBBBDA89EC0528F6EC13A6F6C534B63E3F363875)), /*hidden argument*/NULL); NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_17 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeTranslator_GetPrimitiveTypeData_mC96665826943DFE7C0E86BF37FD8AE2AF6FDFA39_RuntimeMethod_var))); } IL_005e: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_18 = V_0; return L_18; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::FindPrimitiveTypeData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * TypeTranslator_FindPrimitiveTypeData_mD1E1989500DA779CC1C81F6921E2E7A537A88079 (String_t* ___typeName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_tD677CF48AA9DAA878956B5D298806AE033FEEC73_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); String_t* L_1 = ___typeName0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); return ((TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)CastclassClass((RuntimeObject*)L_2, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_il2cpp_TypeInfo_var)); } } // System.String System.Xml.Serialization.TypeTranslator::GetArrayName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeTranslator_GetArrayName_mC21C9EA401D0CD4F6BA9EAAA0E10FD99C5B5AA04 (String_t* ___elemName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF01DC26A8B96F38F1947CC6D755E59C842307C8); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { String_t* L_0 = ___elemName0; NullCheck(L_0); Il2CppChar L_1; L_1 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2; L_2 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_3; L_3 = Char_ToUpper_mD923BBB6358B8F00DA930B66E3E90DC74D6EF8E3(L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; String_t* L_4; L_4 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); String_t* L_5 = ___elemName0; NullCheck(L_5); String_t* L_6; L_6 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_5, 1, /*hidden argument*/NULL); String_t* L_7; L_7 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(_stringLiteralBF01DC26A8B96F38F1947CC6D755E59C842307C8, L_4, L_6, /*hidden argument*/NULL); return L_7; } } // System.Void System.Xml.Serialization.TypeTranslator::ParseArrayType(System.String,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeTranslator_ParseArrayType_m1459847CBB1E5C0C403916B7AB40E1C415B37920 (String_t* ___arrayType0, String_t** ___type1, String_t** ___ns2, String_t** ___dimensions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { String_t* L_0 = ___arrayType0; NullCheck(L_0); int32_t L_1; L_1 = String_LastIndexOf_m80AFBEF2F3857F9D6A67126F4C4D9A9B9CEC5902(L_0, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_0019; } } { String_t** L_3 = ___ns2; *((RuntimeObject **)L_3) = (RuntimeObject *)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); goto IL_0023; } IL_0019: { String_t** L_4 = ___ns2; String_t* L_5 = ___arrayType0; int32_t L_6 = V_0; NullCheck(L_5); String_t* L_7; L_7 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_5, 0, L_6, /*hidden argument*/NULL); *((RuntimeObject **)L_4) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)L_7); } IL_0023: { String_t* L_8 = ___arrayType0; int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10; L_10 = String_IndexOf_m9037DBF7895B78147B9F5931DA0AA9D2CBD8C3F0(L_8, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL); V_1 = L_10; int32_t L_11 = V_1; if ((!(((uint32_t)L_11) == ((uint32_t)(-1))))) { goto IL_0047; } } { String_t* L_12 = ___arrayType0; String_t* L_13; L_13 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B8E450EF4850368DBB2EFCF325F11F608FFD24C)), L_12, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_14 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TypeTranslator_ParseArrayType_m1459847CBB1E5C0C403916B7AB40E1C415B37920_RuntimeMethod_var))); } IL_0047: { String_t** L_15 = ___type1; String_t* L_16 = ___arrayType0; int32_t L_17 = V_0; int32_t L_18 = V_1; int32_t L_19 = V_0; NullCheck(L_16); String_t* L_20; L_20 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_16, ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), (int32_t)1)), /*hidden argument*/NULL); *((RuntimeObject **)L_15) = (RuntimeObject *)L_20; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_15, (void*)(RuntimeObject *)L_20); String_t** L_21 = ___dimensions3; String_t* L_22 = ___arrayType0; int32_t L_23 = V_1; NullCheck(L_22); String_t* L_24; L_24 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_22, L_23, /*hidden argument*/NULL); *((RuntimeObject **)L_21) = (RuntimeObject *)L_24; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_21, (void*)(RuntimeObject *)L_24); 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.Xml.UTF16Decoder::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF16Decoder__ctor_m3FEE8A11E34E84E86E8FF3B2670F5477A68E44B9 (UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4 * __this, bool ___bigEndian0, const RuntimeMethod* method) { { Decoder__ctor_m2EA154371203FAAE1CD0477C828E0B39B2091DF3(__this, /*hidden argument*/NULL); __this->set_lastByte_3((-1)); bool L_0 = ___bigEndian0; __this->set_bigEndian_2(L_0); return; } } // System.Int32 System.Xml.UTF16Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UTF16Decoder_GetCharCount_m48E4D32DD844A39E8C73C41EECF93A80AB4D5077 (UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___bytes0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; int32_t L_3; L_3 = VirtFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, bool >::Invoke(6 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) */, __this, L_0, L_1, L_2, (bool)0); return L_3; } } // System.Int32 System.Xml.UTF16Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UTF16Decoder_GetCharCount_m61272138BC9505C01E304C25B14645B190DB8DFE (UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___index1, int32_t ___count2, bool ___flush3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B2_0 = 0; int32_t G_B1_0 = 0; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; { int32_t L_0 = ___count2; int32_t L_1 = __this->get_lastByte_3(); G_B1_0 = L_0; if ((((int32_t)L_1) >= ((int32_t)0))) { G_B2_0 = L_0; goto IL_000d; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; goto IL_000e; } IL_000d: { G_B3_0 = 1; G_B3_1 = G_B2_0; } IL_000e: { V_0 = ((int32_t)il2cpp_codegen_add((int32_t)G_B3_1, (int32_t)G_B3_0)); bool L_2 = ___flush3; if (!L_2) { goto IL_0039; } } { int32_t L_3 = V_0; if (!((int32_t)((int32_t)L_3%(int32_t)2))) { goto IL_0039; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_4; int32_t L_6 = (-1); RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_6); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast(0), (RuntimeObject *)L_7); String_t* L_8; L_8 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF927B4144C20383150FDF84829FBD896D179787)), L_5, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_9, L_8, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UTF16Decoder_GetCharCount_m61272138BC9505C01E304C25B14645B190DB8DFE_RuntimeMethod_var))); } IL_0039: { int32_t L_10 = V_0; return ((int32_t)((int32_t)L_10/(int32_t)2)); } } // System.Int32 System.Xml.UTF16Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UTF16Decoder_GetChars_m16D38A8448F5B8918C354EDBDBAD9E92E8ACEC9D (UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_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 G_B5_0 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B5_1 = NULL; int32_t G_B4_0 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B4_1 = NULL; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B6_2 = NULL; { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___bytes0; int32_t L_1 = ___byteIndex1; int32_t L_2 = ___byteCount2; int32_t L_3; L_3 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2); V_0 = L_3; int32_t L_4 = __this->get_lastByte_3(); if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0057; } } { int32_t L_5 = ___byteCount2; if (L_5) { goto IL_0018; } } { int32_t L_6 = V_0; return L_6; } IL_0018: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ___bytes0; int32_t L_8 = ___byteIndex1; int32_t L_9 = L_8; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); NullCheck(L_7); int32_t L_10 = L_9; uint8_t L_11 = (L_7)->GetAt(static_cast(L_10)); V_1 = L_11; int32_t L_12 = ___byteCount2; ___byteCount2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_13 = ___chars3; int32_t L_14 = ___charIndex4; int32_t L_15 = L_14; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); bool L_16 = __this->get_bigEndian_2(); G_B4_0 = L_15; G_B4_1 = L_13; if (L_16) { G_B5_0 = L_15; G_B5_1 = L_13; goto IL_0044; } } { int32_t L_17 = V_1; int32_t L_18 = __this->get_lastByte_3(); G_B6_0 = ((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_17<<(int32_t)8))|(int32_t)L_18)))); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; goto IL_004f; } IL_0044: { int32_t L_19 = __this->get_lastByte_3(); int32_t L_20 = V_1; G_B6_0 = ((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19<<(int32_t)8))|(int32_t)L_20)))); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; } IL_004f: { NullCheck(G_B6_2); (G_B6_2)->SetAt(static_cast(G_B6_1), (Il2CppChar)G_B6_0); __this->set_lastByte_3((-1)); } IL_0057: { int32_t L_21 = ___byteCount2; if (!((int32_t)((int32_t)L_21&(int32_t)1))) { goto IL_006c; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = ___bytes0; int32_t L_23 = ___byteIndex1; int32_t L_24 = ___byteCount2; int32_t L_25 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); ___byteCount2 = L_25; NullCheck(L_22); int32_t L_26 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)L_25)); uint8_t L_27 = (L_22)->GetAt(static_cast(L_26)); __this->set_lastByte_3(L_27); } IL_006c: { bool L_28 = __this->get_bigEndian_2(); IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var); bool L_29 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0(); if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { goto IL_00dd; } } { int32_t L_30 = ___byteIndex1; int32_t L_31 = ___byteCount2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)); bool L_32 = __this->get_bigEndian_2(); if (!L_32) { goto IL_00d7; } } { goto IL_00ab; } IL_0087: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_33 = ___bytes0; int32_t L_34 = ___byteIndex1; int32_t L_35 = L_34; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); NullCheck(L_33); int32_t L_36 = L_35; uint8_t L_37 = (L_33)->GetAt(static_cast(L_36)); V_3 = L_37; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_38 = ___bytes0; int32_t L_39 = ___byteIndex1; int32_t L_40 = L_39; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); NullCheck(L_38); int32_t L_41 = L_40; uint8_t L_42 = (L_38)->GetAt(static_cast(L_41)); V_4 = L_42; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_43 = ___chars3; int32_t L_44 = ___charIndex4; int32_t L_45 = L_44; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1)); int32_t L_46 = V_3; int32_t L_47 = V_4; NullCheck(L_43); (L_43)->SetAt(static_cast(L_45), (Il2CppChar)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_46<<(int32_t)8))|(int32_t)L_47))))); } IL_00ab: { int32_t L_48 = ___byteIndex1; int32_t L_49 = V_2; if ((((int32_t)L_48) < ((int32_t)L_49))) { goto IL_0087; } } { goto IL_00eb; } IL_00b1: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_50 = ___bytes0; int32_t L_51 = ___byteIndex1; int32_t L_52 = L_51; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1)); NullCheck(L_50); int32_t L_53 = L_52; uint8_t L_54 = (L_50)->GetAt(static_cast(L_53)); V_5 = L_54; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_55 = ___bytes0; int32_t L_56 = ___byteIndex1; int32_t L_57 = L_56; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1)); NullCheck(L_55); int32_t L_58 = L_57; uint8_t L_59 = (L_55)->GetAt(static_cast(L_58)); V_6 = L_59; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_60 = ___chars3; int32_t L_61 = ___charIndex4; int32_t L_62 = L_61; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)); int32_t L_63 = V_6; int32_t L_64 = V_5; NullCheck(L_60); (L_60)->SetAt(static_cast(L_62), (Il2CppChar)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_63<<(int32_t)8))|(int32_t)L_64))))); } IL_00d7: { int32_t L_65 = ___byteIndex1; int32_t L_66 = V_2; if ((((int32_t)L_65) < ((int32_t)L_66))) { goto IL_00b1; } } { goto IL_00eb; } IL_00dd: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_67 = ___bytes0; int32_t L_68 = ___byteIndex1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_69 = ___chars3; int32_t L_70 = ___charIndex4; int32_t L_71 = ___byteCount2; Buffer_BlockCopy_mF4642D7BB69FA7570F69E323F4597A2166065612((RuntimeArray *)(RuntimeArray *)L_67, L_68, (RuntimeArray *)(RuntimeArray *)L_69, ((int32_t)il2cpp_codegen_multiply((int32_t)L_70, (int32_t)2)), L_71, /*hidden argument*/NULL); } IL_00eb: { int32_t L_72 = V_0; return L_72; } } // System.Void System.Xml.UTF16Decoder::Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF16Decoder_Convert_mB77179518015230CE8629158BC14700AB95677C5 (UTF16Decoder_tED77395ADA08EB3DA24122941C05DA02EA6F19E4 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, int32_t ___charCount5, bool ___flush6, int32_t* ___bytesUsed7, int32_t* ___charsUsed8, bool* ___completed9, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_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 G_B5_0 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B5_1 = NULL; int32_t G_B4_0 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B4_1 = NULL; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B6_2 = NULL; { int32_t* L_0 = ___charsUsed8; *((int32_t*)L_0) = (int32_t)0; int32_t* L_1 = ___bytesUsed7; *((int32_t*)L_1) = (int32_t)0; int32_t L_2 = __this->get_lastByte_3(); if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_006e; } } { int32_t L_3 = ___byteCount2; if (L_3) { goto IL_0019; } } { bool* L_4 = ___completed9; *((int8_t*)L_4) = (int8_t)1; return; } IL_0019: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___bytes0; int32_t L_6 = ___byteIndex1; int32_t L_7 = L_6; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); NullCheck(L_5); int32_t L_8 = L_7; uint8_t L_9 = (L_5)->GetAt(static_cast(L_8)); V_0 = L_9; int32_t L_10 = ___byteCount2; ___byteCount2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); int32_t* L_11 = ___bytesUsed7; int32_t* L_12 = ___bytesUsed7; int32_t L_13 = *((int32_t*)L_12); *((int32_t*)L_11) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_14 = ___chars3; int32_t L_15 = ___charIndex4; int32_t L_16 = L_15; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); bool L_17 = __this->get_bigEndian_2(); G_B4_0 = L_16; G_B4_1 = L_14; if (L_17) { G_B5_0 = L_16; G_B5_1 = L_14; goto IL_004d; } } { int32_t L_18 = V_0; int32_t L_19 = __this->get_lastByte_3(); G_B6_0 = ((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_18<<(int32_t)8))|(int32_t)L_19)))); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; goto IL_0058; } IL_004d: { int32_t L_20 = __this->get_lastByte_3(); int32_t L_21 = V_0; G_B6_0 = ((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_20<<(int32_t)8))|(int32_t)L_21)))); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; } IL_0058: { NullCheck(G_B6_2); (G_B6_2)->SetAt(static_cast(G_B6_1), (Il2CppChar)G_B6_0); int32_t L_22 = ___charCount5; ___charCount5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)); int32_t* L_23 = ___charsUsed8; int32_t* L_24 = ___charsUsed8; int32_t L_25 = *((int32_t*)L_24); *((int32_t*)L_23) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); __this->set_lastByte_3((-1)); } IL_006e: { int32_t L_26 = ___charCount5; int32_t L_27 = ___byteCount2; if ((((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_26, (int32_t)2))) >= ((int32_t)L_27))) { goto IL_0081; } } { int32_t L_28 = ___charCount5; ___byteCount2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)2)); bool* L_29 = ___completed9; *((int8_t*)L_29) = (int8_t)0; goto IL_0085; } IL_0081: { bool* L_30 = ___completed9; *((int8_t*)L_30) = (int8_t)1; } IL_0085: { bool L_31 = __this->get_bigEndian_2(); IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var); bool L_32 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0(); if ((!(((uint32_t)L_31) == ((uint32_t)L_32)))) { goto IL_00f7; } } { int32_t L_33 = ___byteIndex1; V_1 = L_33; int32_t L_34 = V_1; int32_t L_35 = ___byteCount2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)((int32_t)((int32_t)L_35&(int32_t)((int32_t)-2))))); bool L_36 = __this->get_bigEndian_2(); if (!L_36) { goto IL_00f1; } } { goto IL_00c7; } IL_00a5: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_37 = ___bytes0; int32_t L_38 = V_1; int32_t L_39 = L_38; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); NullCheck(L_37); int32_t L_40 = L_39; uint8_t L_41 = (L_37)->GetAt(static_cast(L_40)); V_3 = L_41; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_42 = ___bytes0; int32_t L_43 = V_1; int32_t L_44 = L_43; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); NullCheck(L_42); int32_t L_45 = L_44; uint8_t L_46 = (L_42)->GetAt(static_cast(L_45)); V_4 = L_46; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_47 = ___chars3; int32_t L_48 = ___charIndex4; int32_t L_49 = L_48; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)); int32_t L_50 = V_3; int32_t L_51 = V_4; NullCheck(L_47); (L_47)->SetAt(static_cast(L_49), (Il2CppChar)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_50<<(int32_t)8))|(int32_t)L_51))))); } IL_00c7: { int32_t L_52 = V_1; int32_t L_53 = V_2; if ((((int32_t)L_52) < ((int32_t)L_53))) { goto IL_00a5; } } { goto IL_0108; } IL_00cd: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_54 = ___bytes0; int32_t L_55 = V_1; int32_t L_56 = L_55; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); NullCheck(L_54); int32_t L_57 = L_56; uint8_t L_58 = (L_54)->GetAt(static_cast(L_57)); V_5 = L_58; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_59 = ___bytes0; int32_t L_60 = V_1; int32_t L_61 = L_60; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1)); NullCheck(L_59); int32_t L_62 = L_61; uint8_t L_63 = (L_59)->GetAt(static_cast(L_62)); V_6 = L_63; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_64 = ___chars3; int32_t L_65 = ___charIndex4; int32_t L_66 = L_65; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); int32_t L_67 = V_6; int32_t L_68 = V_5; NullCheck(L_64); (L_64)->SetAt(static_cast(L_66), (Il2CppChar)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_67<<(int32_t)8))|(int32_t)L_68))))); } IL_00f1: { int32_t L_69 = V_1; int32_t L_70 = V_2; if ((((int32_t)L_69) < ((int32_t)L_70))) { goto IL_00cd; } } { goto IL_0108; } IL_00f7: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_71 = ___bytes0; int32_t L_72 = ___byteIndex1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_73 = ___chars3; int32_t L_74 = ___charIndex4; int32_t L_75 = ___byteCount2; Buffer_BlockCopy_mF4642D7BB69FA7570F69E323F4597A2166065612((RuntimeArray *)(RuntimeArray *)L_71, L_72, (RuntimeArray *)(RuntimeArray *)L_73, ((int32_t)il2cpp_codegen_multiply((int32_t)L_74, (int32_t)2)), ((int32_t)((int32_t)L_75&(int32_t)((int32_t)-2))), /*hidden argument*/NULL); } IL_0108: { int32_t* L_76 = ___charsUsed8; int32_t* L_77 = ___charsUsed8; int32_t L_78 = *((int32_t*)L_77); int32_t L_79 = ___byteCount2; *((int32_t*)L_76) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)((int32_t)((int32_t)L_79/(int32_t)2)))); int32_t* L_80 = ___bytesUsed7; int32_t* L_81 = ___bytesUsed7; int32_t L_82 = *((int32_t*)L_81); int32_t L_83 = ___byteCount2; *((int32_t*)L_80) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_82, (int32_t)L_83)); int32_t L_84 = ___byteCount2; if (!((int32_t)((int32_t)L_84&(int32_t)1))) { goto IL_012c; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_85 = ___bytes0; int32_t L_86 = ___byteIndex1; int32_t L_87 = ___byteCount2; NullCheck(L_85); int32_t L_88 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)L_87)), (int32_t)1)); uint8_t L_89 = (L_85)->GetAt(static_cast(L_88)); __this->set_lastByte_3(L_89); } IL_012c: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Xml.Ucs4Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Decoder_GetCharCount_m26A092AF8EDCC5A69C8ABB02EF53FD5F79FB9202 (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { int32_t L_0 = ___count2; int32_t L_1 = __this->get_lastBytesCount_3(); return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))/(int32_t)4)); } } // System.Int32 System.Xml.Ucs4Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Decoder_GetChars_mFAED299AADD2AE47B56B6D4F876851742B80A7BE (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = __this->get_lastBytesCount_3(); V_0 = L_0; int32_t L_1 = __this->get_lastBytesCount_3(); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0074; } } { goto IL_003a; } IL_0012: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_lastBytes_2(); int32_t L_3 = __this->get_lastBytesCount_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___bytes0; int32_t L_5 = ___byteIndex1; NullCheck(L_4); int32_t L_6 = L_5; uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); NullCheck(L_2); (L_2)->SetAt(static_cast(L_3), (uint8_t)L_7); int32_t L_8 = ___byteIndex1; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); int32_t L_9 = ___byteCount2; ___byteCount2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); int32_t L_10 = __this->get_lastBytesCount_3(); __this->set_lastBytesCount_3(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); } IL_003a: { int32_t L_11 = __this->get_lastBytesCount_3(); if ((((int32_t)L_11) >= ((int32_t)4))) { goto IL_0047; } } { int32_t L_12 = ___byteCount2; if ((((int32_t)L_12) > ((int32_t)0))) { goto IL_0012; } } IL_0047: { int32_t L_13 = __this->get_lastBytesCount_3(); if ((((int32_t)L_13) >= ((int32_t)4))) { goto IL_0052; } } { return 0; } IL_0052: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get_lastBytes_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_15 = ___chars3; int32_t L_16 = ___charIndex4; int32_t L_17; L_17 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t >::Invoke(13 /* System.Int32 System.Xml.Ucs4Decoder::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_14, 0, 4, L_15, L_16); V_0 = L_17; int32_t L_18 = ___charIndex4; int32_t L_19 = V_0; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)); __this->set_lastBytesCount_3(0); goto IL_0076; } IL_0074: { V_0 = 0; } IL_0076: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = ___bytes0; int32_t L_21 = ___byteIndex1; int32_t L_22 = ___byteCount2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_23 = ___chars3; int32_t L_24 = ___charIndex4; int32_t L_25; L_25 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t >::Invoke(13 /* System.Int32 System.Xml.Ucs4Decoder::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_20, L_21, L_22, L_23, L_24); int32_t L_26 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)); int32_t L_27 = ___byteCount2; V_1 = ((int32_t)((int32_t)L_27&(int32_t)3)); int32_t L_28 = V_1; if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00b2; } } { V_2 = 0; goto IL_00a7; } IL_0092: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_lastBytes_2(); int32_t L_30 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_31 = ___bytes0; int32_t L_32 = ___byteIndex1; int32_t L_33 = ___byteCount2; int32_t L_34 = V_1; int32_t L_35 = V_2; NullCheck(L_31); int32_t L_36 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), (int32_t)L_34)), (int32_t)L_35)); uint8_t L_37 = (L_31)->GetAt(static_cast(L_36)); NullCheck(L_29); (L_29)->SetAt(static_cast(L_30), (uint8_t)L_37); int32_t L_38 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); } IL_00a7: { int32_t L_39 = V_2; int32_t L_40 = V_1; if ((((int32_t)L_39) < ((int32_t)L_40))) { goto IL_0092; } } { int32_t L_41 = V_1; __this->set_lastBytesCount_3(L_41); } IL_00b2: { int32_t L_42 = V_0; return L_42; } } // System.Void System.Xml.Ucs4Decoder::Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder_Convert_m4779A8B8E15A9CEB671C2CC6C87F27140FECB1CB (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, int32_t ___charCount5, bool ___flush6, int32_t* ___bytesUsed7, int32_t* ___charsUsed8, bool* ___completed9, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { int32_t* L_0 = ___bytesUsed7; *((int32_t*)L_0) = (int32_t)0; int32_t* L_1 = ___charsUsed8; *((int32_t*)L_1) = (int32_t)0; V_0 = 0; int32_t L_2 = __this->get_lastBytesCount_3(); V_1 = L_2; int32_t L_3 = V_1; if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_0086; } } { goto IL_0038; } IL_0017: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_lastBytes_2(); int32_t L_5 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___bytes0; int32_t L_7 = ___byteIndex1; NullCheck(L_6); int32_t L_8 = L_7; uint8_t L_9 = (L_6)->GetAt(static_cast(L_8)); NullCheck(L_4); (L_4)->SetAt(static_cast(L_5), (uint8_t)L_9); int32_t L_10 = ___byteIndex1; ___byteIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); int32_t L_11 = ___byteCount2; ___byteCount2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)); int32_t* L_12 = ___bytesUsed7; int32_t* L_13 = ___bytesUsed7; int32_t L_14 = *((int32_t*)L_13); *((int32_t*)L_12) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); int32_t L_15 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0038: { int32_t L_16 = V_1; if ((((int32_t)L_16) >= ((int32_t)4))) { goto IL_0040; } } { int32_t L_17 = ___byteCount2; if ((((int32_t)L_17) > ((int32_t)0))) { goto IL_0017; } } IL_0040: { int32_t L_18 = V_1; if ((((int32_t)L_18) >= ((int32_t)4))) { goto IL_0050; } } { int32_t L_19 = V_1; __this->set_lastBytesCount_3(L_19); bool* L_20 = ___completed9; *((int8_t*)L_20) = (int8_t)1; return; } IL_0050: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = __this->get_lastBytes_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_22 = ___chars3; int32_t L_23 = ___charIndex4; int32_t L_24; L_24 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t >::Invoke(13 /* System.Int32 System.Xml.Ucs4Decoder::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_21, 0, 4, L_22, L_23); V_0 = L_24; int32_t L_25 = ___charIndex4; int32_t L_26 = V_0; ___charIndex4 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)); int32_t L_27 = ___charCount5; int32_t L_28 = V_0; ___charCount5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)); int32_t* L_29 = ___charsUsed8; int32_t L_30 = V_0; *((int32_t*)L_29) = (int32_t)L_30; __this->set_lastBytesCount_3(0); int32_t L_31 = ___charCount5; if (L_31) { goto IL_0088; } } { bool* L_32 = ___completed9; int32_t L_33 = ___byteCount2; *((int8_t*)L_32) = (int8_t)((((int32_t)L_33) == ((int32_t)0))? 1 : 0); return; } IL_0086: { V_0 = 0; } IL_0088: { int32_t L_34 = ___charCount5; int32_t L_35 = ___byteCount2; if ((((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_34, (int32_t)4))) >= ((int32_t)L_35))) { goto IL_009b; } } { int32_t L_36 = ___charCount5; ___byteCount2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_36, (int32_t)4)); bool* L_37 = ___completed9; *((int8_t*)L_37) = (int8_t)0; goto IL_009f; } IL_009b: { bool* L_38 = ___completed9; *((int8_t*)L_38) = (int8_t)1; } IL_009f: { int32_t* L_39 = ___bytesUsed7; int32_t* L_40 = ___bytesUsed7; int32_t L_41 = *((int32_t*)L_40); int32_t L_42 = ___byteCount2; *((int32_t*)L_39) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)); int32_t* L_43 = ___charsUsed8; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_44 = ___bytes0; int32_t L_45 = ___byteIndex1; int32_t L_46 = ___byteCount2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_47 = ___chars3; int32_t L_48 = ___charIndex4; int32_t L_49; L_49 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t >::Invoke(13 /* System.Int32 System.Xml.Ucs4Decoder::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_44, L_45, L_46, L_47, L_48); int32_t L_50 = V_0; *((int32_t*)L_43) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)L_50)); int32_t L_51 = ___byteCount2; V_2 = ((int32_t)((int32_t)L_51&(int32_t)3)); int32_t L_52 = V_2; if ((((int32_t)L_52) < ((int32_t)0))) { goto IL_00e5; } } { V_3 = 0; goto IL_00da; } IL_00c5: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_53 = __this->get_lastBytes_2(); int32_t L_54 = V_3; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_55 = ___bytes0; int32_t L_56 = ___byteIndex1; int32_t L_57 = ___byteCount2; int32_t L_58 = V_2; int32_t L_59 = V_3; NullCheck(L_55); int32_t L_60 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)L_57)), (int32_t)L_58)), (int32_t)L_59)); uint8_t L_61 = (L_55)->GetAt(static_cast(L_60)); NullCheck(L_53); (L_53)->SetAt(static_cast(L_54), (uint8_t)L_61); int32_t L_62 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)); } IL_00da: { int32_t L_63 = V_3; int32_t L_64 = V_2; if ((((int32_t)L_63) < ((int32_t)L_64))) { goto IL_00c5; } } { int32_t L_65 = V_2; __this->set_lastBytesCount_3(L_65); } IL_00e5: { return; } } // System.Void System.Xml.Ucs4Decoder::Ucs4ToUTF16(System.UInt32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder_Ucs4ToUTF16_m9DBB1B66CD71FA059BA01DDD51C58286E4922AB8 (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, uint32_t ___code0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars1, int32_t ___charIndex2, const RuntimeMethod* method) { { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___chars1; int32_t L_1 = ___charIndex2; uint32_t L_2 = ___code0; uint32_t L_3 = ___code0; NullCheck(L_0); (L_0)->SetAt(static_cast(L_1), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)55296), (int32_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((uint32_t)L_2>>((int32_t)16))), (int32_t)1)))))), (int32_t)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((uint32_t)L_3>>((int32_t)10)))&(int32_t)((int32_t)63)))))))))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = ___chars1; int32_t L_5 = ___charIndex2; uint32_t L_6 = ___code0; NullCheck(L_4); (L_4)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)56320), (int32_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)1023)))))))))); return; } } // System.Void System.Xml.Ucs4Decoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder__ctor_mB9136F3F542FBADADED61B63DBEAD7C3E08BAEBA (Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); __this->set_lastBytes_2(L_0); Decoder__ctor_m2EA154371203FAAE1CD0477C828E0B39B2091DF3(__this, /*hidden argument*/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.Int32 System.Xml.Ucs4Decoder1234::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Decoder1234_GetFullChars_m417E203046FC359AEF31071D76B35AAF9BC1CF70 (Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { uint32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___byteCount2; int32_t L_1 = ___byteIndex1; ___byteCount2 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___byteIndex1; V_1 = L_2; int32_t L_3 = ___charIndex4; V_2 = L_3; goto IL_0093; } IL_000f: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___bytes0; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = L_5; uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___bytes0; int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___bytes0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)2)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___bytes0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)3)); uint8_t L_19 = (L_16)->GetAt(static_cast(L_18)); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_11<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)L_19)); uint32_t L_20 = V_0; if ((!(((uint32_t)L_20) > ((uint32_t)((int32_t)1114111))))) { goto IL_0055; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = L_21; int32_t L_23 = V_1; int32_t L_24 = L_23; RuntimeObject * L_25 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast(0), (RuntimeObject *)L_25); String_t* L_26; L_26 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF927B4144C20383150FDF84829FBD896D179787)), L_22, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_27 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_27, L_26, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder1234_GetFullChars_m417E203046FC359AEF31071D76B35AAF9BC1CF70_RuntimeMethod_var))); } IL_0055: { uint32_t L_28 = V_0; if ((!(((uint32_t)L_28) > ((uint32_t)((int32_t)65535))))) { goto IL_006d; } } { uint32_t L_29 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = ___chars3; int32_t L_31 = V_2; Ucs4Decoder_Ucs4ToUTF16_m9DBB1B66CD71FA059BA01DDD51C58286E4922AB8(__this, L_29, L_30, L_31, /*hidden argument*/NULL); int32_t L_32 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); goto IL_008b; } IL_006d: { uint32_t L_33 = V_0; bool L_34; L_34 = XmlCharType_IsSurrogate_mB6D0E39FCA4F99B3CE602DC06A45C4C781178F26(L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0085; } } { String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_36 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292)), L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder1234_GetFullChars_m417E203046FC359AEF31071D76B35AAF9BC1CF70_RuntimeMethod_var))); } IL_0085: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_37 = ___chars3; int32_t L_38 = V_2; uint32_t L_39 = V_0; NullCheck(L_37); (L_37)->SetAt(static_cast(L_38), (Il2CppChar)((int32_t)((uint16_t)L_39))); } IL_008b: { int32_t L_40 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); int32_t L_41 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)4)); } IL_0093: { int32_t L_42 = V_1; int32_t L_43 = ___byteCount2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3))) < ((int32_t)L_43))) { goto IL_000f; } } { int32_t L_44 = V_2; int32_t L_45 = ___charIndex4; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_45)); } } // System.Void System.Xml.Ucs4Decoder1234::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder1234__ctor_m892D84F747B69F6A4CCA23AF167C1DACEAB2FCD2 (Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E * __this, const RuntimeMethod* method) { { Ucs4Decoder__ctor_mB9136F3F542FBADADED61B63DBEAD7C3E08BAEBA(__this, /*hidden argument*/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.Int32 System.Xml.Ucs4Decoder2143::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Decoder2143_GetFullChars_m64657C52D59FE42469C95B6AA3EB1621C753D9B1 (Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { uint32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___byteCount2; int32_t L_1 = ___byteIndex1; ___byteCount2 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___byteIndex1; V_1 = L_2; int32_t L_3 = ___charIndex4; V_2 = L_3; goto IL_0093; } IL_000f: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___bytes0; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___bytes0; int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___bytes0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)3)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___bytes0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)2)); uint8_t L_19 = (L_16)->GetAt(static_cast(L_18)); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_11<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)L_19)); uint32_t L_20 = V_0; if ((!(((uint32_t)L_20) > ((uint32_t)((int32_t)1114111))))) { goto IL_0055; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = L_21; int32_t L_23 = V_1; int32_t L_24 = L_23; RuntimeObject * L_25 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast(0), (RuntimeObject *)L_25); String_t* L_26; L_26 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF927B4144C20383150FDF84829FBD896D179787)), L_22, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_27 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_27, L_26, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder2143_GetFullChars_m64657C52D59FE42469C95B6AA3EB1621C753D9B1_RuntimeMethod_var))); } IL_0055: { uint32_t L_28 = V_0; if ((!(((uint32_t)L_28) > ((uint32_t)((int32_t)65535))))) { goto IL_006d; } } { uint32_t L_29 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = ___chars3; int32_t L_31 = V_2; Ucs4Decoder_Ucs4ToUTF16_m9DBB1B66CD71FA059BA01DDD51C58286E4922AB8(__this, L_29, L_30, L_31, /*hidden argument*/NULL); int32_t L_32 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); goto IL_008b; } IL_006d: { uint32_t L_33 = V_0; bool L_34; L_34 = XmlCharType_IsSurrogate_mB6D0E39FCA4F99B3CE602DC06A45C4C781178F26(L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0085; } } { String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_36 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292)), L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder2143_GetFullChars_m64657C52D59FE42469C95B6AA3EB1621C753D9B1_RuntimeMethod_var))); } IL_0085: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_37 = ___chars3; int32_t L_38 = V_2; uint32_t L_39 = V_0; NullCheck(L_37); (L_37)->SetAt(static_cast(L_38), (Il2CppChar)((int32_t)((uint16_t)L_39))); } IL_008b: { int32_t L_40 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); int32_t L_41 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)4)); } IL_0093: { int32_t L_42 = V_1; int32_t L_43 = ___byteCount2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3))) < ((int32_t)L_43))) { goto IL_000f; } } { int32_t L_44 = V_2; int32_t L_45 = ___charIndex4; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_45)); } } // System.Void System.Xml.Ucs4Decoder2143::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder2143__ctor_mCBC9B33A129D6A6AFFCDE7CD1D259124693C677D (Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098 * __this, const RuntimeMethod* method) { { Ucs4Decoder__ctor_mB9136F3F542FBADADED61B63DBEAD7C3E08BAEBA(__this, /*hidden argument*/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.Int32 System.Xml.Ucs4Decoder3412::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Decoder3412_GetFullChars_m97832889707DA6CBA62C3A964F521165AC4E9B65 (Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { uint32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___byteCount2; int32_t L_1 = ___byteIndex1; ___byteCount2 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___byteIndex1; V_1 = L_2; int32_t L_3 = ___charIndex4; V_2 = L_3; goto IL_0093; } IL_000f: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___bytes0; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)2)); uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___bytes0; int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)3)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___bytes0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = L_13; uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___bytes0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); uint8_t L_19 = (L_16)->GetAt(static_cast(L_18)); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_11<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)L_19)); uint32_t L_20 = V_0; if ((!(((uint32_t)L_20) > ((uint32_t)((int32_t)1114111))))) { goto IL_0055; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = L_21; int32_t L_23 = V_1; int32_t L_24 = L_23; RuntimeObject * L_25 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast(0), (RuntimeObject *)L_25); String_t* L_26; L_26 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF927B4144C20383150FDF84829FBD896D179787)), L_22, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_27 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_27, L_26, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder3412_GetFullChars_m97832889707DA6CBA62C3A964F521165AC4E9B65_RuntimeMethod_var))); } IL_0055: { uint32_t L_28 = V_0; if ((!(((uint32_t)L_28) > ((uint32_t)((int32_t)65535))))) { goto IL_006d; } } { uint32_t L_29 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = ___chars3; int32_t L_31 = V_2; Ucs4Decoder_Ucs4ToUTF16_m9DBB1B66CD71FA059BA01DDD51C58286E4922AB8(__this, L_29, L_30, L_31, /*hidden argument*/NULL); int32_t L_32 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); goto IL_008b; } IL_006d: { uint32_t L_33 = V_0; bool L_34; L_34 = XmlCharType_IsSurrogate_mB6D0E39FCA4F99B3CE602DC06A45C4C781178F26(L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0085; } } { String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_36 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292)), L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder3412_GetFullChars_m97832889707DA6CBA62C3A964F521165AC4E9B65_RuntimeMethod_var))); } IL_0085: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_37 = ___chars3; int32_t L_38 = V_2; uint32_t L_39 = V_0; NullCheck(L_37); (L_37)->SetAt(static_cast(L_38), (Il2CppChar)((int32_t)((uint16_t)L_39))); } IL_008b: { int32_t L_40 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); int32_t L_41 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)4)); } IL_0093: { int32_t L_42 = V_1; int32_t L_43 = ___byteCount2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3))) < ((int32_t)L_43))) { goto IL_000f; } } { int32_t L_44 = V_2; int32_t L_45 = ___charIndex4; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_45)); } } // System.Void System.Xml.Ucs4Decoder3412::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder3412__ctor_mC07067ED582F180F43F8ADD007CE2295B387D24E (Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928 * __this, const RuntimeMethod* method) { { Ucs4Decoder__ctor_mB9136F3F542FBADADED61B63DBEAD7C3E08BAEBA(__this, /*hidden argument*/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.Int32 System.Xml.Ucs4Decoder4321::GetFullChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Decoder4321_GetFullChars_m97A1B59D2A0586C88D58A96592FA3D30034088B9 (Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { uint32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___byteCount2; int32_t L_1 = ___byteIndex1; ___byteCount2 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___byteIndex1; V_1 = L_2; int32_t L_3 = ___charIndex4; V_2 = L_3; goto IL_0093; } IL_000f: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___bytes0; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)3)); uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___bytes0; int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)2)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___bytes0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___bytes0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = L_17; uint8_t L_19 = (L_16)->GetAt(static_cast(L_18)); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_11<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)L_19)); uint32_t L_20 = V_0; if ((!(((uint32_t)L_20) > ((uint32_t)((int32_t)1114111))))) { goto IL_0055; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = L_21; int32_t L_23 = V_1; int32_t L_24 = L_23; RuntimeObject * L_25 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast(0), (RuntimeObject *)L_25); String_t* L_26; L_26 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF927B4144C20383150FDF84829FBD896D179787)), L_22, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_27 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_27, L_26, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder4321_GetFullChars_m97A1B59D2A0586C88D58A96592FA3D30034088B9_RuntimeMethod_var))); } IL_0055: { uint32_t L_28 = V_0; if ((!(((uint32_t)L_28) > ((uint32_t)((int32_t)65535))))) { goto IL_006d; } } { uint32_t L_29 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = ___chars3; int32_t L_31 = V_2; Ucs4Decoder_Ucs4ToUTF16_m9DBB1B66CD71FA059BA01DDD51C58286E4922AB8(__this, L_29, L_30, L_31, /*hidden argument*/NULL); int32_t L_32 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); goto IL_008b; } IL_006d: { uint32_t L_33 = V_0; bool L_34; L_34 = XmlCharType_IsSurrogate_mB6D0E39FCA4F99B3CE602DC06A45C4C781178F26(L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0085; } } { String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_36 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292)), L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Ucs4Decoder4321_GetFullChars_m97A1B59D2A0586C88D58A96592FA3D30034088B9_RuntimeMethod_var))); } IL_0085: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_37 = ___chars3; int32_t L_38 = V_2; uint32_t L_39 = V_0; NullCheck(L_37); (L_37)->SetAt(static_cast(L_38), (Il2CppChar)((int32_t)((uint16_t)L_39))); } IL_008b: { int32_t L_40 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); int32_t L_41 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)4)); } IL_0093: { int32_t L_42 = V_1; int32_t L_43 = ___byteCount2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3))) < ((int32_t)L_43))) { goto IL_000f; } } { int32_t L_44 = V_2; int32_t L_45 = ___charIndex4; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_45)); } } // System.Void System.Xml.Ucs4Decoder4321::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Decoder4321__ctor_mDFBC3853402070B4F3914FC81F3AB814FCECF309 (Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2 * __this, const RuntimeMethod* method) { { Ucs4Decoder__ctor_mB9136F3F542FBADADED61B63DBEAD7C3E08BAEBA(__this, /*hidden argument*/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.String System.Xml.Ucs4Encoding::get_WebName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Ucs4Encoding_get_WebName_mB05F4B11AA3AE176C4C4F166E426BCCB400DEB17 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Text.Encoding::get_EncodingName() */, __this); return L_0; } } // System.Text.Decoder System.Xml.Ucs4Encoding::GetDecoder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * Ucs4Encoding_GetDecoder_m8AAEB5DBCEAED2FC329BF4288E4D01B020413F01 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, const RuntimeMethod* method) { { Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * L_0 = __this->get_ucs4Decoder_16(); return L_0; } } // System.Int32 System.Xml.Ucs4Encoding::GetByteCount(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_GetByteCount_mAD24C5C660223A39CB8F6DD2A416BF5159E915C4 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Encoding_GetByteCount_mAD24C5C660223A39CB8F6DD2A416BF5159E915C4_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___count2; if (((int64_t)L_0 * (int64_t)4 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_0 * (int64_t)4 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Ucs4Encoding_GetByteCount_mAD24C5C660223A39CB8F6DD2A416BF5159E915C4_RuntimeMethod_var); return ((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)4)); } } // System.Byte[] System.Xml.Ucs4Encoding::GetBytes(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Ucs4Encoding_GetBytes_m30BCBE089742110ADA6C227829738494B85E931C (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, String_t* ___s0, const RuntimeMethod* method) { { return (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; } } // System.Int32 System.Xml.Ucs4Encoding::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_GetBytes_mED37EA9DD651688C5BBECA99455A0D25C974C984 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes3, int32_t ___byteIndex4, const RuntimeMethod* method) { { return 0; } } // System.Int32 System.Xml.Ucs4Encoding::GetMaxByteCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_GetMaxByteCount_mDE4194EE833200240CA3F93762B277D39CC86B7C (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, int32_t ___charCount0, const RuntimeMethod* method) { { return 0; } } // System.Int32 System.Xml.Ucs4Encoding::GetCharCount(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_GetCharCount_m95BE4342A3522DFC45F08298599CD690A6513331 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * L_0 = __this->get_ucs4Decoder_16(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___bytes0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); int32_t L_4; L_4 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return L_4; } } // System.Int32 System.Xml.Ucs4Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_GetChars_m1D732229FCEBB83D8364E3B393131DF1B2675E5C (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method) { { Ucs4Decoder_t4435DAD13F530EF8CB3E9CC22BA2E21A9C41872F * L_0 = __this->get_ucs4Decoder_16(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___bytes0; int32_t L_2 = ___byteIndex1; int32_t L_3 = ___byteCount2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = ___chars3; int32_t L_5 = ___charIndex4; NullCheck(L_0); int32_t L_6; L_6 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_0, L_1, L_2, L_3, L_4, L_5); return L_6; } } // System.Int32 System.Xml.Ucs4Encoding::GetMaxCharCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_GetMaxCharCount_m6CA10AD462EF2462D42B885EB6DC700ECFABB172 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, int32_t ___byteCount0, const RuntimeMethod* method) { { int32_t L_0 = ___byteCount0; return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)3))/(int32_t)4)); } } // System.Int32 System.Xml.Ucs4Encoding::get_CodePage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Ucs4Encoding_get_CodePage_m4B9A6128FE7632220A764B7C249751AC1A000217 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, const RuntimeMethod* method) { { return 0; } } // System.Text.Encoder System.Xml.Ucs4Encoding::GetEncoder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * Ucs4Encoding_GetEncoder_m440802712489C3F7482A29111F915C0396625ABC (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, const RuntimeMethod* method) { { return (Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A *)NULL; } } // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_Littleendian() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Ucs4Encoding_get_UCS4_Littleendian_m9B18DBFC6730E84C757CE652761439FFE23E5B40 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF * L_0 = (Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF *)il2cpp_codegen_object_new(Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF_il2cpp_TypeInfo_var); Ucs4Encoding4321__ctor_m6FE9E4158C582ECCD83190F4A145271F267E06E7(L_0, /*hidden argument*/NULL); return L_0; } } // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_Bigendian() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Ucs4Encoding_get_UCS4_Bigendian_mB67A9C299619F4E711D63AFC066F05247353EB66 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 * L_0 = (Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 *)il2cpp_codegen_object_new(Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796_il2cpp_TypeInfo_var); Ucs4Encoding1234__ctor_m1BBE17B53C80BE7658946E89FFBE0BBBF1BA9245(L_0, /*hidden argument*/NULL); return L_0; } } // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_2143() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Ucs4Encoding_get_UCS4_2143_mCD28694AEFD4B7B841BD26712E5503427FBBFF7B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 * L_0 = (Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 *)il2cpp_codegen_object_new(Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523_il2cpp_TypeInfo_var); Ucs4Encoding2143__ctor_m97C45FB12823AE9078895D277C417066A25C1E04(L_0, /*hidden argument*/NULL); return L_0; } } // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_3412() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Ucs4Encoding_get_UCS4_3412_m70FF69635C4BCCE18ED51D153CE4027768EBC59A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 * L_0 = (Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 *)il2cpp_codegen_object_new(Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49_il2cpp_TypeInfo_var); Ucs4Encoding3412__ctor_m0BDB645EB5718ACFBDB14F2F856FF1D16CE4557B(L_0, /*hidden argument*/NULL); return L_0; } } // System.Void System.Xml.Ucs4Encoding::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding__ctor_mEE2AB2DF497A7DAD0FFA297473707E4844C2E221 (Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 * __this, const RuntimeMethod* method) { { Encoding__ctor_m15FCA8A670950CE09DEEC683791C856E8EA28980(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Ucs4Encoding1234::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding1234__ctor_m1BBE17B53C80BE7658946E89FFBE0BBBF1BA9245 (Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding__ctor_mEE2AB2DF497A7DAD0FFA297473707E4844C2E221(__this, /*hidden argument*/NULL); Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E * L_0 = (Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E *)il2cpp_codegen_object_new(Ucs4Decoder1234_tD48A82812428CB4EEBEC3FB34722B4E661EE1B8E_il2cpp_TypeInfo_var); Ucs4Decoder1234__ctor_m892D84F747B69F6A4CCA23AF167C1DACEAB2FCD2(L_0, /*hidden argument*/NULL); ((Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 *)__this)->set_ucs4Decoder_16(L_0); return; } } // System.String System.Xml.Ucs4Encoding1234::get_EncodingName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Ucs4Encoding1234_get_EncodingName_m9BA11EE3872F2C3F174AB797E5541334690F9988 (Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26C143611F9279917294CC9139984B17E0479D09); s_Il2CppMethodInitialized = true; } { return _stringLiteral26C143611F9279917294CC9139984B17E0479D09; } } // System.Byte[] System.Xml.Ucs4Encoding1234::GetPreamble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Ucs4Encoding1234_GetPreamble_m5CC9E6D81B878C3CEE5F29E0C191D40941A520BD (Ucs4Encoding1234_tE855AE52DAAF3627750F7B9AD17317323A1BE796 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast(2), (uint8_t)((int32_t)254)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(3), (uint8_t)((int32_t)255)); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Ucs4Encoding2143::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding2143__ctor_m97C45FB12823AE9078895D277C417066A25C1E04 (Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding__ctor_mEE2AB2DF497A7DAD0FFA297473707E4844C2E221(__this, /*hidden argument*/NULL); Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098 * L_0 = (Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098 *)il2cpp_codegen_object_new(Ucs4Decoder2143_t3C67D5B1733AFA4D5F74DB4E3E71058CAD257098_il2cpp_TypeInfo_var); Ucs4Decoder2143__ctor_mCBC9B33A129D6A6AFFCDE7CD1D259124693C677D(L_0, /*hidden argument*/NULL); ((Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 *)__this)->set_ucs4Decoder_16(L_0); return; } } // System.String System.Xml.Ucs4Encoding2143::get_EncodingName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Ucs4Encoding2143_get_EncodingName_m60553AA1F61C2A749B8F0D5F8CA581BBAD4BFB6A (Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral281B4DD577192A2270A89228DB0EF4FCD056C5A1); s_Il2CppMethodInitialized = true; } { return _stringLiteral281B4DD577192A2270A89228DB0EF4FCD056C5A1; } } // System.Byte[] System.Xml.Ucs4Encoding2143::GetPreamble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Ucs4Encoding2143_GetPreamble_mADB9158850D56C36D4D9F7B9041A3369B58DB1B9 (Ucs4Encoding2143_tE4D784EF2A26E04E10CDFBC41D89D16CE6F88523 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast(2), (uint8_t)((int32_t)255)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(3), (uint8_t)((int32_t)254)); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Ucs4Encoding3412::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding3412__ctor_m0BDB645EB5718ACFBDB14F2F856FF1D16CE4557B (Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding__ctor_mEE2AB2DF497A7DAD0FFA297473707E4844C2E221(__this, /*hidden argument*/NULL); Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928 * L_0 = (Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928 *)il2cpp_codegen_object_new(Ucs4Decoder3412_t2774F6799208469C8EBFDEC31D64E2DC44A09928_il2cpp_TypeInfo_var); Ucs4Decoder3412__ctor_mC07067ED582F180F43F8ADD007CE2295B387D24E(L_0, /*hidden argument*/NULL); ((Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 *)__this)->set_ucs4Decoder_16(L_0); return; } } // System.String System.Xml.Ucs4Encoding3412::get_EncodingName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Ucs4Encoding3412_get_EncodingName_mB521203175C81E7DAAB05D63E866F556AA289DD1 (Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00722598CA6BA1F0518997F2B785CD56427AB1F1); s_Il2CppMethodInitialized = true; } { return _stringLiteral00722598CA6BA1F0518997F2B785CD56427AB1F1; } } // System.Byte[] System.Xml.Ucs4Encoding3412::GetPreamble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Ucs4Encoding3412_GetPreamble_m5FB7513516ECE82C912623DC2E8F9CCADFE97C07 (Ucs4Encoding3412_tBD395F8CFFC56B3A82D044C5CECEF17386BE3B49 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (uint8_t)((int32_t)254)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(1), (uint8_t)((int32_t)255)); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Ucs4Encoding4321::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ucs4Encoding4321__ctor_m6FE9E4158C582ECCD83190F4A145271F267E06E7 (Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Ucs4Encoding__ctor_mEE2AB2DF497A7DAD0FFA297473707E4844C2E221(__this, /*hidden argument*/NULL); Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2 * L_0 = (Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2 *)il2cpp_codegen_object_new(Ucs4Decoder4321_t912A1FA42B698C8DFEEA8C63C6FF2412612D46C2_il2cpp_TypeInfo_var); Ucs4Decoder4321__ctor_mDFBC3853402070B4F3914FC81F3AB814FCECF309(L_0, /*hidden argument*/NULL); ((Ucs4Encoding_tA26F4CA75AEBAD525FB94E7C30B3B83A61CB7F07 *)__this)->set_ucs4Decoder_16(L_0); return; } } // System.String System.Xml.Ucs4Encoding4321::get_EncodingName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Ucs4Encoding4321_get_EncodingName_m0968650BF4C0EB64A1436438C891D3B70C31B140 (Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F); s_Il2CppMethodInitialized = true; } { return _stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F; } } // System.Byte[] System.Xml.Ucs4Encoding4321::GetPreamble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Ucs4Encoding4321_GetPreamble_mC3339F0CBAFC95CC3CD8C8C99EDC7003A6DCE1AE (Ucs4Encoding4321_t61CD79DBA91477B6C6423E1EC5A8A39A278415BF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (uint8_t)((int32_t)255)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(1), (uint8_t)((int32_t)254)); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception System.Xml.Schema.UnionFacetsChecker::CheckValueFacets(System.Object,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * UnionFacetsChecker_CheckValueFacets_m3DCD4B38870301A39BFC4B6797646F70F9603DB8 (UnionFacetsChecker_tEF317EAC017FEA555E5C3A2F347A2B5C3A2857D0 * __this, RuntimeObject * ___value0, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype1, 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*)&XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367); s_Il2CppMethodInitialized = true; } RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * V_0 = NULL; int32_t G_B3_0 = 0; { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype1; NullCheck(L_0); RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_1; L_1 = VirtFuncInvoker0< RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * >::Invoke(10 /* System.Xml.Schema.RestrictionFacets System.Xml.Schema.XmlSchemaDatatype::get_Restriction() */, L_0); V_0 = L_1; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_2 = V_0; if (L_2) { goto IL_000d; } } { G_B3_0 = 0; goto IL_0013; } IL_000d: { RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_Flags_12(); G_B3_0 = ((int32_t)(L_4)); } IL_0013: { if (!((int32_t)((int32_t)G_B3_0&(int32_t)((int32_t)16)))) { goto IL_0038; } } { RuntimeObject * L_5 = ___value0; RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * L_6 = V_0; NullCheck(L_6); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_7 = L_6->get_Enumeration_4(); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_8 = ___datatype1; bool L_9; L_9 = VirtFuncInvoker3< bool, RuntimeObject *, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * >::Invoke(17 /* System.Boolean System.Xml.Schema.FacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) */, __this, L_5, L_7, L_8); if (L_9) { goto IL_0038; } } { String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_11 = (XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA *)il2cpp_codegen_object_new(XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA_il2cpp_TypeInfo_var); XmlSchemaException__ctor_mC194833624F11A84B8100C17B5FEE44178FAA6E6(L_11, _stringLiteral6B66704077D32403DDE2EBFCF9C450350D624367, L_10, /*hidden argument*/NULL); return L_11; } IL_0038: { return (Exception_t *)NULL; } } // System.Boolean System.Xml.Schema.UnionFacetsChecker::MatchEnumeration(System.Object,System.Collections.ArrayList,System.Xml.Schema.XmlSchemaDatatype) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnionFacetsChecker_MatchEnumeration_mBA36E17EBDCABAF9BA92994EEB8E8ECA8F565D49 (UnionFacetsChecker_tEF317EAC017FEA555E5C3A2F347A2B5C3A2857D0 * __this, RuntimeObject * ___value0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___enumeration1, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype2, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_001a; } IL_0004: { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___datatype2; RuntimeObject * L_1 = ___value0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = ___enumeration1; int32_t L_3 = V_0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3); NullCheck(L_0); int32_t L_5; L_5 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(11 /* System.Int32 System.Xml.Schema.XmlSchemaDatatype::Compare(System.Object,System.Object) */, L_0, L_1, L_4); if (L_5) { goto IL_0016; } } { return (bool)1; } IL_0016: { int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_001a: { int32_t L_7 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_8 = ___enumeration1; NullCheck(L_8); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_8); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_0004; } } { return (bool)0; } } // System.Void System.Xml.Schema.UnionFacetsChecker::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnionFacetsChecker__ctor_m9C54C58988EFF405DEAC563BB7E9DAC99D69243F (UnionFacetsChecker_tEF317EAC017FEA555E5C3A2F347A2B5C3A2857D0 * __this, const RuntimeMethod* method) { { FacetsChecker__ctor_m9866E167E1A380C2278C0B37898E6E13552F61CF(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.UnreferencedObjectEventArgs::.ctor(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnreferencedObjectEventArgs__ctor_m5E376D6C075D9BD76E8D1DD0CC0471F5C9A35BC6 (UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * __this, RuntimeObject * ___o0, String_t* ___id1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___o0; __this->set_o_1(L_0); String_t* L_1 = ___id1; __this->set_id_2(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnreferencedObjectEventHandler__ctor_mC2FCD01E706592F61C2A6CDAE66771941E67A3BD (UnreferencedObjectEventHandler_t8C7AD11596BB1575262B62EE1128DABB07434988 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::Invoke(System.Object,System.Xml.Serialization.UnreferencedObjectEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnreferencedObjectEventHandler_Invoke_m9D6B7FABDC2E4A6225DA66D20D9663AE1FA18FA3 (UnreferencedObjectEventHandler_t8C7AD11596BB1575262B62EE1128DABB07434988 * __this, RuntimeObject * ___sender0, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtActionInvoker1< UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtActionInvoker1< UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); else GenericVirtActionInvoker2< RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1); else VirtActionInvoker2< RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1); } } else { if (___parameterCount == 1) { typedef void (*FunctionPointerType) (RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } } // System.IAsyncResult System.Xml.Serialization.UnreferencedObjectEventHandler::BeginInvoke(System.Object,System.Xml.Serialization.UnreferencedObjectEventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnreferencedObjectEventHandler_BeginInvoke_m162CA2B410A4FAA0A5D3CCA2C30E6FE05265D5B1 (UnreferencedObjectEventHandler_t8C7AD11596BB1575262B62EE1128DABB07434988 * __this, RuntimeObject * ___sender0, UnreferencedObjectEventArgs_tBFD7658B8F3DD057CEFBF9CE1EBC26705B0A8192 * ___e1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnreferencedObjectEventHandler_EndInvoke_m078DA387C7C559B7C571E1FAF3329A214A4A14AD (UnreferencedObjectEventHandler_t8C7AD11596BB1575262B62EE1128DABB07434988 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 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.Xml.Schema.UpaException::.ctor(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpaException__ctor_m8477F8F2C92D245269451AC32F07043BB741B937 (UpaException_tA1089A2FC805996855C458F828D673A4D2F5FEDA * __this, RuntimeObject * ___particle10, RuntimeObject * ___particle21, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m0E9BEC861F6DBED197960E5BA23149543B1D7F5B(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___particle10; __this->set_particle1_17(L_0); RuntimeObject * L_1 = ___particle21; __this->set_particle2_18(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Xml.ValidateNames::ParseNmtoken(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNmtoken_m38061EA2885294FBE43A1A710886DC056C087C3C (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___offset1; V_0 = L_0; goto IL_001e; } IL_0004: { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0())->get_charProperties_2(); String_t* L_2 = ___s0; int32_t L_3 = V_0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_1); Il2CppChar L_5 = L_4; uint8_t L_6 = (L_1)->GetAt(static_cast(L_5)); if (!((int32_t)((int32_t)L_6&(int32_t)8))) { goto IL_0027; } } { int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_001e: { int32_t L_8 = V_0; String_t* L_9 = ___s0; NullCheck(L_9); int32_t L_10; L_10 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_9, /*hidden argument*/NULL); if ((((int32_t)L_8) < ((int32_t)L_10))) { goto IL_0004; } } IL_0027: { int32_t L_11 = V_0; int32_t L_12 = ___offset1; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)); } } // System.Int32 System.Xml.ValidateNames::ParseNmtokenNoNamespaces(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNmtokenNoNamespaces_mAE5C604AB215233126B6EE9F0F7A42E8EC9A754C (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___offset1; V_0 = L_0; goto IL_0029; } IL_0004: { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0())->get_charProperties_2(); String_t* L_2 = ___s0; int32_t L_3 = V_0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_1); Il2CppChar L_5 = L_4; uint8_t L_6 = (L_1)->GetAt(static_cast(L_5)); if (((int32_t)((int32_t)L_6&(int32_t)8))) { goto IL_0025; } } { String_t* L_7 = ___s0; int32_t L_8 = V_0; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_7, L_8, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)58))))) { goto IL_0032; } } IL_0025: { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0029: { int32_t L_11 = V_0; String_t* L_12 = ___s0; NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_12, /*hidden argument*/NULL); if ((((int32_t)L_11) < ((int32_t)L_13))) { goto IL_0004; } } IL_0032: { int32_t L_14 = V_0; int32_t L_15 = ___offset1; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)); } } // System.Int32 System.Xml.ValidateNames::ParseNameNoNamespaces(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNameNoNamespaces_m9D3AED48588283CC6996A861181D3933686918E6 (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___offset1; V_0 = L_0; int32_t L_1 = V_0; String_t* L_2 = ___s0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if ((((int32_t)L_1) >= ((int32_t)L_3))) { goto IL_0062; } } { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0())->get_charProperties_2(); String_t* L_5 = ___s0; int32_t L_6 = V_0; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, L_6, /*hidden argument*/NULL); NullCheck(L_4); Il2CppChar L_8 = L_7; uint8_t L_9 = (L_4)->GetAt(static_cast(L_8)); if (((int32_t)((int32_t)L_9&(int32_t)4))) { goto IL_002c; } } { String_t* L_10 = ___s0; int32_t L_11 = V_0; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)58))))) { goto IL_0032; } } IL_002c: { int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); goto IL_0059; } IL_0032: { return 0; } IL_0034: { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = (((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0())->get_charProperties_2(); String_t* L_15 = ___s0; int32_t L_16 = V_0; NullCheck(L_15); Il2CppChar L_17; L_17 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_15, L_16, /*hidden argument*/NULL); NullCheck(L_14); Il2CppChar L_18 = L_17; uint8_t L_19 = (L_14)->GetAt(static_cast(L_18)); if (((int32_t)((int32_t)L_19&(int32_t)8))) { goto IL_0055; } } { String_t* L_20 = ___s0; int32_t L_21 = V_0; NullCheck(L_20); Il2CppChar L_22; L_22 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_20, L_21, /*hidden argument*/NULL); if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)58))))) { goto IL_0062; } } IL_0055: { int32_t L_23 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0059: { int32_t L_24 = V_0; String_t* L_25 = ___s0; NullCheck(L_25); int32_t L_26; L_26 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_25, /*hidden argument*/NULL); if ((((int32_t)L_24) < ((int32_t)L_26))) { goto IL_0034; } } IL_0062: { int32_t L_27 = V_0; int32_t L_28 = ___offset1; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)); } } // System.Boolean System.Xml.ValidateNames::IsNameNoNamespaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidateNames_IsNameNoNamespaces_m0E5C3C48B349B347C805319034944414B1AE6581 (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_1; L_1 = ValidateNames_ParseNameNoNamespaces_m9D3AED48588283CC6996A861181D3933686918E6(L_0, 0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = V_0; String_t* L_4 = ___s0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)L_5))? 1 : 0); } IL_0016: { return (bool)0; } } // System.Int32 System.Xml.ValidateNames::ParseNCName(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNCName_mC48FCF5C2E90A26596C3EED8EEF0055540A8EBF8 (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___offset1; V_0 = L_0; int32_t L_1 = V_0; String_t* L_2 = ___s0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if ((((int32_t)L_1) >= ((int32_t)L_3))) { goto IL_004c; } } { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0())->get_charProperties_2(); String_t* L_5 = ___s0; int32_t L_6 = V_0; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, L_6, /*hidden argument*/NULL); NullCheck(L_4); Il2CppChar L_8 = L_7; uint8_t L_9 = (L_4)->GetAt(static_cast(L_8)); if (!((int32_t)((int32_t)L_9&(int32_t)4))) { goto IL_0027; } } { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); goto IL_0043; } IL_0027: { return 0; } IL_0029: { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = (((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0())->get_charProperties_2(); String_t* L_12 = ___s0; int32_t L_13 = V_0; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_12, L_13, /*hidden argument*/NULL); NullCheck(L_11); Il2CppChar L_15 = L_14; uint8_t L_16 = (L_11)->GetAt(static_cast(L_15)); if (!((int32_t)((int32_t)L_16&(int32_t)8))) { goto IL_004c; } } { int32_t L_17 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0043: { int32_t L_18 = V_0; String_t* L_19 = ___s0; NullCheck(L_19); int32_t L_20; L_20 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_19, /*hidden argument*/NULL); if ((((int32_t)L_18) < ((int32_t)L_20))) { goto IL_0029; } } IL_004c: { int32_t L_21 = V_0; int32_t L_22 = ___offset1; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)); } } // System.Int32 System.Xml.ValidateNames::ParseNCName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNCName_m1B3BBA8EBBF31FF07CD3264FCDB0D54D09566254 (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_1; L_1 = ValidateNames_ParseNCName_mC48FCF5C2E90A26596C3EED8EEF0055540A8EBF8(L_0, 0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.ValidateNames::ParseQName(System.String,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseQName_m0011D90B5122AE9FD6F5F651E118B7BDDD2C46BE (String_t* ___s0, int32_t ___offset1, int32_t* ___colonOffset2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t* L_0 = ___colonOffset2; *((int32_t*)L_0) = (int32_t)0; String_t* L_1 = ___s0; int32_t L_2 = ___offset1; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = ValidateNames_ParseNCName_mC48FCF5C2E90A26596C3EED8EEF0055540A8EBF8(L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (!L_4) { goto IL_003d; } } { int32_t L_5 = ___offset1; int32_t L_6 = V_0; ___offset1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6)); int32_t L_7 = ___offset1; String_t* L_8 = ___s0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_8, /*hidden argument*/NULL); if ((((int32_t)L_7) >= ((int32_t)L_9))) { goto IL_003d; } } { String_t* L_10 = ___s0; int32_t L_11 = ___offset1; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)58))))) { goto IL_003d; } } { String_t* L_13 = ___s0; int32_t L_14 = ___offset1; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_15; L_15 = ValidateNames_ParseNCName_mC48FCF5C2E90A26596C3EED8EEF0055540A8EBF8(L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL); V_1 = L_15; int32_t L_16 = V_1; if (!L_16) { goto IL_003d; } } { int32_t* L_17 = ___colonOffset2; int32_t L_18 = ___offset1; *((int32_t*)L_17) = (int32_t)L_18; int32_t L_19 = V_0; int32_t L_20 = V_1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)))); } IL_003d: { int32_t L_21 = V_0; return L_21; } } // System.Void System.Xml.ValidateNames::ParseQNameThrow(System.String,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidateNames_ParseQNameThrow_mC43CA85BF9A9F8C730F865A8842450E3B1710A52 (String_t* ___s0, String_t** ___prefix1, String_t** ___localName2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { String_t* L_0 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_1; L_1 = ValidateNames_ParseQName_m0011D90B5122AE9FD6F5F651E118B7BDDD2C46BE(L_0, 0, (int32_t*)(&V_0), /*hidden argument*/NULL); V_1 = L_1; int32_t L_2 = V_1; if (!L_2) { goto IL_0016; } } { int32_t L_3 = V_1; String_t* L_4 = ___s0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)L_5))) { goto IL_001e; } } IL_0016: { String_t* L_6 = ___s0; int32_t L_7 = V_1; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D(L_6, 0, L_7, /*hidden argument*/NULL); } IL_001e: { int32_t L_8 = V_0; if (!L_8) { goto IL_0037; } } { String_t** L_9 = ___prefix1; String_t* L_10 = ___s0; int32_t L_11 = V_0; NullCheck(L_10); String_t* L_12; L_12 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_10, 0, L_11, /*hidden argument*/NULL); *((RuntimeObject **)L_9) = (RuntimeObject *)L_12; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_9, (void*)(RuntimeObject *)L_12); String_t** L_13 = ___localName2; String_t* L_14 = ___s0; int32_t L_15 = V_0; NullCheck(L_14); String_t* L_16; L_16 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_14, ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)), /*hidden argument*/NULL); *((RuntimeObject **)L_13) = (RuntimeObject *)L_16; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_13, (void*)(RuntimeObject *)L_16); return; } IL_0037: { String_t** L_17 = ___prefix1; *((RuntimeObject **)L_17) = (RuntimeObject *)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_17, (void*)(RuntimeObject *)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); String_t** L_18 = ___localName2; String_t* L_19 = ___s0; *((RuntimeObject **)L_18) = (RuntimeObject *)L_19; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_18, (void*)(RuntimeObject *)L_19); return; } } // System.Void System.Xml.ValidateNames::ThrowInvalidName(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D (String_t* ___s0, int32_t ___offsetStartChar1, int32_t ___offsetBadChar2, const RuntimeMethod* method) { XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___offsetStartChar1; String_t* L_1 = ___s0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if ((((int32_t)L_0) < ((int32_t)L_2))) { goto IL_0019; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_4 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D_RuntimeMethod_var))); } IL_0019: { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))); String_t* L_5 = ___s0; int32_t L_6 = ___offsetBadChar2; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, L_6, /*hidden argument*/NULL); bool L_8; L_8 = XmlCharType_IsNCNameSingleChar_m9CF3C8BE667CEB1DEDFB30047D4A169356C2423E((XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA *)(((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))))->get_address_of_xmlCharType_0()), L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0054; } } { XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA L_9; L_9 = XmlCharType_get_Instance_mEF3C732F10BE7095CF1A5B7A4CD44D9553184DEB(/*hidden argument*/NULL); V_0 = L_9; String_t* L_10 = ___s0; int32_t L_11 = ___offsetBadChar2; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL); bool L_13; L_13 = XmlCharType_IsStartNCNameSingleChar_mD01A1F5180852CB6C7331B880F0A41655967C450((XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA *)(&V_0), L_12, /*hidden argument*/NULL); if (L_13) { goto IL_0054; } } { String_t* L_14 = ___s0; int32_t L_15 = ___offsetBadChar2; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16; L_16 = XmlException_BuildCharExceptionArgs_m6B1DE4874CB2E413D1DE40B49205BB5EFB34642A(L_14, L_15, /*hidden argument*/NULL); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_17 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m774540F83B81D877D8C30183EA2D2F4A76427058(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D)), L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D_RuntimeMethod_var))); } IL_0054: { String_t* L_18 = ___s0; int32_t L_19 = ___offsetBadChar2; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20; L_20 = XmlException_BuildCharExceptionArgs_m6B1DE4874CB2E413D1DE40B49205BB5EFB34642A(L_18, L_19, /*hidden argument*/NULL); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_21 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m774540F83B81D877D8C30183EA2D2F4A76427058(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05)), L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidateNames_ThrowInvalidName_m9F2C2D46A0C872247F4972B2270BB611AA50CA8D_RuntimeMethod_var))); } } // System.Exception System.Xml.ValidateNames::GetInvalidNameException(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * ValidateNames_GetInvalidNameException_mF8D523DA7D1DA0A5286EB911A9027FEF9B52AA17 (String_t* ___s0, int32_t ___offsetStartChar1, int32_t ___offsetBadChar2, 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*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___offsetStartChar1; String_t* L_1 = ___s0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if ((((int32_t)L_0) < ((int32_t)L_2))) { goto IL_0019; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_4 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_4, _stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E, L_3, /*hidden argument*/NULL); return L_4; } IL_0019: { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); String_t* L_5 = ___s0; int32_t L_6 = ___offsetBadChar2; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, L_6, /*hidden argument*/NULL); bool L_8; L_8 = XmlCharType_IsNCNameSingleChar_m9CF3C8BE667CEB1DEDFB30047D4A169356C2423E((XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA *)(((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0()), L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0051; } } { IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); String_t* L_9 = ___s0; int32_t L_10 = ___offsetBadChar2; NullCheck(L_9); Il2CppChar L_11; L_11 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_9, L_10, /*hidden argument*/NULL); bool L_12; L_12 = XmlCharType_IsStartNCNameSingleChar_mD01A1F5180852CB6C7331B880F0A41655967C450((XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA *)(((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->get_address_of_xmlCharType_0()), L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0051; } } { String_t* L_13 = ___s0; int32_t L_14 = ___offsetBadChar2; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15; L_15 = XmlException_BuildCharExceptionArgs_m6B1DE4874CB2E413D1DE40B49205BB5EFB34642A(L_13, L_14, /*hidden argument*/NULL); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_16 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var); XmlException__ctor_m774540F83B81D877D8C30183EA2D2F4A76427058(L_16, _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D, L_15, /*hidden argument*/NULL); return L_16; } IL_0051: { String_t* L_17 = ___s0; int32_t L_18 = ___offsetBadChar2; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19; L_19 = XmlException_BuildCharExceptionArgs_m6B1DE4874CB2E413D1DE40B49205BB5EFB34642A(L_17, L_18, /*hidden argument*/NULL); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_20 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var); XmlException__ctor_m774540F83B81D877D8C30183EA2D2F4A76427058(L_20, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_19, /*hidden argument*/NULL); return L_20; } } // System.Void System.Xml.ValidateNames::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidateNames__cctor_mC3C930AEB1D5FF6D9BA31FD12149655923FB779A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA L_0; L_0 = XmlCharType_get_Instance_mEF3C732F10BE7095CF1A5B7A4CD44D9553184DEB(/*hidden argument*/NULL); ((ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_StaticFields*)il2cpp_codegen_static_fields_for(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var))->set_xmlCharType_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSeverityType System.Xml.Schema.ValidationEventArgs::get_Severity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidationEventArgs_get_Severity_m76F16371C2A4550B55BFF504FC1D1B2FC5CEAD07 (ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_severity_2(); return L_0; } } // System.Xml.Schema.XmlSchemaException System.Xml.Schema.ValidationEventArgs::get_Exception() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * ValidationEventArgs_get_Exception_m01CDAE32415DBC8A32EFA7CA548E09F9414324B0 (ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * __this, const RuntimeMethod* method) { { XmlSchemaException_t9C48B8133469BABC05D561C654585F0584FB25DA * L_0 = __this->get_ex_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.Xml.Schema.ValidationEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandler__ctor_m89CCA5876079F0FE71C8999D969BB772A689E823 (ValidationEventHandler_tE0F1666DEE5D41D7A2A1D78B8E6B07EC830ACE3C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Xml.Schema.ValidationEventHandler::Invoke(System.Object,System.Xml.Schema.ValidationEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandler_Invoke_m9F3DC4D0D4280BF1A483070BA9E4EC2BF561B518 (ValidationEventHandler_tE0F1666DEE5D41D7A2A1D78B8E6B07EC830ACE3C * __this, RuntimeObject * ___sender0, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtActionInvoker1< ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtActionInvoker1< ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); else GenericVirtActionInvoker2< RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1); else VirtActionInvoker2< RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1); } } else { if (___parameterCount == 1) { typedef void (*FunctionPointerType) (RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } } // System.IAsyncResult System.Xml.Schema.ValidationEventHandler::BeginInvoke(System.Object,System.Xml.Schema.ValidationEventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValidationEventHandler_BeginInvoke_mF0AFE7CE6E07E83231D4E5354C438373FBEB3562 (ValidationEventHandler_tE0F1666DEE5D41D7A2A1D78B8E6B07EC830ACE3C * __this, RuntimeObject * ___sender0, ValidationEventArgs_t2CDBD5648CBB2EBA43B34779195D3B13F4C14F17 * ___e1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void System.Xml.Schema.ValidationEventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandler_EndInvoke_m73FEBA398DF0A484E9AA8325B974A7547BB41FD0 (ValidationEventHandler_tE0F1666DEE5D41D7A2A1D78B8E6B07EC830ACE3C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 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 #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.Xml.XmlNameTable System.Xml.XPath.XPathDocument::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * XPathDocument_get_NameTable_m0EA600647554AADA766F933C9170DDED22014E09 (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, const RuntimeMethod* method) { { XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_0 = __this->get_nameTable_2(); return L_0; } } // System.Int32 System.Xml.XPath.XPathDocument::GetXmlNamespaceNode(MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocument_GetXmlNamespaceNode_m00496C4E94EBE11E3C6CEA74FA3640DD31503B00 (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageXmlNmsp0, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_0 = ___pageXmlNmsp0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = __this->get_pageXmlNmsp_0(); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_1); int32_t L_2 = __this->get_idxXmlNmsp_1(); return L_2; } } // System.Int32 System.Xml.XPath.XPathDocument::LookupNamespaces(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocument_LookupNamespaces_mD7676EC5448CAD421C3C117066B5FA3A2466EC1A (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageElem0, int32_t ___idxElem1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNmsp2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 V_0; memset((&V_0), 0, sizeof(V_0)); { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = ___pageElem0; int32_t L_1 = ___idxElem1; XPathNodeRef__ctor_mA73F51EC6476B02530DB4CEA0002D33B209DB020((XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 *)(&V_0), L_0, L_1, /*hidden argument*/NULL); Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_2 = __this->get_mapNmsp_3(); if (!L_2) { goto IL_001f; } } { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_3 = __this->get_mapNmsp_3(); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B(L_3, L_4, /*hidden argument*/Dictionary_2_ContainsKey_m052DFF73092649FBA93883C45FC59B715A1C5E0B_RuntimeMethod_var); if (L_5) { goto IL_0024; } } IL_001f: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_6 = ___pageNmsp2; *((RuntimeObject **)L_6) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)NULL); return 0; } IL_0024: { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_7 = __this->get_mapNmsp_3(); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_8 = V_0; NullCheck(L_7); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_9; L_9 = Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A(L_7, L_8, /*hidden argument*/Dictionary_2_get_Item_m6CC6F47DBC9A9760EF32DF2ECD4C4390E58B9B6A_RuntimeMethod_var); V_0 = L_9; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_10 = ___pageNmsp2; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_11; L_11 = XPathNodeRef_get_Page_m43F46D993395AE8A88DC66C736E4BF7455DA21FA_inline((XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 *)(&V_0), /*hidden argument*/NULL); *((RuntimeObject **)L_10) = (RuntimeObject *)L_11; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)L_11); int32_t L_12; L_12 = XPathNodeRef_get_Index_mF6C16E1ED1AD01AC0E60E87F3485EBEC7E372B69_inline((XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 *)(&V_0), /*hidden argument*/NULL); return L_12; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void MS.Internal.Xml.Cache.XPathDocumentNavigator::.ctor(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathDocumentNavigator__ctor_m8295AEE3B5616BA22589D39FF6B6002FAE3AF046 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageCurrent0, int32_t ___idxCurrent1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageParent2, int32_t ___idxParent3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); XPathNavigator__ctor_mAD9E7017136A847F2E32903B3A92B4626BCCCB42(__this, /*hidden argument*/NULL); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = ___pageCurrent0; __this->set_pageCurrent_4(L_0); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = ___pageParent2; __this->set_pageParent_5(L_1); int32_t L_2 = ___idxCurrent1; __this->set_idxCurrent_6(L_2); int32_t L_3 = ___idxParent3; __this->set_idxParent_7(L_3); return; } } // System.String MS.Internal.Xml.Cache.XPathDocumentNavigator::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathDocumentNavigator_get_Value_mB81E81F048593B25CBBAA4AEED3BB646527D2C22 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_1 = NULL; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; String_t* V_5 = NULL; StringBuilder_t * V_6 = NULL; { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); NullCheck(L_0); String_t* L_2; L_2 = XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); V_0 = L_2; String_t* L_3 = V_0; if (!L_3) { goto IL_001c; } } { String_t* L_4 = V_0; return L_4; } IL_001c: { int32_t L_5 = __this->get_idxParent_7(); if (!L_5) { goto IL_003b; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_6 = __this->get_pageParent_5(); int32_t L_7 = __this->get_idxParent_7(); NullCheck(L_6); String_t* L_8; L_8 = XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_6)->GetAddressAt(static_cast(L_7))), /*hidden argument*/NULL); return L_8; } IL_003b: { String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_5 = L_9; V_6 = (StringBuilder_t *)NULL; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_10 = __this->get_pageCurrent_4(); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_11 = L_10; V_2 = L_11; V_1 = L_11; int32_t L_12 = __this->get_idxCurrent_6(); int32_t L_13 = L_12; V_4 = L_13; V_3 = L_13; bool L_14; L_14 = XPathNodeHelper_GetNonDescendant_m458CF1C515CA4D15A772D5A24F858FDCC8599DEB((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_2), (int32_t*)(&V_4), /*hidden argument*/NULL); if (L_14) { goto IL_00ac; } } { V_2 = (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)NULL; V_4 = 0; goto IL_00ac; } IL_006a: { String_t* L_15 = V_5; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_0083; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_17 = V_1; int32_t L_18 = V_3; NullCheck(L_17); String_t* L_19; L_19 = XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_17)->GetAddressAt(static_cast(L_18))), /*hidden argument*/NULL); V_5 = L_19; goto IL_00ac; } IL_0083: { StringBuilder_t * L_20 = V_6; if (L_20) { goto IL_0098; } } { StringBuilder_t * L_21 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_21, /*hidden argument*/NULL); V_6 = L_21; StringBuilder_t * L_22 = V_6; String_t* L_23 = V_5; NullCheck(L_22); StringBuilder_t * L_24; L_24 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_22, L_23, /*hidden argument*/NULL); } IL_0098: { StringBuilder_t * L_25 = V_6; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_26 = V_1; int32_t L_27 = V_3; NullCheck(L_26); String_t* L_28; L_28 = XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_26)->GetAddressAt(static_cast(L_27))), /*hidden argument*/NULL); NullCheck(L_25); StringBuilder_t * L_29; L_29 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_25, L_28, /*hidden argument*/NULL); } IL_00ac: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_30 = V_2; int32_t L_31 = V_4; bool L_32; L_32 = XPathNodeHelper_GetTextFollowing_m1E8E6B8BF9278EC117D1A271706F824E76A6F969((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_1), (int32_t*)(&V_3), L_30, L_31, /*hidden argument*/NULL); if (L_32) { goto IL_006a; } } { StringBuilder_t * L_33 = V_6; if (L_33) { goto IL_00c1; } } { String_t* L_34 = V_5; return L_34; } IL_00c1: { StringBuilder_t * L_35 = V_6; NullCheck(L_35); String_t* L_36; L_36 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_35); return L_36; } } // System.Xml.XPath.XPathNavigator MS.Internal.Xml.Cache.XPathDocumentNavigator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * XPathDocumentNavigator_Clone_mB45F70CFFC72B12B1DC38DC2B9B5C73CF1178F30 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_2 = __this->get_pageParent_5(); int32_t L_3 = __this->get_idxParent_7(); XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_4 = (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 *)il2cpp_codegen_object_new(XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var); XPathDocumentNavigator__ctor_m8295AEE3B5616BA22589D39FF6B6002FAE3AF046(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Xml.XPath.XPathNodeType MS.Internal.Xml.Cache.XPathDocumentNavigator::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocumentNavigator_get_NodeType_m0948244EEBD265508380C1FF72147F2D908D7D3C (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); NullCheck(L_0); int32_t L_2; L_2 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); return L_2; } } // System.String MS.Internal.Xml.Cache.XPathDocumentNavigator::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathDocumentNavigator_get_LocalName_m3FFF6C69F3B714F31B4E3C379652AF5FB555E3B1 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); NullCheck(L_0); String_t* L_2; L_2 = XPathNode_get_LocalName_m1741FA92A60E72FCB70AC72874C9C30C32ED41CF((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); return L_2; } } // System.String MS.Internal.Xml.Cache.XPathDocumentNavigator::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathDocumentNavigator_get_NamespaceURI_mDF95EF02EA2978837DF4076FE25B99A3435A0413 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); NullCheck(L_0); String_t* L_2; L_2 = XPathNode_get_NamespaceUri_m62932807A9F517304198779BE6D0092A25373E8D((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); return L_2; } } // System.String MS.Internal.Xml.Cache.XPathDocumentNavigator::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathDocumentNavigator_get_Prefix_m8B1ABCD31364A5C333ED6A4451F0D2601D1135A9 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); NullCheck(L_0); String_t* L_2; L_2 = XPathNode_get_Prefix_m61161CE7663CA2A8DD51000A09612630B248C6BC((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); return L_2; } } // System.Xml.XmlNameTable MS.Internal.Xml.Cache.XPathDocumentNavigator::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * XPathDocumentNavigator_get_NameTable_m0B4EDAE91AC25737451844B9C1F8944079DE44B3 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); int32_t L_1 = __this->get_idxCurrent_6(); NullCheck(L_0); XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_2; L_2 = XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); NullCheck(L_2); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_3; L_3 = XPathDocument_get_NameTable_m0EA600647554AADA766F933C9170DDED22014E09_inline(L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean MS.Internal.Xml.Cache.XPathDocumentNavigator::MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathDocumentNavigator_MoveToFirstNamespace_mD2B817360BBAFEE4F3CCA5D7B843A62C763C3513 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, int32_t ___namespaceScope0, const RuntimeMethod* method) { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = ___namespaceScope0; if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_001a; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = __this->get_pageCurrent_4(); int32_t L_2 = __this->get_idxCurrent_6(); int32_t L_3; L_3 = XPathNodeHelper_GetLocalNamespaces_mBDB8FBC8A9CFC867B7201069D6D1F6CEB65061D2(L_1, L_2, (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_0), /*hidden argument*/NULL); V_1 = L_3; goto IL_0079; } IL_001a: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_4 = __this->get_pageCurrent_4(); int32_t L_5 = __this->get_idxCurrent_6(); int32_t L_6; L_6 = XPathNodeHelper_GetInScopeNamespaces_m054845B21FD8295470EF20EAD3085A5113C341E3(L_4, L_5, (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_0), /*hidden argument*/NULL); V_1 = L_6; goto IL_0079; } IL_0030: { int32_t L_7 = ___namespaceScope0; if ((!(((uint32_t)L_7) == ((uint32_t)1)))) { goto IL_0042; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_8 = V_0; int32_t L_9 = V_1; NullCheck(L_8); bool L_10; L_10 = XPathNode_get_IsXmlNamespaceNode_mA1AFA68FDDD836733409DC61B8785E47ACD11BD3((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_8)->GetAddressAt(static_cast(L_9))), /*hidden argument*/NULL); if (L_10) { goto IL_006a; } } IL_0042: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_11 = __this->get_pageCurrent_4(); __this->set_pageParent_5(L_11); int32_t L_12 = __this->get_idxCurrent_6(); __this->set_idxParent_7(L_12); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_13 = V_0; __this->set_pageCurrent_4(L_13); int32_t L_14 = V_1; __this->set_idxCurrent_6(L_14); return (bool)1; } IL_006a: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_15 = V_0; int32_t L_16 = V_1; NullCheck(L_15); int32_t L_17; L_17 = XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_15)->GetAddressAt(static_cast(L_16))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_0), /*hidden argument*/NULL); V_1 = L_17; } IL_0079: { int32_t L_18 = V_1; if (L_18) { goto IL_0030; } } { return (bool)0; } } // System.Boolean MS.Internal.Xml.Cache.XPathDocumentNavigator::MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathDocumentNavigator_MoveToNextNamespace_m74B64BE7C70D3094CF772C12D0C0A7FBD9F61E2D (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, int32_t ___scope0, const RuntimeMethod* method) { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_0 = NULL; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_1 = NULL; int32_t V_2 = 0; { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageCurrent_4(); V_0 = L_0; int32_t L_1 = __this->get_idxCurrent_6(); V_2 = L_1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4; L_4 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_2)->GetAddressAt(static_cast(L_3))), /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)3))) { goto IL_001f; } } { return (bool)0; } IL_001f: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_5 = V_0; int32_t L_6 = V_2; NullCheck(L_5); int32_t L_7; L_7 = XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_5)->GetAddressAt(static_cast(L_6))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_0), /*hidden argument*/NULL); V_2 = L_7; int32_t L_8 = V_2; if (L_8) { goto IL_0033; } } { return (bool)0; } IL_0033: { int32_t L_9 = ___scope0; if ((((int32_t)L_9) == ((int32_t)1))) { goto IL_005c; } } { int32_t L_10 = ___scope0; if ((!(((uint32_t)L_10) == ((uint32_t)2)))) { goto IL_006a; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_11 = V_0; int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13; L_13 = XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_11)->GetAddressAt(static_cast(L_12))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_1), /*hidden argument*/NULL); int32_t L_14 = __this->get_idxParent_7(); if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_005a; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_15 = V_1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_16 = __this->get_pageParent_5(); if ((((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_15) == ((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_16))) { goto IL_006a; } } IL_005a: { return (bool)0; } IL_005c: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_17 = V_0; int32_t L_18 = V_2; NullCheck(L_17); bool L_19; L_19 = XPathNode_get_IsXmlNamespaceNode_mA1AFA68FDDD836733409DC61B8785E47ACD11BD3((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_17)->GetAddressAt(static_cast(L_18))), /*hidden argument*/NULL); if (L_19) { goto IL_001f; } } IL_006a: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_20 = V_0; __this->set_pageCurrent_4(L_20); int32_t L_21 = V_2; __this->set_idxCurrent_6(L_21); return (bool)1; } } // System.Boolean MS.Internal.Xml.Cache.XPathDocumentNavigator::MoveToParent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathDocumentNavigator_MoveToParent_m98A8CD59127FB922DFC2AFCFDC28B30E9B52DF2C (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_idxParent_7(); if (!L_0) { goto IL_0030; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = __this->get_pageParent_5(); __this->set_pageCurrent_4(L_1); int32_t L_2 = __this->get_idxParent_7(); __this->set_idxCurrent_6(L_2); __this->set_pageParent_5((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)NULL); __this->set_idxParent_7(0); return (bool)1; } IL_0030: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_3 = __this->get_address_of_pageCurrent_4(); int32_t* L_4 = __this->get_address_of_idxCurrent_6(); bool L_5; L_5 = XPathNodeHelper_GetParent_m1837518ADCD60ED37A08F76975159C17071D9532((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_3, (int32_t*)L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean MS.Internal.Xml.Cache.XPathDocumentNavigator::IsSamePosition(System.Xml.XPath.XPathNavigator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathDocumentNavigator_IsSamePosition_m443FEB9F22113C5DD3ECABD76C7B5BFED0A00D9C (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * V_0 = NULL; { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_0 = ___other0; V_0 = ((XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 *)IsInstSealed((RuntimeObject*)L_0, XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var)); XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_1 = V_0; if (!L_1) { goto IL_0045; } } { int32_t L_2 = __this->get_idxCurrent_6(); XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_idxCurrent_6(); if ((!(((uint32_t)L_2) == ((uint32_t)L_4)))) { goto IL_0043; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_5 = __this->get_pageCurrent_4(); XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_6 = V_0; NullCheck(L_6); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_7 = L_6->get_pageCurrent_4(); if ((!(((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_5) == ((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_7)))) { goto IL_0043; } } { int32_t L_8 = __this->get_idxParent_7(); XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_9 = V_0; NullCheck(L_9); int32_t L_10 = L_9->get_idxParent_7(); if ((!(((uint32_t)L_8) == ((uint32_t)L_10)))) { goto IL_0043; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_11 = __this->get_pageParent_5(); XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_12 = V_0; NullCheck(L_12); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_13 = L_12->get_pageParent_5(); return (bool)((((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_11) == ((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_13))? 1 : 0); } IL_0043: { return (bool)0; } IL_0045: { return (bool)0; } } // System.Object MS.Internal.Xml.Cache.XPathDocumentNavigator::get_UnderlyingObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XPathDocumentNavigator_get_UnderlyingObject_mEE057840F4A346DD7FF5BC873DFEB32524FE2A8D (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_0; L_0 = VirtFuncInvoker0< XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * >::Invoke(21 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, __this); return L_0; } } // System.Int32 MS.Internal.Xml.Cache.XPathDocumentNavigator::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocumentNavigator_get_LineNumber_m168B1651CEBF66A9A986E21F3A7F6F01D4287F61 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_idxParent_7(); if (!L_0) { goto IL_0028; } } { int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, __this); if ((!(((uint32_t)L_1) == ((uint32_t)4)))) { goto IL_0028; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_2 = __this->get_pageParent_5(); int32_t L_3 = __this->get_idxParent_7(); NullCheck(L_2); int32_t L_4; L_4 = XPathNode_get_LineNumber_mC9023A559FD6DBB18F0DBB827403110C016D7768((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_2)->GetAddressAt(static_cast(L_3))), /*hidden argument*/NULL); return L_4; } IL_0028: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_5 = __this->get_pageCurrent_4(); int32_t L_6 = __this->get_idxCurrent_6(); NullCheck(L_5); int32_t L_7; L_7 = XPathNode_get_LineNumber_mC9023A559FD6DBB18F0DBB827403110C016D7768((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_5)->GetAddressAt(static_cast(L_6))), /*hidden argument*/NULL); return L_7; } } // System.Int32 MS.Internal.Xml.Cache.XPathDocumentNavigator::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocumentNavigator_get_LinePosition_m7F275AC469D2ED4832530AD7F712F2AAF70E577B (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_idxParent_7(); if (!L_0) { goto IL_0028; } } { int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, __this); if ((!(((uint32_t)L_1) == ((uint32_t)4)))) { goto IL_0028; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_2 = __this->get_pageParent_5(); int32_t L_3 = __this->get_idxParent_7(); NullCheck(L_2); int32_t L_4; L_4 = XPathNode_get_CollapsedLinePosition_m749D9DA81E80A19FAE493B6F6A690A0F5748E083((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_2)->GetAddressAt(static_cast(L_3))), /*hidden argument*/NULL); return L_4; } IL_0028: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_5 = __this->get_pageCurrent_4(); int32_t L_6 = __this->get_idxCurrent_6(); NullCheck(L_5); int32_t L_7; L_7 = XPathNode_get_LinePosition_m91FEB39CADDE8D3BB676EA909DC568098704BA49((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_5)->GetAddressAt(static_cast(L_6))), /*hidden argument*/NULL); return L_7; } } // System.Int32 MS.Internal.Xml.Cache.XPathDocumentNavigator::GetPositionHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathDocumentNavigator_GetPositionHashCode_mCEE87BE1B3E3EF49052DDB62826A383110A09933 (XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_idxCurrent_6(); int32_t L_1 = __this->get_idxParent_7(); return ((int32_t)((int32_t)L_0^(int32_t)L_1)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XPathItem_ValueAs_m94A84E8C2D440B1699DE687B74153D4EE8E0B23D (XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 * __this, Type_t * ___returnType0, const RuntimeMethod* method) { { Type_t * L_0 = ___returnType0; RuntimeObject * L_1; L_1 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(14 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_0, (RuntimeObject*)NULL); return L_1; } } // System.Void System.Xml.XPath.XPathItem::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathItem__ctor_mE3A8CE9A0D0C39BC2423656DEA43702914EE0304 (XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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.String System.Xml.XPath.XPathNavigator::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNavigator_ToString_m979B9B81B17C885C5447B8C9414FD63ACA268572 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); return L_0; } } // System.Xml.Schema.XmlSchemaType System.Xml.XPath.XPathNavigator::get_XmlType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * XPathNavigator_get_XmlType_mD06F2BDFA6DB21397C0FB21784ECC7551583A21A (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0026; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0026; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (!L_6) { goto IL_001f; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_7 = V_1; return L_7; } IL_001f: { RuntimeObject* L_8 = V_0; NullCheck(L_8); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9; L_9 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_8); return L_9; } IL_0026: { return (XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA *)NULL; } } // System.Object System.Xml.XPath.XPathNavigator::get_TypedValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XPathNavigator_get_TypedValue_mF8B7B2EFE01ABE521F8E2E6295E71F98B4D12136 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0084; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_004a; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_0084; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_11; L_11 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_10, /*hidden argument*/NULL); V_2 = L_11; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_12 = V_2; if (!L_12) { goto IL_0084; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_13 = V_1; NullCheck(L_13); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_14; L_14 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_13, /*hidden argument*/NULL); String_t* L_15; L_15 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_16 = V_2; NullCheck(L_16); Type_t * L_17; L_17 = VirtFuncInvoker0< Type_t * >::Invoke(4 /* System.Type System.Xml.Schema.XmlSchemaDatatype::get_ValueType() */, L_16); NullCheck(L_14); RuntimeObject * L_18; L_18 = VirtFuncInvoker3< RuntimeObject *, String_t*, Type_t *, RuntimeObject* >::Invoke(59 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.String,System.Type,System.Xml.IXmlNamespaceResolver) */, L_14, L_15, L_17, __this); return L_18; } IL_004a: { RuntimeObject* L_19 = V_0; NullCheck(L_19); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20; L_20 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_19); V_1 = L_20; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_21 = V_1; if (!L_21) { goto IL_0084; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_22 = V_1; NullCheck(L_22); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_23; L_23 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_22, /*hidden argument*/NULL); V_2 = L_23; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_24 = V_2; if (!L_24) { goto IL_0084; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_25 = V_1; NullCheck(L_25); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_26; L_26 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_25, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_27 = V_2; String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_29; L_29 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); NullCheck(L_27); RuntimeObject * L_30; L_30 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_27, L_28, L_29, __this); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_31 = V_2; NullCheck(L_31); Type_t * L_32; L_32 = VirtFuncInvoker0< Type_t * >::Invoke(4 /* System.Type System.Xml.Schema.XmlSchemaDatatype::get_ValueType() */, L_31); NullCheck(L_26); RuntimeObject * L_33; L_33 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, L_26, L_30, L_32, __this); return L_33; } IL_0084: { String_t* L_34; L_34 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); return L_34; } } // System.Type System.Xml.XPath.XPathNavigator::get_ValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XPathNavigator_get_ValueType_m4DE04C1316A1737CD8E5BCF8A781B2C35BA89FFB (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); 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); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0053; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0038; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_0053; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_11; L_11 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_10, /*hidden argument*/NULL); V_2 = L_11; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_12 = V_2; if (!L_12) { goto IL_0053; } } { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_13 = V_2; NullCheck(L_13); Type_t * L_14; L_14 = VirtFuncInvoker0< Type_t * >::Invoke(4 /* System.Type System.Xml.Schema.XmlSchemaDatatype::get_ValueType() */, L_13); return L_14; } IL_0038: { RuntimeObject* L_15 = V_0; NullCheck(L_15); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_16; L_16 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_15); V_1 = L_16; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_17 = V_1; if (!L_17) { goto IL_0053; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_18 = V_1; NullCheck(L_18); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_19; L_19 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_18, /*hidden argument*/NULL); V_2 = L_19; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_20 = V_2; if (!L_20) { goto IL_0053; } } { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_21 = V_2; NullCheck(L_21); Type_t * L_22; L_22 = VirtFuncInvoker0< Type_t * >::Invoke(4 /* System.Type System.Xml.Schema.XmlSchemaDatatype::get_ValueType() */, L_21); return L_22; } IL_0053: { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24; L_24 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_23, /*hidden argument*/NULL); return L_24; } } // System.Boolean System.Xml.XPath.XPathNavigator::get_ValueAsBoolean() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNavigator_get_ValueAsBoolean_mAC1A78F2F8AC37DA5C7CEDEF6EBBE8F383C470F0 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_006c; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0039; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_11; L_11 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_11); bool L_13; L_13 = VirtFuncInvoker1< bool, String_t* >::Invoke(8 /* System.Boolean System.Xml.Schema.XmlValueConverter::ToBoolean(System.String) */, L_11, L_12); return L_13; } IL_0039: { RuntimeObject* L_14 = V_0; NullCheck(L_14); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_15; L_15 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_14); V_1 = L_15; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_16 = V_1; if (!L_16) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_17 = V_1; NullCheck(L_17); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_18; L_18 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_17, /*hidden argument*/NULL); V_2 = L_18; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_19 = V_2; if (!L_19) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20 = V_1; NullCheck(L_20); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_21; L_21 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_20, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_22 = V_2; String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_24; L_24 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); NullCheck(L_22); RuntimeObject * L_25; L_25 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_22, L_23, L_24, __this); NullCheck(L_21); bool L_26; L_26 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(9 /* System.Boolean System.Xml.Schema.XmlValueConverter::ToBoolean(System.Object) */, L_21, L_25); return L_26; } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_27 = ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->get_Untyped_34(); String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_27); bool L_29; L_29 = VirtFuncInvoker1< bool, String_t* >::Invoke(8 /* System.Boolean System.Xml.Schema.XmlValueConverter::ToBoolean(System.String) */, L_27, L_28); return L_29; } } // System.DateTime System.Xml.XPath.XPathNavigator::get_ValueAsDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 XPathNavigator_get_ValueAsDateTime_mC5D864EF942BF677610F0259922004987589B8AA (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_006c; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0039; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_11; L_11 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_11); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_13; L_13 = VirtFuncInvoker1< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , String_t* >::Invoke(38 /* System.DateTime System.Xml.Schema.XmlValueConverter::ToDateTime(System.String) */, L_11, L_12); return L_13; } IL_0039: { RuntimeObject* L_14 = V_0; NullCheck(L_14); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_15; L_15 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_14); V_1 = L_15; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_16 = V_1; if (!L_16) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_17 = V_1; NullCheck(L_17); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_18; L_18 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_17, /*hidden argument*/NULL); V_2 = L_18; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_19 = V_2; if (!L_19) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20 = V_1; NullCheck(L_20); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_21; L_21 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_20, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_22 = V_2; String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_24; L_24 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); NullCheck(L_22); RuntimeObject * L_25; L_25 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_22, L_23, L_24, __this); NullCheck(L_21); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_26; L_26 = VirtFuncInvoker1< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , RuntimeObject * >::Invoke(39 /* System.DateTime System.Xml.Schema.XmlValueConverter::ToDateTime(System.Object) */, L_21, L_25); return L_26; } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_27 = ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->get_Untyped_34(); String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_27); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_29; L_29 = VirtFuncInvoker1< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , String_t* >::Invoke(38 /* System.DateTime System.Xml.Schema.XmlValueConverter::ToDateTime(System.String) */, L_27, L_28); return L_29; } } // System.Double System.Xml.XPath.XPathNavigator::get_ValueAsDouble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XPathNavigator_get_ValueAsDouble_m75637DC19ACFF60D4600B35BBBD021AEDFA501BE (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_006c; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0039; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_11; L_11 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_11); double L_13; L_13 = VirtFuncInvoker1< double, String_t* >::Invoke(28 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.String) */, L_11, L_12); return L_13; } IL_0039: { RuntimeObject* L_14 = V_0; NullCheck(L_14); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_15; L_15 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_14); V_1 = L_15; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_16 = V_1; if (!L_16) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_17 = V_1; NullCheck(L_17); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_18; L_18 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_17, /*hidden argument*/NULL); V_2 = L_18; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_19 = V_2; if (!L_19) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20 = V_1; NullCheck(L_20); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_21; L_21 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_20, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_22 = V_2; String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_24; L_24 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); NullCheck(L_22); RuntimeObject * L_25; L_25 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_22, L_23, L_24, __this); NullCheck(L_21); double L_26; L_26 = VirtFuncInvoker1< double, RuntimeObject * >::Invoke(29 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.Object) */, L_21, L_25); return L_26; } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_27 = ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->get_Untyped_34(); String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_27); double L_29; L_29 = VirtFuncInvoker1< double, String_t* >::Invoke(28 /* System.Double System.Xml.Schema.XmlValueConverter::ToDouble(System.String) */, L_27, L_28); return L_29; } } // System.Int32 System.Xml.XPath.XPathNavigator::get_ValueAsInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNavigator_get_ValueAsInt_m7C6BAA38218C8D7001F12D0EA77CEDCFDA12BD5C (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_006c; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0039; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_11; L_11 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_11); int32_t L_13; L_13 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(14 /* System.Int32 System.Xml.Schema.XmlValueConverter::ToInt32(System.String) */, L_11, L_12); return L_13; } IL_0039: { RuntimeObject* L_14 = V_0; NullCheck(L_14); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_15; L_15 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_14); V_1 = L_15; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_16 = V_1; if (!L_16) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_17 = V_1; NullCheck(L_17); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_18; L_18 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_17, /*hidden argument*/NULL); V_2 = L_18; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_19 = V_2; if (!L_19) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20 = V_1; NullCheck(L_20); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_21; L_21 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_20, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_22 = V_2; String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_24; L_24 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); NullCheck(L_22); RuntimeObject * L_25; L_25 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_22, L_23, L_24, __this); NullCheck(L_21); int32_t L_26; L_26 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(15 /* System.Int32 System.Xml.Schema.XmlValueConverter::ToInt32(System.Object) */, L_21, L_25); return L_26; } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_27 = ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->get_Untyped_34(); String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_27); int32_t L_29; L_29 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(14 /* System.Int32 System.Xml.Schema.XmlValueConverter::ToInt32(System.String) */, L_27, L_28); return L_29; } } // System.Int64 System.Xml.XPath.XPathNavigator::get_ValueAsLong() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XPathNavigator_get_ValueAsLong_m126F8CDE269F3ACC85E72B0E7EE52F80B25B051E (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0; L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_0; RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_006c; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0039; } } { RuntimeObject* L_4 = V_0; NullCheck(L_4); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_5; L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_4); V_1 = L_5; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_6 = V_1; if (L_6) { goto IL_0024; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_8; L_8 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_7); V_1 = L_8; } IL_0024: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9 = V_1; if (!L_9) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; NullCheck(L_10); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_11; L_11 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_11); int64_t L_13; L_13 = VirtFuncInvoker1< int64_t, String_t* >::Invoke(20 /* System.Int64 System.Xml.Schema.XmlValueConverter::ToInt64(System.String) */, L_11, L_12); return L_13; } IL_0039: { RuntimeObject* L_14 = V_0; NullCheck(L_14); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_15; L_15 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_14); V_1 = L_15; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_16 = V_1; if (!L_16) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_17 = V_1; NullCheck(L_17); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_18; L_18 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_17, /*hidden argument*/NULL); V_2 = L_18; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_19 = V_2; if (!L_19) { goto IL_006c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20 = V_1; NullCheck(L_20); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_21; L_21 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_20, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_22 = V_2; String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_24; L_24 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); NullCheck(L_22); RuntimeObject * L_25; L_25 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_22, L_23, L_24, __this); NullCheck(L_21); int64_t L_26; L_26 = VirtFuncInvoker1< int64_t, RuntimeObject * >::Invoke(21 /* System.Int64 System.Xml.Schema.XmlValueConverter::ToInt64(System.Object) */, L_21, L_25); return L_26; } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_27 = ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->get_Untyped_34(); String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); NullCheck(L_27); int64_t L_29; L_29 = VirtFuncInvoker1< int64_t, String_t* >::Invoke(20 /* System.Int64 System.Xml.Schema.XmlValueConverter::ToInt64(System.String) */, L_27, L_28); return L_29; } } // System.Object System.Xml.XPath.XPathNavigator::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XPathNavigator_ValueAs_m1469ECE0B7500D571504925BD161057125535313 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, Type_t * ___returnType0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * V_1 = NULL; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * V_2 = NULL; { RuntimeObject* L_0 = ___nsResolver1; if (L_0) { goto IL_0006; } } { ___nsResolver1 = __this; } IL_0006: { RuntimeObject* L_1; L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() */, __this); V_0 = L_1; RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0076; } } { RuntimeObject* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_3); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_0041; } } { RuntimeObject* L_5 = V_0; NullCheck(L_5); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_6; L_6 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_5); V_1 = L_6; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_7 = V_1; if (L_7) { goto IL_002a; } } { RuntimeObject* L_8 = V_0; NullCheck(L_8); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_9; L_9 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_8); V_1 = L_9; } IL_002a: { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_10 = V_1; if (!L_10) { goto IL_0076; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_11 = V_1; NullCheck(L_11); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_12; L_12 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_11, /*hidden argument*/NULL); String_t* L_13; L_13 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); Type_t * L_14 = ___returnType0; RuntimeObject* L_15 = ___nsResolver1; NullCheck(L_12); RuntimeObject * L_16; L_16 = VirtFuncInvoker3< RuntimeObject *, String_t*, Type_t *, RuntimeObject* >::Invoke(59 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.String,System.Type,System.Xml.IXmlNamespaceResolver) */, L_12, L_13, L_14, L_15); return L_16; } IL_0041: { RuntimeObject* L_17 = V_0; NullCheck(L_17); XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_18; L_18 = InterfaceFuncInvoker0< XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var, L_17); V_1 = L_18; XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_19 = V_1; if (!L_19) { goto IL_0076; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_20 = V_1; NullCheck(L_20); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_21; L_21 = XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline(L_20, /*hidden argument*/NULL); V_2 = L_21; XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_22 = V_2; if (!L_22) { goto IL_0076; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_23 = V_1; NullCheck(L_23); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_24; L_24 = XmlSchemaType_get_ValueConverter_m39CD0B2E4084FCE26B49ADC50CB011C9C210EE29(L_23, /*hidden argument*/NULL); XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_25 = V_2; String_t* L_26; L_26 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_27; L_27 = VirtFuncInvoker0< XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * >::Invoke(18 /* System.Xml.XmlNameTable System.Xml.XPath.XPathNavigator::get_NameTable() */, __this); RuntimeObject* L_28 = ___nsResolver1; NullCheck(L_25); RuntimeObject * L_29; L_29 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 *, RuntimeObject* >::Invoke(6 /* System.Object System.Xml.Schema.XmlSchemaDatatype::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_25, L_26, L_27, L_28); Type_t * L_30 = ___returnType0; RuntimeObject* L_31 = ___nsResolver1; NullCheck(L_24); RuntimeObject * L_32; L_32 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, L_24, L_29, L_30, L_31); return L_32; } IL_0076: { IL2CPP_RUNTIME_CLASS_INIT(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_33 = ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->get_Untyped_34(); String_t* L_34; L_34 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); Type_t * L_35 = ___returnType0; RuntimeObject* L_36 = ___nsResolver1; NullCheck(L_33); RuntimeObject * L_37; L_37 = VirtFuncInvoker3< RuntimeObject *, String_t*, Type_t *, RuntimeObject* >::Invoke(59 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.String,System.Type,System.Xml.IXmlNamespaceResolver) */, L_33, L_34, L_35, L_36); return L_37; } } // System.Object System.Xml.XPath.XPathNavigator::System.ICloneable.Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XPathNavigator_System_ICloneable_Clone_m7F37868EC5E0AA3F2DC5A3949AD36F5B77F9B67C (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_0; L_0 = VirtFuncInvoker0< XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * >::Invoke(21 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, __this); return L_0; } } // System.String System.Xml.XPath.XPathNavigator::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNavigator_LookupNamespace_m60442B9DB654984941EFBB14A1E7169FEB19967C (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, String_t* ___prefix0, 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*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * V_0 = NULL; { String_t* L_0 = ___prefix0; if (L_0) { goto IL_0005; } } { return (String_t*)NULL; } IL_0005: { int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, __this); if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0025; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_2; L_2 = VirtFuncInvoker0< XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * >::Invoke(21 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, __this); V_0 = L_2; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = VirtFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToParent() */, L_3); if (!L_4) { goto IL_003c; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_5 = V_0; String_t* L_6 = ___prefix0; NullCheck(L_5); String_t* L_7; L_7 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(19 /* System.String System.Xml.XPath.XPathNavigator::LookupNamespace(System.String) */, L_5, L_6); return L_7; } IL_0025: { String_t* L_8 = ___prefix0; bool L_9; L_9 = VirtFuncInvoker1< bool, String_t* >::Invoke(27 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToNamespace(System.String) */, __this, L_8); if (!L_9) { goto IL_003c; } } { String_t* L_10; L_10 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, __this); bool L_11; L_11 = VirtFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToParent() */, __this); return L_10; } IL_003c: { String_t* L_12 = ___prefix0; NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_12, /*hidden argument*/NULL); if (L_13) { goto IL_004a; } } { String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_14; } IL_004a: { String_t* L_15 = ___prefix0; bool L_16; L_16 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_15, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, /*hidden argument*/NULL); if (!L_16) { goto IL_005d; } } { return _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917; } IL_005d: { String_t* L_17 = ___prefix0; bool L_18; L_18 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_17, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, /*hidden argument*/NULL); if (!L_18) { goto IL_0070; } } { return _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE; } IL_0070: { return (String_t*)NULL; } } // System.String System.Xml.XPath.XPathNavigator::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNavigator_LookupPrefix_m4B793BF17072A83729B4B23C7EB60A0DB9D3D2F7 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, String_t* ___namespaceURI0, 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*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * V_0 = NULL; { String_t* L_0 = ___namespaceURI0; if (L_0) { goto IL_0005; } } { return (String_t*)NULL; } IL_0005: { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_1; L_1 = VirtFuncInvoker0< XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * >::Invoke(21 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, __this); V_0 = L_1; int32_t L_2; L_2 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, __this); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0025; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = VirtFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToParent() */, L_3); if (!L_4) { goto IL_004c; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_5 = V_0; String_t* L_6 = ___namespaceURI0; NullCheck(L_5); String_t* L_7; L_7 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(20 /* System.String System.Xml.XPath.XPathNavigator::LookupPrefix(System.String) */, L_5, L_6); return L_7; } IL_0025: { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_8 = V_0; NullCheck(L_8); bool L_9; L_9 = VirtFuncInvoker1< bool, int32_t >::Invoke(28 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope) */, L_8, 0); if (!L_9) { goto IL_004c; } } IL_002e: { String_t* L_10 = ___namespaceURI0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XPath.XPathItem::get_Value() */, L_11); bool L_13; L_13 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0043; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_14 = V_0; NullCheck(L_14); String_t* L_15; L_15 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XPath.XPathNavigator::get_LocalName() */, L_14); return L_15; } IL_0043: { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_16 = V_0; NullCheck(L_16); bool L_17; L_17 = VirtFuncInvoker1< bool, int32_t >::Invoke(29 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope) */, L_16, 0); if (L_17) { goto IL_002e; } } IL_004c: { String_t* L_18 = ___namespaceURI0; String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); String_t* L_20; L_20 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(19 /* System.String System.Xml.XPath.XPathNavigator::LookupNamespace(System.String) */, __this, L_19); bool L_21; L_21 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_18, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0065; } } { String_t* L_22 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_22; } IL_0065: { String_t* L_23 = ___namespaceURI0; bool L_24; L_24 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_23, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, /*hidden argument*/NULL); if (!L_24) { goto IL_0078; } } { return _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; } IL_0078: { String_t* L_25 = ___namespaceURI0; bool L_26; L_26 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_25, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, /*hidden argument*/NULL); if (!L_26) { goto IL_008b; } } { return _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; } IL_008b: { return (String_t*)NULL; } } // System.Object System.Xml.XPath.XPathNavigator::get_UnderlyingObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XPathNavigator_get_UnderlyingObject_mFBB2E6475354E7FBC0232876EA639FE442A22D72 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { { return NULL; } } // System.Boolean System.Xml.XPath.XPathNavigator::MoveToNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNavigator_MoveToNamespace_m51B5C9830030F8BA13BED6E07EAA09A1795FDEC3 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, String_t* ___name0, const RuntimeMethod* method) { { bool L_0; L_0 = VirtFuncInvoker1< bool, int32_t >::Invoke(28 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope) */, __this, 0); if (!L_0) { goto IL_0029; } } IL_0009: { String_t* L_1 = ___name0; String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XPath.XPathNavigator::get_LocalName() */, __this); bool L_3; L_3 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0019; } } { return (bool)1; } IL_0019: { bool L_4; L_4 = VirtFuncInvoker1< bool, int32_t >::Invoke(29 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope) */, __this, 0); if (L_4) { goto IL_0009; } } { bool L_5; L_5 = VirtFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToParent() */, __this); } IL_0029: { return (bool)0; } } // System.Xml.Schema.IXmlSchemaInfo System.Xml.XPath.XPathNavigator::get_SchemaInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XPathNavigator_get_SchemaInfo_m8B4505061131A3352D877B8EFD8F2403BF41E0E7 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { return ((RuntimeObject*)IsInst((RuntimeObject*)__this, IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229_il2cpp_TypeInfo_var)); } } // System.Boolean System.Xml.XPath.XPathNavigator::IsText(System.Xml.XPath.XPathNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNavigator_IsText_mE621F0CA57AF8981A3A131DB3A7EA57DF5CC6552 (int32_t ___type0, const RuntimeMethod* method) { { int32_t L_0 = ___type0; return (bool)((((int32_t)((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)4))) <= ((uint32_t)2)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Xml.XPath.XPathNavigator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNavigator__ctor_mAD9E7017136A847F2E32903B3A92B4626BCCCB42 (XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * __this, const RuntimeMethod* method) { { XPathItem__ctor_mE3A8CE9A0D0C39BC2423656DEA43702914EE0304(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XPath.XPathNavigator::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNavigator__cctor_m3ED5C7E2F9967B102D935EA34EC1E798CD5F29FB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____BAD037B714E1CD1052149B51238A3D4351DD10B5_6_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * L_0 = (XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A *)il2cpp_codegen_object_new(XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A_il2cpp_TypeInfo_var); XPathNavigatorKeyComparer__ctor_mE1FD2A3B05B898252A13F6435E464F2FB07A2100(L_0, /*hidden argument*/NULL); ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields*)il2cpp_codegen_static_fields_for(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var))->set_comparer_0(L_0); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = L_1; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_3 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____BAD037B714E1CD1052149B51238A3D4351DD10B5_6_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_2, L_3, /*hidden argument*/NULL); ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields*)il2cpp_codegen_static_fields_for(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var))->set_NodeTypeLetter_1(L_2); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = L_4; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_6 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_5, L_6, /*hidden argument*/NULL); ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields*)il2cpp_codegen_static_fields_for(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var))->set_UniqueIdTbl_2(L_5); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = L_7; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_9 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_8, L_9, /*hidden argument*/NULL); ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_StaticFields*)il2cpp_codegen_static_fields_for(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var))->set_ContentKindMasks_3(L_8); 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.Xml.XPath.XPathNavigatorKeyComparer::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_Equals_m802EA03FAD880DB3D6EC1C701CCD1DC4C0E167BB (XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * __this, RuntimeObject * ___obj10, RuntimeObject * ___obj21, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * V_0 = NULL; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * V_1 = NULL; { RuntimeObject * L_0 = ___obj10; V_0 = ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 *)IsInstClass((RuntimeObject*)L_0, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var)); RuntimeObject * L_1 = ___obj21; V_1 = ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 *)IsInstClass((RuntimeObject*)L_1, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var)); XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_2 = V_0; if (!L_2) { goto IL_001f; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_3 = V_1; if (!L_3) { goto IL_001f; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_4 = V_0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_5 = V_1; NullCheck(L_4); bool L_6; L_6 = VirtFuncInvoker1< bool, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * >::Invoke(31 /* System.Boolean System.Xml.XPath.XPathNavigator::IsSamePosition(System.Xml.XPath.XPathNavigator) */, L_4, L_5); if (!L_6) { goto IL_001f; } } { return (bool)1; } IL_001f: { return (bool)0; } } // System.Int32 System.Xml.XPath.XPathNavigatorKeyComparer::System.Collections.IEqualityComparer.GetHashCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_GetHashCode_m934E6CFF8E7436CDBD30AA29FE20CA679A7EA7C2 (XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * V_1 = NULL; XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * V_2 = NULL; RuntimeObject * V_3 = NULL; { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_GetHashCode_m934E6CFF8E7436CDBD30AA29FE20CA679A7EA7C2_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___obj0; XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_3 = ((XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 *)IsInstSealed((RuntimeObject*)L_2, XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303_il2cpp_TypeInfo_var)); V_2 = L_3; if (!L_3) { goto IL_0021; } } { XPathDocumentNavigator_tD8C88A325127DDD360E56EEAED452956FFFB3303 * L_4 = V_2; NullCheck(L_4); int32_t L_5; L_5 = XPathDocumentNavigator_GetPositionHashCode_mCEE87BE1B3E3EF49052DDB62826A383110A09933(L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_0078; } IL_0021: { RuntimeObject * L_6 = ___obj0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_7 = ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 *)IsInstClass((RuntimeObject*)L_6, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var)); V_1 = L_7; if (!L_7) { goto IL_0071; } } { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_8 = V_1; NullCheck(L_8); RuntimeObject * L_9; L_9 = VirtFuncInvoker0< RuntimeObject * >::Invoke(26 /* System.Object System.Xml.XPath.XPathNavigator::get_UnderlyingObject() */, L_8); V_3 = L_9; RuntimeObject * L_10 = V_3; if (!L_10) { goto IL_003e; } } { RuntimeObject * L_11 = V_3; NullCheck(L_11); int32_t L_12; L_12 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_11); V_0 = L_12; goto IL_0078; } IL_003e: { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_13 = V_1; NullCheck(L_13); int32_t L_14; L_14 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, L_13); V_0 = L_14; int32_t L_15 = V_0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_16 = V_1; NullCheck(L_16); String_t* L_17; L_17 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XPath.XPathNavigator::get_LocalName() */, L_16); NullCheck(L_17); int32_t L_18; L_18 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_17); V_0 = ((int32_t)((int32_t)L_15^(int32_t)L_18)); int32_t L_19 = V_0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_20 = V_1; NullCheck(L_20); String_t* L_21; L_21 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Xml.XPath.XPathNavigator::get_Prefix() */, L_20); NullCheck(L_21); int32_t L_22; L_22 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_21); V_0 = ((int32_t)((int32_t)L_19^(int32_t)L_22)); int32_t L_23 = V_0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_24 = V_1; NullCheck(L_24); String_t* L_25; L_25 = VirtFuncInvoker0< String_t* >::Invoke(24 /* System.String System.Xml.XPath.XPathNavigator::get_NamespaceURI() */, L_24); NullCheck(L_25); int32_t L_26; L_26 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_25); V_0 = ((int32_t)((int32_t)L_23^(int32_t)L_26)); goto IL_0078; } IL_0071: { RuntimeObject * L_27 = ___obj0; NullCheck(L_27); int32_t L_28; L_28 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_27); V_0 = L_28; } IL_0078: { int32_t L_29 = V_0; return L_29; } } // System.Void System.Xml.XPath.XPathNavigatorKeyComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNavigatorKeyComparer__ctor_mE1FD2A3B05B898252A13F6435E464F2FB07A2100 (XPathNavigatorKeyComparer_tE86B3B19B683A126542CC0AE8531465FFE4DDA2A * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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 // Conversion methods for marshalling of: MS.Internal.Xml.Cache.XPathNode IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_pinvoke(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke& marshaled) { Exception_t* ___info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'info' of type 'XPathNode': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___info_0Exception, NULL); } IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_pinvoke_back(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke& marshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled) { Exception_t* ___info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'info' of type 'XPathNode': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___info_0Exception, NULL); } // Conversion method for clean up from marshalling of: MS.Internal.Xml.Cache.XPathNode IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_pinvoke_cleanup(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: MS.Internal.Xml.Cache.XPathNode IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_com(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com& marshaled) { Exception_t* ___info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'info' of type 'XPathNode': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___info_0Exception, NULL); } IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_com_back(const XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com& marshaled, XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7& unmarshaled) { Exception_t* ___info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'info' of type 'XPathNode': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___info_0Exception, NULL); } // Conversion method for clean up from marshalling of: MS.Internal.Xml.Cache.XPathNode IL2CPP_EXTERN_C void XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshal_com_cleanup(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com& marshaled) { } // System.Xml.XPath.XPathNodeType MS.Internal.Xml.Cache.XPathNode::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_props_5(); return (int32_t)(((int32_t)((int32_t)L_0&(int32_t)((int32_t)15)))); } } IL2CPP_EXTERN_C int32_t XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD(_thisAdjusted, method); return _returnValue; } // System.String MS.Internal.Xml.Cache.XPathNode::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_Prefix_m61161CE7663CA2A8DD51000A09612630B248C6BC (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); String_t* L_1; L_1 = XPathNodeInfoAtom_get_Prefix_m42B407DB4B3D7D15A394AE84C3CDDAB1F8AB8E66_inline(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C String_t* XPathNode_get_Prefix_m61161CE7663CA2A8DD51000A09612630B248C6BC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XPathNode_get_Prefix_m61161CE7663CA2A8DD51000A09612630B248C6BC(_thisAdjusted, method); return _returnValue; } // System.String MS.Internal.Xml.Cache.XPathNode::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_LocalName_m1741FA92A60E72FCB70AC72874C9C30C32ED41CF (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); String_t* L_1; L_1 = XPathNodeInfoAtom_get_LocalName_mD7465F5C48EDCE54972ABDE7BA78B8D9357BEABE_inline(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C String_t* XPathNode_get_LocalName_m1741FA92A60E72FCB70AC72874C9C30C32ED41CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XPathNode_get_LocalName_m1741FA92A60E72FCB70AC72874C9C30C32ED41CF(_thisAdjusted, method); return _returnValue; } // System.String MS.Internal.Xml.Cache.XPathNode::get_NamespaceUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_NamespaceUri_m62932807A9F517304198779BE6D0092A25373E8D (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); String_t* L_1; L_1 = XPathNodeInfoAtom_get_NamespaceUri_m09443195AF53EA937D16A91EB5069A98669551AC_inline(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C String_t* XPathNode_get_NamespaceUri_m62932807A9F517304198779BE6D0092A25373E8D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XPathNode_get_NamespaceUri_m62932807A9F517304198779BE6D0092A25373E8D(_thisAdjusted, method); return _returnValue; } // System.Xml.XPath.XPathDocument MS.Internal.Xml.Cache.XPathNode::get_Document() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_1; L_1 = XPathNodeInfoAtom_get_Document_m9C3A5ABC778BE58D1FDBE0E3E624902E5866C77A_inline(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * _returnValue; _returnValue = XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917(_thisAdjusted, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNode::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_LineNumber_mC9023A559FD6DBB18F0DBB827403110C016D7768 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); int32_t L_1; L_1 = XPathNodeInfoAtom_get_LineNumberBase_m4323FC22AC71DF4533FE3C476334BF552F9B3715_inline(L_0, /*hidden argument*/NULL); uint32_t L_2 = __this->get_props_5(); return ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)((uint32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)16776192)))>>((int32_t)10))))); } } IL2CPP_EXTERN_C int32_t XPathNode_get_LineNumber_mC9023A559FD6DBB18F0DBB827403110C016D7768_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNode_get_LineNumber_mC9023A559FD6DBB18F0DBB827403110C016D7768(_thisAdjusted, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNode::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_LinePosition_m91FEB39CADDE8D3BB676EA909DC568098704BA49 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); int32_t L_1; L_1 = XPathNodeInfoAtom_get_LinePositionBase_m99CBCA66EAC3E16F01CCE0F797980925A00CC572_inline(L_0, /*hidden argument*/NULL); uint16_t L_2 = __this->get_posOffset_4(); return ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)); } } IL2CPP_EXTERN_C int32_t XPathNode_get_LinePosition_m91FEB39CADDE8D3BB676EA909DC568098704BA49_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNode_get_LinePosition_m91FEB39CADDE8D3BB676EA909DC568098704BA49(_thisAdjusted, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNode::get_CollapsedLinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_get_CollapsedLinePosition_m749D9DA81E80A19FAE493B6F6A690A0F5748E083 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = XPathNode_get_LinePosition_m91FEB39CADDE8D3BB676EA909DC568098704BA49((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)__this, /*hidden argument*/NULL); uint32_t L_1 = __this->get_props_5(); return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((uint32_t)L_1>>((int32_t)24))))); } } IL2CPP_EXTERN_C int32_t XPathNode_get_CollapsedLinePosition_m749D9DA81E80A19FAE493B6F6A690A0F5748E083_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNode_get_CollapsedLinePosition_m749D9DA81E80A19FAE493B6F6A690A0F5748E083(_thisAdjusted, method); return _returnValue; } // MS.Internal.Xml.Cache.XPathNodePageInfo MS.Internal.Xml.Cache.XPathNode::get_PageInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * L_1; L_1 = XPathNodeInfoAtom_get_PageInfo_mB81A5A21438257DC31AE8F1AC8535621D85206A3_inline(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * _returnValue; _returnValue = XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435(_thisAdjusted, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNode::GetParent(MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_0 = ___pageNode0; XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_1 = __this->get_info_0(); NullCheck(L_1); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_2; L_2 = XPathNodeInfoAtom_get_ParentPage_m0999A1E58410F76F13D2990CEBDB6E5E2AF064C6_inline(L_1, /*hidden argument*/NULL); *((RuntimeObject **)L_0) = (RuntimeObject *)L_2; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_2); uint16_t L_3 = __this->get_idxParent_2(); return L_3; } } IL2CPP_EXTERN_C int32_t XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F_AdjustorThunk (RuntimeObject * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F(_thisAdjusted, ___pageNode0, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNode::GetSibling(MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_0 = ___pageNode0; XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_1 = __this->get_info_0(); NullCheck(L_1); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_2; L_2 = XPathNodeInfoAtom_get_SiblingPage_m7A8883FF04C2C7A701D96CA6974FA498A8092D6A_inline(L_1, /*hidden argument*/NULL); *((RuntimeObject **)L_0) = (RuntimeObject *)L_2; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_2); uint16_t L_3 = __this->get_idxSibling_1(); return L_3; } } IL2CPP_EXTERN_C int32_t XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1_AdjustorThunk (RuntimeObject * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1(_thisAdjusted, ___pageNode0, method); return _returnValue; } // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_IsXmlNamespaceNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_IsXmlNamespaceNode_mA1AFA68FDDD836733409DC61B8785E47ACD11BD3 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * L_0 = __this->get_info_0(); NullCheck(L_0); String_t* L_1; L_1 = XPathNodeInfoAtom_get_LocalName_mD7465F5C48EDCE54972ABDE7BA78B8D9357BEABE_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2; L_2 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) == ((uint32_t)3)))) { goto IL_002a; } } { String_t* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); if ((!(((uint32_t)L_4) == ((uint32_t)3)))) { goto IL_002a; } } { String_t* L_5 = V_0; bool L_6; L_6 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_5, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, /*hidden argument*/NULL); return L_6; } IL_002a: { return (bool)0; } } IL2CPP_EXTERN_C bool XPathNode_get_IsXmlNamespaceNode_mA1AFA68FDDD836733409DC61B8785E47ACD11BD3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = XPathNode_get_IsXmlNamespaceNode_mA1AFA68FDDD836733409DC61B8785E47ACD11BD3(_thisAdjusted, method); return _returnValue; } // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_HasSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_HasSibling_m1CA85C3F4A2D7B0A873C2E97F22047B05A260B25 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { uint16_t L_0 = __this->get_idxSibling_1(); return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } IL2CPP_EXTERN_C bool XPathNode_get_HasSibling_m1CA85C3F4A2D7B0A873C2E97F22047B05A260B25_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = XPathNode_get_HasSibling_m1CA85C3F4A2D7B0A873C2E97F22047B05A260B25(_thisAdjusted, method); return _returnValue; } // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_HasCollapsedText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_HasCollapsedText_m8B3F3C47122DB0A75343A6A6610160063CCDDE71 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_props_5(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)128)))) <= ((uint32_t)0)))? 1 : 0); } } IL2CPP_EXTERN_C bool XPathNode_get_HasCollapsedText_m8B3F3C47122DB0A75343A6A6610160063CCDDE71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = XPathNode_get_HasCollapsedText_m8B3F3C47122DB0A75343A6A6610160063CCDDE71(_thisAdjusted, method); return _returnValue; } // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_IsText_m22B49F26A34FCD7239EA9C35E6C2F86337A4E335 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); bool L_1; L_1 = XPathNavigator_IsText_mE621F0CA57AF8981A3A131DB3A7EA57DF5CC6552(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C bool XPathNode_get_IsText_m22B49F26A34FCD7239EA9C35E6C2F86337A4E335_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = XPathNode_get_IsText_m22B49F26A34FCD7239EA9C35E6C2F86337A4E335(_thisAdjusted, method); return _returnValue; } // System.Boolean MS.Internal.Xml.Cache.XPathNode::get_HasNamespaceDecls() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNode_get_HasNamespaceDecls_m198C8AB17D39FA4D2C7866E8698E9E0B881FED68 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_props_5(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0); } } IL2CPP_EXTERN_C bool XPathNode_get_HasNamespaceDecls_m198C8AB17D39FA4D2C7866E8698E9E0B881FED68_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = XPathNode_get_HasNamespaceDecls_m198C8AB17D39FA4D2C7866E8698E9E0B881FED68(_thisAdjusted, method); return _returnValue; } // System.String MS.Internal.Xml.Cache.XPathNode::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6 (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_value_6(); return L_0; } } IL2CPP_EXTERN_C String_t* XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline(_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.Int32 MS.Internal.Xml.Cache.XPathNodeHelper::GetLocalNamespaces(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeHelper_GetLocalNamespaces_mBDB8FBC8A9CFC867B7201069D6D1F6CEB65061D2 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageElem0, int32_t ___idxElem1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNmsp2, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = ___pageElem0; int32_t L_1 = ___idxElem1; NullCheck(L_0); bool L_2; L_2 = XPathNode_get_HasNamespaceDecls_m198C8AB17D39FA4D2C7866E8698E9E0B881FED68((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); if (!L_2) { goto IL_0023; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_3 = ___pageElem0; int32_t L_4 = ___idxElem1; NullCheck(L_3); XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_5; L_5 = XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_3)->GetAddressAt(static_cast(L_4))), /*hidden argument*/NULL); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_6 = ___pageElem0; int32_t L_7 = ___idxElem1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_8 = ___pageNmsp2; NullCheck(L_5); int32_t L_9; L_9 = XPathDocument_LookupNamespaces_mD7676EC5448CAD421C3C117066B5FA3A2466EC1A(L_5, L_6, L_7, (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_8, /*hidden argument*/NULL); return L_9; } IL_0023: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_10 = ___pageNmsp2; *((RuntimeObject **)L_10) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)NULL); return 0; } } // System.Int32 MS.Internal.Xml.Cache.XPathNodeHelper::GetInScopeNamespaces(MS.Internal.Xml.Cache.XPathNode[],System.Int32,MS.Internal.Xml.Cache.XPathNode[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeHelper_GetInScopeNamespaces_m054845B21FD8295470EF20EAD3085A5113C341E3 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageElem0, int32_t ___idxElem1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNmsp2, const RuntimeMethod* method) { XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * V_0 = NULL; { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = ___pageElem0; int32_t L_1 = ___idxElem1; NullCheck(L_0); int32_t L_2; L_2 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(L_1))), /*hidden argument*/NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_0051; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_3 = ___pageElem0; int32_t L_4 = ___idxElem1; NullCheck(L_3); XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_5; L_5 = XPathNode_get_Document_m9A9971F291DEC01E9EEC91A1C1B12F1824135917((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_3)->GetAddressAt(static_cast(L_4))), /*hidden argument*/NULL); V_0 = L_5; goto IL_0039; } IL_001e: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_6 = ___pageElem0; int32_t L_7 = ___idxElem1; NullCheck(L_6); int32_t L_8; L_8 = XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_6)->GetAddressAt(static_cast(L_7))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&___pageElem0), /*hidden argument*/NULL); ___idxElem1 = L_8; int32_t L_9 = ___idxElem1; if (L_9) { goto IL_0039; } } { XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_10 = V_0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_11 = ___pageNmsp2; NullCheck(L_10); int32_t L_12; L_12 = XPathDocument_GetXmlNamespaceNode_m00496C4E94EBE11E3C6CEA74FA3640DD31503B00(L_10, (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_11, /*hidden argument*/NULL); return L_12; } IL_0039: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_13 = ___pageElem0; int32_t L_14 = ___idxElem1; NullCheck(L_13); bool L_15; L_15 = XPathNode_get_HasNamespaceDecls_m198C8AB17D39FA4D2C7866E8698E9E0B881FED68((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_13)->GetAddressAt(static_cast(L_14))), /*hidden argument*/NULL); if (!L_15) { goto IL_001e; } } { XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_16 = V_0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_17 = ___pageElem0; int32_t L_18 = ___idxElem1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_19 = ___pageNmsp2; NullCheck(L_16); int32_t L_20; L_20 = XPathDocument_LookupNamespaces_mD7676EC5448CAD421C3C117066B5FA3A2466EC1A(L_16, L_17, L_18, (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_19, /*hidden argument*/NULL); return L_20; } IL_0051: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_21 = ___pageNmsp2; *((RuntimeObject **)L_21) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_21, (void*)(RuntimeObject *)NULL); return 0; } } // System.Boolean MS.Internal.Xml.Cache.XPathNodeHelper::GetParent(MS.Internal.Xml.Cache.XPathNode[]&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNodeHelper_GetParent_m1837518ADCD60ED37A08F76975159C17071D9532 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, int32_t* ___idxNode1, const RuntimeMethod* method) { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_0 = NULL; int32_t V_1 = 0; { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_0 = ___pageNode0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = *((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_0); V_0 = L_1; int32_t* L_2 = ___idxNode1; int32_t L_3 = *((int32_t*)L_2); V_1 = L_3; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_4 = V_0; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6; L_6 = XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_4)->GetAddressAt(static_cast(L_5))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_0), /*hidden argument*/NULL); V_1 = L_6; int32_t L_7 = V_1; if (!L_7) { goto IL_0020; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_8 = ___pageNode0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_9 = V_0; *((RuntimeObject **)L_8) = (RuntimeObject *)L_9; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_8, (void*)(RuntimeObject *)L_9); int32_t* L_10 = ___idxNode1; int32_t L_11 = V_1; *((int32_t*)L_10) = (int32_t)L_11; return (bool)1; } IL_0020: { return (bool)0; } } // System.Int32 MS.Internal.Xml.Cache.XPathNodeHelper::GetLocation(MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeHelper_GetLocation_m73DC2E864498946EF06B51BC0273E3998E65CABB (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageNode0, int32_t ___idxNode1, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = ___pageNode0; NullCheck(L_0); XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * L_1; L_1 = XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_0)->GetAddressAt(static_cast(0))), /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2; L_2 = XPathNodePageInfo_get_PageNumber_m5C6A15FAED0B070B79BD588DCF48561E03835700_inline(L_1, /*hidden argument*/NULL); int32_t L_3 = ___idxNode1; return ((int32_t)((int32_t)((int32_t)((int32_t)L_2<<(int32_t)((int32_t)16)))|(int32_t)L_3)); } } // System.Boolean MS.Internal.Xml.Cache.XPathNodeHelper::GetTextFollowing(MS.Internal.Xml.Cache.XPathNode[]&,System.Int32&,MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNodeHelper_GetTextFollowing_m1E8E6B8BF9278EC117D1A271706F824E76A6F969 (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageCurrent0, int32_t* ___idxCurrent1, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___pageEnd2, int32_t ___idxEnd3, const RuntimeMethod* method) { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_0 = NULL; int32_t V_1 = 0; { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_0 = ___pageCurrent0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = *((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_0); V_0 = L_1; int32_t* L_2 = ___idxCurrent1; int32_t L_3 = *((int32_t*)L_2); V_1 = L_3; int32_t L_4 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_000a: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_5 = V_0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_6 = ___pageEnd2; if ((!(((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_5) == ((RuntimeObject*)(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986*)L_6)))) { goto IL_007b; } } { int32_t L_7 = V_1; int32_t L_8 = ___idxEnd3; if ((((int32_t)L_7) > ((int32_t)L_8))) { goto IL_007b; } } { goto IL_0046; } IL_0014: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); bool L_11; L_11 = XPathNode_get_IsText_m22B49F26A34FCD7239EA9C35E6C2F86337A4E335((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_9)->GetAddressAt(static_cast(L_10))), /*hidden argument*/NULL); if (L_11) { goto IL_00ab; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_12 = V_0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14; L_14 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_12)->GetAddressAt(static_cast(L_13))), /*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_0042; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_15 = V_0; int32_t L_16 = V_1; NullCheck(L_15); bool L_17; L_17 = XPathNode_get_HasCollapsedText_m8B3F3C47122DB0A75343A6A6610160063CCDDE71((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_15)->GetAddressAt(static_cast(L_16))), /*hidden argument*/NULL); if (L_17) { goto IL_00ab; } } IL_0042: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0046: { int32_t L_19 = V_1; int32_t L_20 = ___idxEnd3; if ((!(((uint32_t)L_19) == ((uint32_t)L_20)))) { goto IL_0014; } } { goto IL_00a9; } IL_004c: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_21 = V_0; int32_t L_22 = V_1; NullCheck(L_21); bool L_23; L_23 = XPathNode_get_IsText_m22B49F26A34FCD7239EA9C35E6C2F86337A4E335((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_21)->GetAddressAt(static_cast(L_22))), /*hidden argument*/NULL); if (L_23) { goto IL_00ab; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_24 = V_0; int32_t L_25 = V_1; NullCheck(L_24); int32_t L_26; L_26 = XPathNode_get_NodeType_m67882ECD75CF735AD4212A2E60FE7185461996CD((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_24)->GetAddressAt(static_cast(L_25))), /*hidden argument*/NULL); if ((!(((uint32_t)L_26) == ((uint32_t)1)))) { goto IL_0077; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_27 = V_0; int32_t L_28 = V_1; NullCheck(L_27); bool L_29; L_29 = XPathNode_get_HasCollapsedText_m8B3F3C47122DB0A75343A6A6610160063CCDDE71((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_27)->GetAddressAt(static_cast(L_28))), /*hidden argument*/NULL); if (L_29) { goto IL_00ab; } } IL_0077: { int32_t L_30 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); } IL_007b: { int32_t L_31 = V_1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_32 = V_0; NullCheck(L_32); XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * L_33; L_33 = XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_32)->GetAddressAt(static_cast(0))), /*hidden argument*/NULL); NullCheck(L_33); int32_t L_34; L_34 = XPathNodePageInfo_get_NodeCount_m353B9E0EF9932CBEF1B43CA3791AD00490927642_inline(L_33, /*hidden argument*/NULL); if ((((int32_t)L_31) < ((int32_t)L_34))) { goto IL_004c; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_35 = V_0; NullCheck(L_35); XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * L_36; L_36 = XPathNode_get_PageInfo_m1574B2B5BEFB87A557AA5B52A40B4C602283E435((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_35)->GetAddressAt(static_cast(0))), /*hidden argument*/NULL); NullCheck(L_36); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_37; L_37 = XPathNodePageInfo_get_NextPage_m3B387708F855B7E42B4E01A8ACF91A7B4901B9B0_inline(L_36, /*hidden argument*/NULL); V_0 = L_37; V_1 = 1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_38 = V_0; if (L_38) { goto IL_000a; } } IL_00a9: { return (bool)0; } IL_00ab: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_39 = ___pageCurrent0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_40 = V_0; *((RuntimeObject **)L_39) = (RuntimeObject *)L_40; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_39, (void*)(RuntimeObject *)L_40); int32_t* L_41 = ___idxCurrent1; int32_t L_42 = V_1; *((int32_t*)L_41) = (int32_t)L_42; return (bool)1; } } // System.Boolean MS.Internal.Xml.Cache.XPathNodeHelper::GetNonDescendant(MS.Internal.Xml.Cache.XPathNode[]&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XPathNodeHelper_GetNonDescendant_m458CF1C515CA4D15A772D5A24F858FDCC8599DEB (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** ___pageNode0, int32_t* ___idxNode1, const RuntimeMethod* method) { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* V_0 = NULL; int32_t V_1 = 0; { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_0 = ___pageNode0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_1 = *((XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_0); V_0 = L_1; int32_t* L_2 = ___idxNode1; int32_t L_3 = *((int32_t*)L_2); V_1 = L_3; } IL_0006: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_4 = V_0; int32_t L_5 = V_1; NullCheck(L_4); bool L_6; L_6 = XPathNode_get_HasSibling_m1CA85C3F4A2D7B0A873C2E97F22047B05A260B25((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_4)->GetAddressAt(static_cast(L_5))), /*hidden argument*/NULL); if (!L_6) { goto IL_0028; } } { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_7 = ___pageNode0; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_8 = V_0; *((RuntimeObject **)L_7) = (RuntimeObject *)L_8; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)L_8); int32_t* L_9 = ___idxNode1; XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_10 = V_0; int32_t L_11 = V_1; NullCheck(L_10); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** L_12 = ___pageNode0; int32_t L_13; L_13 = XPathNode_GetSibling_mFB0D5210A8C7D3BDA09049F92B045F37502196C1((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_10)->GetAddressAt(static_cast(L_11))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)L_12, /*hidden argument*/NULL); *((int32_t*)L_9) = (int32_t)L_13; return (bool)1; } IL_0028: { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_14 = V_0; int32_t L_15 = V_1; NullCheck(L_14); int32_t L_16; L_16 = XPathNode_GetParent_mAE8258A9D566303C4A114E2C0D6280372A02676F((XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 *)((L_14)->GetAddressAt(static_cast(L_15))), (XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986**)(&V_0), /*hidden argument*/NULL); V_1 = L_16; int32_t L_17 = V_1; if (L_17) { goto IL_0006; } } { 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 // MS.Internal.Xml.Cache.XPathNodePageInfo MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_PageInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * XPathNodeInfoAtom_get_PageInfo_mB81A5A21438257DC31AE8F1AC8535621D85206A3 (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * L_0 = __this->get_pageInfo_8(); return L_0; } } // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_LocalName_mD7465F5C48EDCE54972ABDE7BA78B8D9357BEABE (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_localName_0(); return L_0; } } // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_NamespaceUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_NamespaceUri_m09443195AF53EA937D16A91EB5069A98669551AC (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_namespaceUri_1(); return L_0; } } // System.String MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_Prefix_m42B407DB4B3D7D15A394AE84C3CDDAB1F8AB8E66 (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_prefix_2(); return L_0; } } // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_SiblingPage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeInfoAtom_get_SiblingPage_m7A8883FF04C2C7A701D96CA6974FA498A8092D6A (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageSibling_4(); return L_0; } } // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_ParentPage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeInfoAtom_get_ParentPage_m0999A1E58410F76F13D2990CEBDB6E5E2AF064C6 (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageParent_3(); return L_0; } } // System.Xml.XPath.XPathDocument MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_Document() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * XPathNodeInfoAtom_get_Document_m9C3A5ABC778BE58D1FDBE0E3E624902E5866C77A (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_0 = __this->get_doc_5(); return L_0; } } // System.Int32 MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_LineNumberBase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeInfoAtom_get_LineNumberBase_m4323FC22AC71DF4533FE3C476334BF552F9B3715 (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNumBase_6(); return L_0; } } // System.Int32 MS.Internal.Xml.Cache.XPathNodeInfoAtom::get_LinePositionBase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeInfoAtom_get_LinePositionBase_m99CBCA66EAC3E16F01CCE0F797980925A00CC572 (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_linePosBase_7(); 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.Int32 MS.Internal.Xml.Cache.XPathNodePageInfo::get_PageNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodePageInfo_get_PageNumber_m5C6A15FAED0B070B79BD588DCF48561E03835700 (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_pageNum_0(); return L_0; } } // System.Int32 MS.Internal.Xml.Cache.XPathNodePageInfo::get_NodeCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodePageInfo_get_NodeCount_m353B9E0EF9932CBEF1B43CA3791AD00490927642 (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_nodeCount_1(); return L_0; } } // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodePageInfo::get_NextPage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodePageInfo_get_NextPage_m3B387708F855B7E42B4E01A8ACF91A7B4901B9B0 (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageNext_2(); 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 // Conversion methods for marshalling of: MS.Internal.Xml.Cache.XPathNodeRef IL2CPP_EXTERN_C void XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshal_pinvoke(const XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503& unmarshaled, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_pinvoke& marshaled) { Exception_t* ___page_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'page' of type 'XPathNodeRef'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___page_0Exception, NULL); } IL2CPP_EXTERN_C void XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshal_pinvoke_back(const XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_pinvoke& marshaled, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503& unmarshaled) { Exception_t* ___page_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'page' of type 'XPathNodeRef'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___page_0Exception, NULL); } // Conversion method for clean up from marshalling of: MS.Internal.Xml.Cache.XPathNodeRef IL2CPP_EXTERN_C void XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshal_pinvoke_cleanup(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: MS.Internal.Xml.Cache.XPathNodeRef IL2CPP_EXTERN_C void XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshal_com(const XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503& unmarshaled, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_com& marshaled) { Exception_t* ___page_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'page' of type 'XPathNodeRef'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___page_0Exception, NULL); } IL2CPP_EXTERN_C void XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshal_com_back(const XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_com& marshaled, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503& unmarshaled) { Exception_t* ___page_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'page' of type 'XPathNodeRef'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___page_0Exception, NULL); } // Conversion method for clean up from marshalling of: MS.Internal.Xml.Cache.XPathNodeRef IL2CPP_EXTERN_C void XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshal_com_cleanup(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_com& marshaled) { } // System.Void MS.Internal.Xml.Cache.XPathNodeRef::.ctor(MS.Internal.Xml.Cache.XPathNode[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathNodeRef__ctor_mA73F51EC6476B02530DB4CEA0002D33B209DB020 (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___page0, int32_t ___idx1, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = ___page0; __this->set_page_0(L_0); int32_t L_1 = ___idx1; __this->set_idx_1(L_1); return; } } IL2CPP_EXTERN_C void XPathNodeRef__ctor_mA73F51EC6476B02530DB4CEA0002D33B209DB020_AdjustorThunk (RuntimeObject * __this, XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___page0, int32_t ___idx1, const RuntimeMethod* method) { int32_t _offset = 1; XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * _thisAdjusted = reinterpret_cast(__this + _offset); XPathNodeRef__ctor_mA73F51EC6476B02530DB4CEA0002D33B209DB020(_thisAdjusted, ___page0, ___idx1, method); } // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::get_Page() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeRef_get_Page_m43F46D993395AE8A88DC66C736E4BF7455DA21FA (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_page_0(); return L_0; } } IL2CPP_EXTERN_C XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeRef_get_Page_m43F46D993395AE8A88DC66C736E4BF7455DA21FA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * _thisAdjusted = reinterpret_cast(__this + _offset); XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* _returnValue; _returnValue = XPathNodeRef_get_Page_m43F46D993395AE8A88DC66C736E4BF7455DA21FA_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeRef_get_Index_mF6C16E1ED1AD01AC0E60E87F3485EBEC7E372B69 (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_idx_1(); return L_0; } } IL2CPP_EXTERN_C int32_t XPathNodeRef_get_Index_mF6C16E1ED1AD01AC0E60E87F3485EBEC7E372B69_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNodeRef_get_Index_mF6C16E1ED1AD01AC0E60E87F3485EBEC7E372B69_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XPathNodeRef_GetHashCode_m70CD5F2944EB1A2D73215FBAD5299F468D91D07A (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_page_0(); int32_t L_1 = __this->get_idx_1(); int32_t L_2; L_2 = XPathNodeHelper_GetLocation_m73DC2E864498946EF06B51BC0273E3998E65CABB(L_0, L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C int32_t XPathNodeRef_GetHashCode_m70CD5F2944EB1A2D73215FBAD5299F468D91D07A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XPathNodeRef_GetHashCode_m70CD5F2944EB1A2D73215FBAD5299F468D91D07A(_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 #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.Xml.Schema.XmlAnyConverter::.ctor(System.Xml.Schema.XmlTypeCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyConverter__ctor_m3772D1858B7320558BA66ECE2E5C212BFF149AD4 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, int32_t ___typeCode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___typeCode0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); XmlBaseConverter__ctor_m7F59A60B5239881076B261D847C74B4CAE2857AD(__this, L_0, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.Schema.XmlAnyConverter::ToBoolean(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAnyConverter_ToBoolean_m2CD2B17160CF412C0C251CD887B1798C6BA7815C (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToBoolean_m2CD2B17160CF412C0C251CD887B1798C6BA7815C_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); bool L_7; L_7 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.Xml.XPath.XPathItem::get_ValueAsBoolean() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); RuntimeObject * L_10; L_10 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(bool*)((bool*)UnBox(L_10, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))); } } // System.DateTime System.Xml.Schema.XmlAnyConverter::ToDateTime(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 XmlAnyConverter_ToDateTime_mCE920B511EFF1EDD4090BCBF12B5B804DFE3101C (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToDateTime_mCE920B511EFF1EDD4090BCBF12B5B804DFE3101C_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_7; L_7 = VirtFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(9 /* System.DateTime System.Xml.XPath.XPathItem::get_ValueAsDateTime() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); RuntimeObject * L_10; L_10 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)UnBox(L_10, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var)))); } } // System.DateTimeOffset System.Xml.Schema.XmlAnyConverter::ToDateTimeOffset(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 XmlAnyConverter_ToDateTimeOffset_mB9A17B77FD5C826AC0C630370C262D6B16A47EB2 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToDateTimeOffset_mB9A17B77FD5C826AC0C630370C262D6B16A47EB2_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0036; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_7 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_8; L_8 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_7); return ((*(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)UnBox(L_8, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var)))); } IL_0036: { RuntimeObject * L_9 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); RuntimeObject * L_11; L_11 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_9, L_10, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)UnBox(L_11, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var)))); } } // System.Decimal System.Xml.Schema.XmlAnyConverter::ToDecimal(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 XmlAnyConverter_ToDecimal_mA8EBDC5F0A210F840F4BFA66F49FA568F0EDEBD6 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToDecimal_mA8EBDC5F0A210F840F4BFA66F49FA568F0EDEBD6_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0036; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_7 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_8; L_8 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_7); return ((*(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)UnBox(L_8, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var)))); } IL_0036: { RuntimeObject * L_9 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); RuntimeObject * L_11; L_11 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_9, L_10, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)UnBox(L_11, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var)))); } } // System.Double System.Xml.Schema.XmlAnyConverter::ToDouble(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XmlAnyConverter_ToDouble_m0CC27BCE8F42F02999922F56E09D5334B59F16DD (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToDouble_m0CC27BCE8F42F02999922F56E09D5334B59F16DD_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); double L_7; L_7 = VirtFuncInvoker0< double >::Invoke(10 /* System.Double System.Xml.XPath.XPathItem::get_ValueAsDouble() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); RuntimeObject * L_10; L_10 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(double*)((double*)UnBox(L_10, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var)))); } } // System.Int32 System.Xml.Schema.XmlAnyConverter::ToInt32(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAnyConverter_ToInt32_mDFF02B10FCD6D1CAF1A0F7FA8D860347DCFA5A7B (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToInt32_mDFF02B10FCD6D1CAF1A0F7FA8D860347DCFA5A7B_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); int32_t L_7; L_7 = VirtFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.Xml.XPath.XPathItem::get_ValueAsInt() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); RuntimeObject * L_10; L_10 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(int32_t*)((int32_t*)UnBox(L_10, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); } } // System.Int64 System.Xml.Schema.XmlAnyConverter::ToInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlAnyConverter_ToInt64_mEB55EBE2EA6C818972068626684FB5E75BDE1F68 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToInt64_mEB55EBE2EA6C818972068626684FB5E75BDE1F68_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); int64_t L_7; L_7 = VirtFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.Xml.XPath.XPathItem::get_ValueAsLong() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); RuntimeObject * L_10; L_10 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(int64_t*)((int64_t*)UnBox(L_10, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)))); } } // System.Single System.Xml.Schema.XmlAnyConverter::ToSingle(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XmlAnyConverter_ToSingle_m14D22E1D794D24E3AE12B121086F53AFB86DA55D (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToSingle_m14D22E1D794D24E3AE12B121086F53AFB86DA55D_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0036; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_7 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_8; L_8 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_6, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_7); return ((*(float*)((float*)UnBox(L_8, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var)))); } IL_0036: { RuntimeObject * L_9 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); RuntimeObject * L_11; L_11 = XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29(__this, L_9, L_10, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(float*)((float*)UnBox(L_11, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var)))); } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.Boolean,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m5974023A61DE8B33DF5B1325A4C3E168A1AC15FE (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, bool ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m5974023A61DE8B33DF5B1325A4C3E168A1AC15FE_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0044; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_10; L_10 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)13), /*hidden argument*/NULL); bool L_11 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_12 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_mB5CB845A384D496AEFFFACB39569C5E920F305AA(L_12, L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0044: { bool L_13 = ___value0; bool L_14 = L_13; RuntimeObject * L_15 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_14); Type_t * L_16 = ___destinationType1; RuntimeObject * L_17; L_17 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_15, L_16, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.DateTime,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m95FC78819D2AAFF667A56524B9783232BD56AB92 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m95FC78819D2AAFF667A56524B9783232BD56AB92_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0044; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_10; L_10 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)18), /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_11 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_12 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m7AF4FED70D32DE3E51E24EB8F753CDA7368655C9(L_12, L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0044: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_13 = ___value0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_14 = L_13; RuntimeObject * L_15 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_14); Type_t * L_16 = ___destinationType1; RuntimeObject * L_17; L_17 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_15, L_16, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.Decimal,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m4B244DAF61625C03AD5AC89B34EA1155210604AD (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m4B244DAF61625C03AD5AC89B34EA1155210604AD_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0049; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_10; L_10 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)14), /*hidden argument*/NULL); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_11 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_12 = L_11; RuntimeObject * L_13 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_12); XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_14 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_14, L_10, L_13, /*hidden argument*/NULL); return L_14; } IL_0049: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_15 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_16 = L_15; RuntimeObject * L_17 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_16); Type_t * L_18 = ___destinationType1; RuntimeObject * L_19; L_19 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_17, L_18, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_19; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.Double,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m504E61FDF86EF7A59BFC012ECE23FD8C05C14F4A (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, double ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m504E61FDF86EF7A59BFC012ECE23FD8C05C14F4A_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0045; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_10; L_10 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)16), /*hidden argument*/NULL); double L_11 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_12 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_mE7C19B5B6146AE4AE88113665DB0838AC1235CB9(L_12, L_10, ((double)((double)L_11)), /*hidden argument*/NULL); return L_12; } IL_0045: { double L_13 = ___value0; double L_14 = L_13; RuntimeObject * L_15 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_14); Type_t * L_16 = ___destinationType1; RuntimeObject * L_17; L_17 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_15, L_16, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.Int32,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m0145B7950DCE3F068F801D08D21256CFB72AC610 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, int32_t ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m0145B7950DCE3F068F801D08D21256CFB72AC610_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0044; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_10; L_10 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)44), /*hidden argument*/NULL); int32_t L_11 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_12 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m269BAC0CC815FFCD1D94901B2E35065F2CC3979D(L_12, L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0044: { int32_t L_13 = ___value0; int32_t L_14 = L_13; RuntimeObject * L_15 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_14); Type_t * L_16 = ___destinationType1; RuntimeObject * L_17; L_17 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_15, L_16, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.Int64,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m4BB0C8E9C6DAC3D484C09442016A2FF960E097A0 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, int64_t ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m4BB0C8E9C6DAC3D484C09442016A2FF960E097A0_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0044; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_10; L_10 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)43), /*hidden argument*/NULL); int64_t L_11 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_12 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m084E81344290E4E2E3A792BAC6FCE90777FDDAA0(L_12, L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0044: { int64_t L_13 = ___value0; int64_t L_14 = L_13; RuntimeObject * L_15 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_14); Type_t * L_16 = ___destinationType1; RuntimeObject * L_17; L_17 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_15, L_16, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.String,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_m17622C9FEE8FDDD11F404887C6F3E22571F1827F (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, String_t* ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m17622C9FEE8FDDD11F404887C6F3E22571F1827F_RuntimeMethod_var))); } IL_000e: { Type_t * L_2 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_m17622C9FEE8FDDD11F404887C6F3E22571F1827F_RuntimeMethod_var))); } IL_0022: { Type_t * L_5 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_6 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_7; L_7 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0037; } } { Type_t * L_8; L_8 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_8; } IL_0037: { Type_t * L_9 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_11; L_11 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0052; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_12; L_12 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)12), /*hidden argument*/NULL); String_t* L_13 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_14 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_14, L_12, L_13, /*hidden argument*/NULL); return L_14; } IL_0052: { String_t* L_15 = ___value0; Type_t * L_16 = ___destinationType1; RuntimeObject* L_17 = ___nsResolver2; RuntimeObject * L_18; L_18 = XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18(__this, L_15, L_16, L_17, /*hidden argument*/NULL); return L_18; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeType_mCB6F8A0EF4BB9EE3B855709AE2327C6657C360A0 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_mCB6F8A0EF4BB9EE3B855709AE2327C6657C360A0_RuntimeMethod_var))); } IL_000e: { Type_t * L_2 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ChangeType_mCB6F8A0EF4BB9EE3B855709AE2327C6657C360A0_RuntimeMethod_var))); } IL_0022: { RuntimeObject * L_5 = ___value0; NullCheck(L_5); Type_t * L_6; L_6 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_5, /*hidden argument*/NULL); V_0 = L_6; Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003e; } } { Type_t * L_10; L_10 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_10; } IL_003e: { Type_t * L_11 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_12 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_13; L_13 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0069; } } { Type_t * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_15 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_16; L_16 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_14, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0069; } } { RuntimeObject * L_17 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_17, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); bool L_18; L_18 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.Xml.XPath.XPathItem::get_ValueAsBoolean() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_17, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); bool L_19 = L_18; RuntimeObject * L_20 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_19); return L_20; } IL_0069: { Type_t * L_21 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_22 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_23; L_23 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0094; } } { Type_t * L_24 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_25 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_26; L_26 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_0094; } } { RuntimeObject * L_27 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_27, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_28; L_28 = VirtFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(9 /* System.DateTime System.Xml.XPath.XPathItem::get_ValueAsDateTime() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_27, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_29 = L_28; RuntimeObject * L_30 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_29); return L_30; } IL_0094: { Type_t * L_31 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_32 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_33; L_33 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_31, L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00bf; } } { Type_t * L_34 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_35 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_36; L_36 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_34, L_35, /*hidden argument*/NULL); if (!L_36) { goto IL_00bf; } } { RuntimeObject * L_37 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_38 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_37, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_39; L_39 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_37, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_38); return L_39; } IL_00bf: { Type_t * L_40 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_41 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_42; L_42 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_40, L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_00f4; } } { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_44 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_45; L_45 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_43, L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_00f4; } } { RuntimeObject * L_46 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_47 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_46, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_48; L_48 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_46, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_47); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_49 = ((*(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)UnBox(L_48, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var)))); RuntimeObject * L_50 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_49); return L_50; } IL_00f4: { Type_t * L_51 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_52 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_53; L_53 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_51, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_011f; } } { Type_t * L_54 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_55 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_56; L_56 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_54, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_011f; } } { RuntimeObject * L_57 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_57, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); double L_58; L_58 = VirtFuncInvoker0< double >::Invoke(10 /* System.Double System.Xml.XPath.XPathItem::get_ValueAsDouble() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_57, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); double L_59 = L_58; RuntimeObject * L_60 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_59); return L_60; } IL_011f: { Type_t * L_61 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_62 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_63; L_63 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_61, L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_014a; } } { Type_t * L_64 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_65 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_66; L_66 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_64, L_65, /*hidden argument*/NULL); if (!L_66) { goto IL_014a; } } { RuntimeObject * L_67 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_67, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); int32_t L_68; L_68 = VirtFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.Xml.XPath.XPathItem::get_ValueAsInt() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_67, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); int32_t L_69 = L_68; RuntimeObject * L_70 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_69); return L_70; } IL_014a: { Type_t * L_71 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_72 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_73; L_73 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_71, L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_0175; } } { Type_t * L_74 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_75 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_76; L_76 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_74, L_75, /*hidden argument*/NULL); if (!L_76) { goto IL_0175; } } { RuntimeObject * L_77 = ___value0; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_77, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); int64_t L_78; L_78 = VirtFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.Xml.XPath.XPathItem::get_ValueAsLong() */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_77, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); int64_t L_79 = L_78; RuntimeObject * L_80 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_79); return L_80; } IL_0175: { Type_t * L_81 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_82 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_83; L_83 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_81, L_82, /*hidden argument*/NULL); if (!L_83) { goto IL_01aa; } } { Type_t * L_84 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_85 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_86; L_86 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_84, L_85, /*hidden argument*/NULL); if (!L_86) { goto IL_01aa; } } { RuntimeObject * L_87 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_88 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_87, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_89; L_89 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_87, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_88); float L_90 = ((*(float*)((float*)UnBox(L_89, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var)))); RuntimeObject * L_91 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_90); return L_91; } IL_01aa: { Type_t * L_92 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_93 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_94; L_94 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_92, L_93, /*hidden argument*/NULL); if (!L_94) { goto IL_03f8; } } { Type_t * L_95 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_96 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_97; L_97 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_95, L_96, /*hidden argument*/NULL); if (!L_97) { goto IL_01ce; } } { RuntimeObject * L_98 = ___value0; return ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_98, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)); } IL_01ce: { Type_t * L_99 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_100 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_101; L_101 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_99, L_100, /*hidden argument*/NULL); if (!L_101) { goto IL_01ee; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_102; L_102 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)13), /*hidden argument*/NULL); RuntimeObject * L_103 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_104 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_mB5CB845A384D496AEFFFACB39569C5E920F305AA(L_104, L_102, ((*(bool*)((bool*)UnBox(L_103, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_104; } IL_01ee: { Type_t * L_105 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_106 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteType_15(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_107; L_107 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_105, L_106, /*hidden argument*/NULL); if (!L_107) { goto IL_0209; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_108; L_108 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)51), /*hidden argument*/NULL); RuntimeObject * L_109 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_110 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_110, L_108, L_109, /*hidden argument*/NULL); return L_110; } IL_0209: { Type_t * L_111 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_112 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteArrayType_27(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_113; L_113 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_111, L_112, /*hidden argument*/NULL); if (!L_113) { goto IL_0224; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_114; L_114 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)27), /*hidden argument*/NULL); RuntimeObject * L_115 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_116 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_116, L_114, L_115, /*hidden argument*/NULL); return L_116; } IL_0224: { Type_t * L_117 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_118 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_119; L_119 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_117, L_118, /*hidden argument*/NULL); if (!L_119) { goto IL_0244; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_120; L_120 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)18), /*hidden argument*/NULL); RuntimeObject * L_121 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_122 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m7AF4FED70D32DE3E51E24EB8F753CDA7368655C9(L_122, L_120, ((*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)UnBox(L_121, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_122; } IL_0244: { Type_t * L_123 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_124 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_125; L_125 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_123, L_124, /*hidden argument*/NULL); if (!L_125) { goto IL_0269; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_126; L_126 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)18), /*hidden argument*/NULL); RuntimeObject * L_127 = ___value0; DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_128 = ((*(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)UnBox(L_127, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var)))); RuntimeObject * L_129 = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &L_128); XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_130 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_130, L_126, L_129, /*hidden argument*/NULL); return L_130; } IL_0269: { Type_t * L_131 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_132 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_133; L_133 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_131, L_132, /*hidden argument*/NULL); if (!L_133) { goto IL_0284; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_134; L_134 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)14), /*hidden argument*/NULL); RuntimeObject * L_135 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_136 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_136, L_134, L_135, /*hidden argument*/NULL); return L_136; } IL_0284: { Type_t * L_137 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_138 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_139; L_139 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_137, L_138, /*hidden argument*/NULL); if (!L_139) { goto IL_02a4; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_140; L_140 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)16), /*hidden argument*/NULL); RuntimeObject * L_141 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_142 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_mE7C19B5B6146AE4AE88113665DB0838AC1235CB9(L_142, L_140, ((*(double*)((double*)UnBox(L_141, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_142; } IL_02a4: { Type_t * L_143 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_144 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int16Type_16(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_145; L_145 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_143, L_144, /*hidden argument*/NULL); if (!L_145) { goto IL_02bf; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_146; L_146 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)45), /*hidden argument*/NULL); RuntimeObject * L_147 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_148 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_148, L_146, L_147, /*hidden argument*/NULL); return L_148; } IL_02bf: { Type_t * L_149 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_150 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_151; L_151 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_149, L_150, /*hidden argument*/NULL); if (!L_151) { goto IL_02df; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_152; L_152 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)44), /*hidden argument*/NULL); RuntimeObject * L_153 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_154 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m269BAC0CC815FFCD1D94901B2E35065F2CC3979D(L_154, L_152, ((*(int32_t*)((int32_t*)UnBox(L_153, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_154; } IL_02df: { Type_t * L_155 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_156 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_157; L_157 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_155, L_156, /*hidden argument*/NULL); if (!L_157) { goto IL_02ff; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_158; L_158 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)43), /*hidden argument*/NULL); RuntimeObject * L_159 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_160 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m084E81344290E4E2E3A792BAC6FCE90777FDDAA0(L_160, L_158, ((*(int64_t*)((int64_t*)UnBox(L_159, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_160; } IL_02ff: { Type_t * L_161 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_162 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SByteType_17(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_163; L_163 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_161, L_162, /*hidden argument*/NULL); if (!L_163) { goto IL_031a; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_164; L_164 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)46), /*hidden argument*/NULL); RuntimeObject * L_165 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_166 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_166, L_164, L_165, /*hidden argument*/NULL); return L_166; } IL_031a: { Type_t * L_167 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_168 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_169; L_169 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_167, L_168, /*hidden argument*/NULL); if (!L_169) { goto IL_0335; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_170; L_170 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)15), /*hidden argument*/NULL); RuntimeObject * L_171 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_172 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_172, L_170, L_171, /*hidden argument*/NULL); return L_172; } IL_0335: { Type_t * L_173 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_174 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_175; L_175 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_173, L_174, /*hidden argument*/NULL); if (!L_175) { goto IL_0355; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_176; L_176 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)12), /*hidden argument*/NULL); RuntimeObject * L_177 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_178 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_178, L_176, ((String_t*)CastclassSealed((RuntimeObject*)L_177, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_178; } IL_0355: { Type_t * L_179 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_180 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_TimeSpanType_30(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_181; L_181 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_179, L_180, /*hidden argument*/NULL); if (!L_181) { goto IL_0370; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_182; L_182 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)17), /*hidden argument*/NULL); RuntimeObject * L_183 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_184 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_184, L_182, L_183, /*hidden argument*/NULL); return L_184; } IL_0370: { Type_t * L_185 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_186 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt16Type_18(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_187; L_187 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_185, L_186, /*hidden argument*/NULL); if (!L_187) { goto IL_038b; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_188; L_188 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)50), /*hidden argument*/NULL); RuntimeObject * L_189 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_190 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_190, L_188, L_189, /*hidden argument*/NULL); return L_190; } IL_038b: { Type_t * L_191 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_192 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt32Type_19(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_193; L_193 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_191, L_192, /*hidden argument*/NULL); if (!L_193) { goto IL_03a6; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_194; L_194 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)49), /*hidden argument*/NULL); RuntimeObject * L_195 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_196 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_196, L_194, L_195, /*hidden argument*/NULL); return L_196; } IL_03a6: { Type_t * L_197 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_198 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt64Type_20(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_199; L_199 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_197, L_198, /*hidden argument*/NULL); if (!L_199) { goto IL_03c1; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_200; L_200 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)48), /*hidden argument*/NULL); RuntimeObject * L_201 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_202 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_202, L_200, L_201, /*hidden argument*/NULL); return L_202; } IL_03c1: { Type_t * L_203 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_204 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UriType_29(); bool L_205; L_205 = XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA(L_203, L_204, /*hidden argument*/NULL); if (!L_205) { goto IL_03dc; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_206; L_206 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)28), /*hidden argument*/NULL); RuntimeObject * L_207 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_208 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m94A068BC6DBF6F6B6776FC25DCFC2783A87B7D01(L_208, L_206, L_207, /*hidden argument*/NULL); return L_208; } IL_03dc: { Type_t * L_209 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_210 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlQualifiedNameType_28(); bool L_211; L_211 = XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA(L_209, L_210, /*hidden argument*/NULL); if (!L_211) { goto IL_03f8; } } { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_212; L_212 = XmlSchemaType_GetBuiltInSimpleType_mA8B921185F9B1608AD5BFF799451E233EEA6F55E(((int32_t)29), /*hidden argument*/NULL); RuntimeObject * L_213 = ___value0; RuntimeObject* L_214 = ___nsResolver2; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_215 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m831AF2CEC0B180020D7FAEF0B0701039A3434D99(L_215, L_212, L_213, L_214, /*hidden argument*/NULL); return L_215; } IL_03f8: { Type_t * L_216 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_217 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_218; L_218 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_216, L_217, /*hidden argument*/NULL); if (!L_218) { goto IL_042d; } } { Type_t * L_219 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_220 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_221; L_221 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_219, L_220, /*hidden argument*/NULL); if (!L_221) { goto IL_0419; } } { RuntimeObject * L_222 = ___value0; return ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_222, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)); } IL_0419: { Type_t * L_223 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_224 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathNavigatorType_31(); bool L_225; L_225 = XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA(L_223, L_224, /*hidden argument*/NULL); if (!L_225) { goto IL_042d; } } { RuntimeObject * L_226 = ___value0; return ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 *)CastclassClass((RuntimeObject*)L_226, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var)); } IL_042d: { Type_t * L_227 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_228 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathNavigatorType_31(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_229; L_229 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_227, L_228, /*hidden argument*/NULL); if (!L_229) { goto IL_0454; } } { Type_t * L_230 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_231 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathNavigatorType_31(); bool L_232; L_232 = XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA(L_230, L_231, /*hidden argument*/NULL); if (!L_232) { goto IL_0454; } } { RuntimeObject * L_233 = ___value0; XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_234; L_234 = XmlAnyConverter_ToNavigator_m9A741700EB0DDF11F2B964C9024404C3691A542A(__this, ((XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 *)CastclassClass((RuntimeObject*)L_233, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_234; } IL_0454: { Type_t * L_235 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_236 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_237; L_237 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_235, L_236, /*hidden argument*/NULL); if (!L_237) { goto IL_0474; } } { RuntimeObject * L_238 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_239 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); RuntimeObject* L_240 = ___nsResolver2; RuntimeObject * L_241; L_241 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_238, L_239, L_240); return ((XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 *)CastclassClass((RuntimeObject*)L_241, XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701_il2cpp_TypeInfo_var)); } IL_0474: { Type_t * L_242 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_243 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_244; L_244 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_242, L_243, /*hidden argument*/NULL); if (!L_244) { goto IL_048f; } } { RuntimeObject * L_245 = ___value0; Type_t * L_246 = ___destinationType1; RuntimeObject* L_247 = ___nsResolver2; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_245, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_248; L_248 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(14 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_245, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_246, L_247); return L_248; } IL_048f: { RuntimeObject * L_249 = ___value0; Type_t * L_250 = ___destinationType1; RuntimeObject* L_251 = ___nsResolver2; RuntimeObject * L_252; L_252 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(62 /* System.Object System.Xml.Schema.XmlBaseConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_249, L_250, L_251); return L_252; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeTypeWildcardDestination(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeTypeWildcardDestination_mDEFDD268A346C14237E394DD68F6287C6840FE29 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; NullCheck(L_0); Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_2 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } { RuntimeObject * L_4 = ___value0; Type_t * L_5 = ___destinationType1; RuntimeObject* L_6 = ___nsResolver2; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_4, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_7; L_7 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(14 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_4, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_5, L_6); return L_7; } IL_0020: { RuntimeObject * L_8 = ___value0; Type_t * L_9 = ___destinationType1; RuntimeObject* L_10 = ___nsResolver2; RuntimeObject * L_11; L_11 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(62 /* System.Object System.Xml.Schema.XmlBaseConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_8, L_9, L_10); return L_11; } } // System.Object System.Xml.Schema.XmlAnyConverter::ChangeTypeWildcardSource(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlAnyConverter_ChangeTypeWildcardSource_mC11DC90ADAC1E5E761FD7DE01B85372050156F18 (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_1 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_2; L_2 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0020; } } { RuntimeObject * L_3 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); RuntimeObject* L_5 = ___nsResolver2; RuntimeObject * L_6; L_6 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_3, L_4, L_5); return ((XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 *)CastclassClass((RuntimeObject*)L_6, XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701_il2cpp_TypeInfo_var)); } IL_0020: { RuntimeObject * L_7 = ___value0; Type_t * L_8 = ___destinationType1; RuntimeObject* L_9 = ___nsResolver2; RuntimeObject * L_10; L_10 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(62 /* System.Object System.Xml.Schema.XmlBaseConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_7, L_8, L_9); return L_10; } } // System.Xml.XPath.XPathNavigator System.Xml.Schema.XmlAnyConverter::ToNavigator(System.Xml.XPath.XPathNavigator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * XmlAnyConverter_ToNavigator_m9A741700EB0DDF11F2B964C9024404C3691A542A (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * __this, XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * ___nav0, const RuntimeMethod* method) { { int32_t L_0; L_0 = XmlBaseConverter_get_TypeCode_m0A474F881A97EE27FC731E30E04B94B9A2A57694_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_001a; } } { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))); Type_t * L_1 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))))->get_XPathNavigatorType_31(); Type_t * L_2 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))))->get_XPathNavigatorType_31(); Exception_t * L_3; L_3 = XmlBaseConverter_CreateInvalidClrMappingException_mF6EE65AEAEFD2FE80F2829D69A6C9178C2287270(__this, L_1, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAnyConverter_ToNavigator_m9A741700EB0DDF11F2B964C9024404C3691A542A_RuntimeMethod_var))); } IL_001a: { XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9 * L_4 = ___nav0; return L_4; } } // System.Void System.Xml.Schema.XmlAnyConverter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyConverter__cctor_mE0A5CF28159B0F3405FDA376025398666725E7C8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * L_0 = (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB *)il2cpp_codegen_object_new(XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_il2cpp_TypeInfo_var); XmlAnyConverter__ctor_m3772D1858B7320558BA66ECE2E5C212BFF149AD4(L_0, 1, /*hidden argument*/NULL); ((XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_StaticFields*)il2cpp_codegen_static_fields_for(XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_il2cpp_TypeInfo_var))->set_Item_32(L_0); XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB * L_1 = (XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB *)il2cpp_codegen_object_new(XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_il2cpp_TypeInfo_var); XmlAnyConverter__ctor_m3772D1858B7320558BA66ECE2E5C212BFF149AD4(L_1, ((int32_t)10), /*hidden argument*/NULL); ((XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_StaticFields*)il2cpp_codegen_static_fields_for(XmlAnyConverter_t63B21107E546367CD411985884CA753D9B2065AB_il2cpp_TypeInfo_var))->set_AnyAtomic_33(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * SchemaDeclBase_get_Datatype_mA6244D69EB46EA7A09CDB3BD3370B49B89A47FD1_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = __this->get_datatype_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_DefaultValueTyped_mC5B1F78E7F6E018074AA8E7672C24E7C844E8A7A_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set_defaultValueTyped_7(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaDeclBase_get_Name_m87FD6E6D364B0F6E028FE4FE87AEFF71575E009E_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_name_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_EnumName_m965ACAD881EB69B9802B5A2540C87FDEA1E320CC_inline (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__enumName_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_XmlName_m125CC3C0B9D3400A9FFF74B875F2D118D8A9A60C_inline (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__xmlName_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t EnumMapMember_get_Value_m4D4D6D93420A7993C34F62257F08F2994EB8F69C_inline (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__value_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* EnumMap_get_Values_m69D39D8E631508EACA57983BDBC206880CA5DC9B_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_0 = __this->get__values_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* EnumMap_get_XmlNames_m42A4AAC86507B237686680E7246D50777CFA31E5_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = __this->get__xmlNames_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EnumMap_get_IsFlags_m073ABB8B0D5CC0B35A29B63BE58E42E8377AE658_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__isFlags_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* EnumMap_get_EnumNames_mEAE6B5575385C501E56FC1540F52D45D989DD396_inline (EnumMap_t1E073280F6237D9F228C5D233888FCA79496BBFC * __this, const RuntimeMethod* method) { { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = __this->get__enumNames_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__choiceValue_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get__type_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__elementName_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__namespace_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_sType_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get__mappedType_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * XmlMapping_get_ObjectMap_m7B06F5CA0492C1860E924B54F29D3ABF908F77C9_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method) { { ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * L_0 = __this->get_map_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_xmlType_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__namespace_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_elementName_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m2693E9023068C90F95C47FDB5685F1563ECE0025_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_ns_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SymbolsDictionary_set_IsUpaEnforced_mE9490686782C4AFB2146299CD8EECD5B061FADBE_inline (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isUpaEnforced_5(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteriorNode_set_LeftChild_m20FF855D58ED7823B0B7F19A02D9AE84B5DAB9EF_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___value0, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = ___value0; __this->set_leftChild_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteriorNode_set_RightChild_mDE901E5A7B4FF04C9336A05599D6F4C6C84804E3_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___value0, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = ___value0; __this->set_rightChild_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * InteriorNode_get_LeftChild_m3C030BB97BAF211A9B13606A9F366D68C49221D1_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = __this->get_leftChild_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * InteriorNode_get_RightChild_m90197762F573D65D6D212A3616A439767EB1A340_inline (InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 * __this, const RuntimeMethod* method) { { SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * L_0 = __this->get_rightChild_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ContentValidator_get_ContentType_m3F213D76D16E71F3524464E82BA2D6E6807B1DB6_inline (ContentValidator_t569A9562CCF582CABFDE0DFB3DEC9529F41C399C * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_contentType_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t LeafNode_get_Pos_mE1FCC54CA980EE7E6E9D8E0BA16EF6889FF18E5A_inline (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_pos_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SymbolsDictionary_get_IsUpaEnforced_mF1CB53D944864D03F27D99ED7EB9F6F3012B28C2_inline (SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isUpaEnforced_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 LeafRangeNode_get_Min_m9ACB52885522383A21EB6FB7116DB9CC618531D6_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method) { { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = __this->get_min_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 LeafRangeNode_get_Max_m6A46C79DF4AE663EAC3FF0C57F34D08A24258A95_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method) { { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = __this->get_max_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * LeafRangeNode_get_NextIteration_m4913B769997A91093E84E01B29E836E6F5C7C601_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, const RuntimeMethod* method) { { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = __this->get_nextIteration_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LeafNode_set_Pos_m3FE6DE6E690AFE747A6898DD4C6FBD5B1B8C3B0E_inline (LeafNode_t45C3C22205D51080B47C53AA2B95E4D6A987F0FC * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_pos_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LineNumber_m59313EBBBEB7825F74471D37390A359200BE323F_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNum_12(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m319A452C4316D5428A237EE28BA0345D96D16D4D_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_linePos_13(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaDeclBase_get_IsDeclaredInExternal_m1B7033680C64843BC8F62EAE9B47B7FC521E4F2E_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isDeclaredInExternal_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_Reserved_mB2889E74F8D76DB2B9BF6DA7F6280058AE1C4E67_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_reserved_16(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * SchemaDeclBase_get_DefaultValueTyped_m181BCA469B286D8325144D11547D51F3BC2BA10F_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_defaultValueTyped_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLineNumber_m4D2187BB1AA525C3FEA4D4131BF143B7569860BA_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_valueLineNum_14(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLinePosition_m5392A796775EB83D96511989ECCF49A14EF4C064_inline (SchemaAttDef_t0B189A0724F18BAE2DB9DD31C1294D986EF2EF68 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_valueLinePos_15(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_Datatype_m967CABF00F6B33B2EABB6522EBBBC92101F5CC74_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___value0, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = ___value0; __this->set_datatype_5(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * DatatypeImplementation_get_AnySimpleType_m5D4C0C5826765D6BED48F248225E26AB5CCEF072_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_0 = ((DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields*)il2cpp_codegen_static_fields_for(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var))->get_anySimpleType_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * XmlSchemaType_get_Datatype_mDB08A7A51BE9F4EB9041EBBFB475EEC22A528414_inline (XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * L_0 = __this->get_datatype_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_m81A44BBDAE7C9F43DF16DE85E470FDA40E48ABAB_inline (SchemaDeclBase_tE1F2CD06746C952098C5A4AF171B45685691F77A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_presence_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaEntity_get_Name_mB20AA73F025F99A004B20738C773CEB8D40B7EBA_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_qname_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_IsExternal_m2C672737BDD910497BE4AF4E25B25F4797A04A03_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isExternal_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_DeclaredInExternal_m7FB26DC9D3A1B1B4671FFD0F755B32E087F0663C_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isDeclaredInExternal_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * SchemaEntity_get_NData_mFA6084E09F48F115394AEDF935A40D43F59EA9FC_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = __this->get_ndata_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m5A96254918F00575C76A5CC66B5D23D15D77EF98_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_url_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_mFC308D0C87C3A88CB67A813B56F97F538749E786_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_pubid_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mBDDEA973537098FDCC625FC2349A5D6A2092718D_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_text_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaEntity_get_Line_m4C57C78532808085D0F9FE1B5B98F2E846B8F470_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNumber_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaEntity_get_Pos_m1F95043C9862F14827166F191BB24BF958F96B2B_inline (SchemaEntity_tB2AF75E4F6EB9722B313B5E625B1C3D50658BF8E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_linePosition_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_HasNonCDataAttribute_mE84C8BBD8FF4C1EFDC66C8C8107229739354F31E_inline (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_hasNonCDataAttribute_14(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SchemaElementDecl_get_DefaultAttDefs_m6CCC6299DE4592CE8D2C66CB559179AF478CAD22_inline (SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * __this, const RuntimeMethod* method) { { List_1_t318F786C70BD3AB62AA4519701522818CEFE7D75 * L_0 = __this->get_defaultAttdefs_12(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitSet_get_Count_mB16C29ACC198DD2C13E9F98E88D87044CC717165_inline (BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_count_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LeafRangeNode_set_NextIteration_mA4BC4E01B8F5722FD0C158D90FAD54A3D47E8485_inline (LeafRangeNode_t8029A50007C00F644B3424A37E7AFD426B12D155 * __this, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___value0, const RuntimeMethod* method) { { BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_0 = ___value0; __this->set_nextIteration_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NamespaceList_get_Type_m9B28FA8BE57D9748D681F8239C80B348F0A8FF02_inline (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_type_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NamespaceList_get_Excluded_mF6AFE63E06E2842A9F193A6A3BC7F7C34B436A33_inline (NamespaceList_tF7240543FFF35DFF3F2C1F1C41D14FCD5BFB833A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_targetNamespace_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeConvertorAttribute_get_Method_mE95367532E96E4E4709DEFE87C3DA2985255BCED_inline (XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CMethodU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaFacet_set_Value_mF3322B22AE16FC04F69EE0FD145B95D806B1F7F0_inline (XmlSchemaFacet_t573C0D6C490EC4BD2D0AF19D2BA11C47A4EE713F * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__value_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypeData_set_IsNullable_mA81ABD06110C57A4E95BD215FB4424EFEA5EE041_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_nullableOverride_11(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__key_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeRef_get_Page_m43F46D993395AE8A88DC66C736E4BF7455DA21FA_inline (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_page_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodeRef_get_Index_mF6C16E1ED1AD01AC0E60E87F3485EBEC7E372B69_inline (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_idx_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNode_get_Value_m3FB84E6AEEE6DCBE0BA704145B092377EA9E07A6_inline (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_value_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * XPathDocument_get_NameTable_m0EA600647554AADA766F933C9170DDED22014E09_inline (XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * __this, const RuntimeMethod* method) { { XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_0 = __this->get_nameTable_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_Prefix_m42B407DB4B3D7D15A394AE84C3CDDAB1F8AB8E66_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_prefix_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_LocalName_mD7465F5C48EDCE54972ABDE7BA78B8D9357BEABE_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_localName_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XPathNodeInfoAtom_get_NamespaceUri_m09443195AF53EA937D16A91EB5069A98669551AC_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_namespaceUri_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * XPathNodeInfoAtom_get_Document_m9C3A5ABC778BE58D1FDBE0E3E624902E5866C77A_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathDocument_t4CC99965F59C02B7EA91F475F5B3A2BC843A7A28 * L_0 = __this->get_doc_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodeInfoAtom_get_LineNumberBase_m4323FC22AC71DF4533FE3C476334BF552F9B3715_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNumBase_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodeInfoAtom_get_LinePositionBase_m99CBCA66EAC3E16F01CCE0F797980925A00CC572_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_linePosBase_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * XPathNodeInfoAtom_get_PageInfo_mB81A5A21438257DC31AE8F1AC8535621D85206A3_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * L_0 = __this->get_pageInfo_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeInfoAtom_get_ParentPage_m0999A1E58410F76F13D2990CEBDB6E5E2AF064C6_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageParent_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodeInfoAtom_get_SiblingPage_m7A8883FF04C2C7A701D96CA6974FA498A8092D6A_inline (XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageSibling_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodePageInfo_get_PageNumber_m5C6A15FAED0B070B79BD588DCF48561E03835700_inline (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_pageNum_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XPathNodePageInfo_get_NodeCount_m353B9E0EF9932CBEF1B43CA3791AD00490927642_inline (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_nodeCount_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* XPathNodePageInfo_get_NextPage_m3B387708F855B7E42B4E01A8ACF91A7B4901B9B0_inline (XPathNodePageInfo_t42FCE8FCA339F27BAF782D09BB4D5BA363667708 * __this, const RuntimeMethod* method) { { XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* L_0 = __this->get_pageNext_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_clrTypeDefault_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlBaseConverter_get_TypeCode_m0A474F881A97EE27FC731E30E04B94B9A2A57694_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_typeCode_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_m82489B7C6C1050B4D9988AC9A045190F030B92ED_gshared_inline (Stack_1_t4772030A3568E7AC4D98FFBD44FB94EA57F124C0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_1(); return (int32_t)L_0; } }