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

31358 行
1.5 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtualActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
struct GenericVirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericVirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
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 <typename T1>
struct InvokerActionInvoker1;
template <typename T1>
struct InvokerActionInvoker1<T1*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2>
struct InvokerActionInvoker2;
template <typename T1, typename T2>
struct InvokerActionInvoker2<T1*, T2*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3;
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3<T1*, T2*, T3*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
{
void* params[3] = { p1, p2, p3 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename R>
struct InvokerFuncInvoker0
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
{
R ret;
method->invoker_method(methodPtr, method, obj, NULL, &ret);
return ret;
}
};
template <typename R, typename T1>
struct InvokerFuncInvoker1;
template <typename R, typename T1>
struct InvokerFuncInvoker1<R, T1*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
R ret;
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
// System.Comparison`1<System.Object>
struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645;
// System.Comparison`1<System.Xml.Serialization.XmlReflectionMember>
struct Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>
struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember>
struct List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Globalization.CalendarId[]
struct CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.Int64[]
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.Xml.Serialization.XmlMemberMapping[]
struct XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF;
// System.Xml.XmlQualifiedName[]
struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1;
// System.Xml.Serialization.XmlReflectionMember[]
struct XmlReflectionMemberU5BU5D_t9331ADE1BB3FA9D45849226BBF1BA1021E66F0A9;
// System.Xml.Serialization.XmlTypeMapMemberAttribute[]
struct XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83;
// System.Globalization.DateTimeFormatInfo/TokenHashValue[]
struct TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9;
// System.Xml.Serialization.EnumMap/EnumMapMember[]
struct EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Xml.Serialization.ClassMap
struct ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109;
// System.Collections.CollectionBase
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.Xml.DomNameTable
struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45;
// System.Xml.EmptyEnumerator
struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// System.Xml.Serialization.EnumMap
struct EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C;
// System.Exception
struct Exception_t;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// System.Reflection.ICustomAttributeProvider
struct ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.Collections.IEqualityComparer
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Collections.IList
struct IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D;
// System.Xml.Schema.IXmlSchemaInfo
struct IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB;
// System.Xml.Serialization.IXmlSerializable
struct IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.Xml.Serialization.ListMap
struct ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.Runtime.Serialization.ObjectIDGenerator
struct ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B;
// System.Xml.Serialization.ObjectMap
struct ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0;
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.Collections.Queue
struct Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC;
// System.Xml.Serialization.ReflectionHelper
struct ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Xml.Schema.SchemaInfo
struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E;
// System.Xml.Serialization.SerializationSource
struct SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.Type
struct Type_t;
// System.Xml.Serialization.TypeData
struct TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704;
// System.Xml.Serialization.TypeMember
struct TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D;
// System.Xml.Serialization.UnreferencedObjectEventArgs
struct UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760;
// System.Xml.Serialization.UnreferencedObjectEventHandler
struct UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.Xml.Serialization.XmlAnyAttributeAttribute
struct XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A;
// System.Xml.Serialization.XmlAnyElementAttribute
struct XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB;
// System.Xml.Serialization.XmlAnyElementAttributes
struct XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF;
// System.Xml.Serialization.XmlArrayAttribute
struct XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15;
// System.Xml.Serialization.XmlArrayItemAttribute
struct XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40;
// System.Xml.Serialization.XmlArrayItemAttributes
struct XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513;
// System.Xml.XmlAttribute
struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18;
// System.Xml.Serialization.XmlAttributeAttribute
struct XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE;
// System.Xml.XmlAttributeCollection
struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0;
// System.Xml.Serialization.XmlAttributeEventArgs
struct XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897;
// System.Xml.Serialization.XmlAttributeEventHandler
struct XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65;
// System.Xml.Serialization.XmlAttributeOverrides
struct XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60;
// System.Xml.Serialization.XmlAttributes
struct XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739;
// System.Xml.Serialization.XmlChoiceIdentifierAttribute
struct XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E;
// System.Xml.XmlDocument
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B;
// System.Xml.XmlElement
struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1;
// System.Xml.Serialization.XmlElementAttribute
struct XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5;
// System.Xml.Serialization.XmlElementAttributes
struct XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50;
// System.Xml.Serialization.XmlElementEventArgs
struct XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036;
// System.Xml.Serialization.XmlElementEventHandler
struct XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3;
// System.Xml.Serialization.XmlEnumAttribute
struct XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695;
// System.Xml.Serialization.XmlIgnoreAttribute
struct XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F;
// System.Xml.XmlImplementation
struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D;
// System.Xml.Serialization.XmlIncludeAttribute
struct XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736;
// System.Xml.XmlLinkedNode
struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C;
// System.Xml.Serialization.XmlMapping
struct XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97;
// System.Xml.Serialization.XmlMemberMapping
struct XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B;
// System.Xml.Serialization.XmlMembersMapping
struct XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C;
// System.Xml.XmlName
struct XmlName_t0704430D24D202146901D342E34D878246E14F33;
// System.Xml.XmlNameTable
struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8;
// System.Xml.XmlNamedNodeMap
struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C;
// System.Xml.Serialization.XmlNamespaceDeclarationsAttribute
struct XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C;
// System.Xml.XmlNode
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF;
// System.Xml.XmlNodeChangedEventHandler
struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B;
// System.Xml.Serialization.XmlNodeEventArgs
struct XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D;
// System.Xml.Serialization.XmlNodeEventHandler
struct XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9;
// System.Xml.XmlReader
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD;
// System.Xml.Serialization.XmlReflectionImporter
struct XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6;
// System.Xml.Serialization.XmlReflectionMember
struct XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A;
// System.Xml.XmlResolver
struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF;
// System.Xml.Serialization.XmlRootAttribute
struct XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF;
// System.Xml.Schema.XmlSchema
struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D;
// System.Xml.Schema.XmlSchemaComplexType
struct XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0;
// System.Xml.Schema.XmlSchemaPatternFacet
struct XmlSchemaPatternFacet_t1F025AEBB84DAD3516F8766AE831927EEFF4A927;
// System.Xml.Serialization.XmlSchemaProviderAttribute
struct XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF;
// System.Xml.Schema.XmlSchemaSet
struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1;
// System.Xml.Serialization.XmlSerializableMapping
struct XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7;
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback
struct XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842;
// System.Xml.Serialization.XmlSerializationFixupCallback
struct XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE;
// System.Xml.Serialization.XmlSerializationGeneratedCode
struct XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F;
// System.Xml.Serialization.XmlSerializationReadCallback
struct XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B;
// System.Xml.Serialization.XmlSerializationReader
struct XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597;
// System.Xml.Serialization.XmlSerializationReaderInterpreter
struct XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8;
// System.Xml.Serialization.XmlSerializationWriteCallback
struct XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA;
// System.Xml.Serialization.XmlSerializationWriter
struct XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B;
// System.Xml.Serialization.XmlSerializer
struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B;
// System.Xml.Serialization.XmlSerializerNamespaces
struct XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93;
// System.Xml.Serialization.XmlTextAttribute
struct XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0;
// System.Xml.XmlTextReader
struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B;
// System.Xml.XmlTextReaderImpl
struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B;
// System.Xml.Serialization.XmlTypeAttribute
struct XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5;
// System.Xml.Serialization.XmlTypeMapElementInfo
struct XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32;
// System.Xml.Serialization.XmlTypeMapElementInfoList
struct XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78;
// System.Xml.Serialization.XmlTypeMapMember
struct XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A;
// System.Xml.Serialization.XmlTypeMapMemberAnyAttribute
struct XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1;
// System.Xml.Serialization.XmlTypeMapMemberAnyElement
struct XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950;
// System.Xml.Serialization.XmlTypeMapMemberAttribute
struct XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4;
// System.Xml.Serialization.XmlTypeMapMemberElement
struct XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840;
// System.Xml.Serialization.XmlTypeMapMemberExpandable
struct XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE;
// System.Xml.Serialization.XmlTypeMapMemberFlatList
struct XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38;
// System.Xml.Serialization.XmlTypeMapMemberList
struct XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E;
// System.Xml.Serialization.XmlTypeMapMemberNamespaces
struct XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112;
// System.Xml.Serialization.XmlTypeMapping
struct XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9;
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F;
// System.Xml.Serialization.EnumMap/EnumMapMember
struct EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38;
// System.Xml.XmlQualifiedName/HashCodeOfStringDelegate
struct HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA;
// System.Xml.Serialization.XmlReflectionImporter/<>c
struct U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81;
// System.Xml.Serialization.XmlSerializationReader/CollectionFixup
struct CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702;
// System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup
struct CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11;
// System.Xml.Serialization.XmlSerializationReader/Fixup
struct Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566;
// System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo
struct WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D;
// System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo
struct FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475;
// System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo
struct ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB;
// System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo
struct WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6;
// System.Xml.Serialization.XmlSerializer/SerializerData
struct SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8;
IL2CPP_EXTERN_C String_t* _stringLiteral0145A7D045941D45D0398C5908900FEC7A46B7E2;
IL2CPP_EXTERN_C String_t* _stringLiteral01F7D45C6686E8A68EA2EAE840426E5CE0DB7A41;
IL2CPP_EXTERN_C String_t* _stringLiteral06B9DFA12BDAA9D4A99EBF38FF26F14CB054DB63;
IL2CPP_EXTERN_C String_t* _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED;
IL2CPP_EXTERN_C String_t* _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3;
IL2CPP_EXTERN_C String_t* _stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72;
IL2CPP_EXTERN_C String_t* _stringLiteral0D4C268C4423C754CBC1834659DBB0EE8FE916F8;
IL2CPP_EXTERN_C String_t* _stringLiteral0D69B39A960B22749E12E1012E42DDF3C1BAEF1B;
IL2CPP_EXTERN_C String_t* _stringLiteral0E0048FA0448CB3DFBD7A30FABD833FBB16CBC89;
IL2CPP_EXTERN_C String_t* _stringLiteral107694947DB47644F8036602F63473486E1ED925;
IL2CPP_EXTERN_C String_t* _stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7;
IL2CPP_EXTERN_C String_t* _stringLiteral116AE9EE2F4E004AB8B7987E1296803B16C5F1C0;
IL2CPP_EXTERN_C String_t* _stringLiteral118E38B2D412E6F22C505D9D88DD635BB1155008;
IL2CPP_EXTERN_C String_t* _stringLiteral151F85AEE2A721730B1E7CDA9A1335DFEA63D095;
IL2CPP_EXTERN_C String_t* _stringLiteral171713B97115C9EE4E1D7643592C5AFA9193CE05;
IL2CPP_EXTERN_C String_t* _stringLiteral1A0AA3281AD8097F34172BB119D920D00EF23FF8;
IL2CPP_EXTERN_C String_t* _stringLiteral1A70DF0588442FC24870182C92EB1EE5A9326B19;
IL2CPP_EXTERN_C String_t* _stringLiteral1BF1039B56259D73BD0BEE9EF7031C5CDFAF393E;
IL2CPP_EXTERN_C String_t* _stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300;
IL2CPP_EXTERN_C String_t* _stringLiteral27D89C40DD20204BB03D3F4DDE04A0E0DBFCD089;
IL2CPP_EXTERN_C String_t* _stringLiteral28A7AEA063C53E83EBAFBF65F33577542489AEA0;
IL2CPP_EXTERN_C String_t* _stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7;
IL2CPP_EXTERN_C String_t* _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1;
IL2CPP_EXTERN_C String_t* _stringLiteral2C5BD46A8428ACC39A710FFFCDEF0CD038A2E862;
IL2CPP_EXTERN_C String_t* _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100;
IL2CPP_EXTERN_C String_t* _stringLiteral2FB92AD2B027DDEAE5C34625D1AA482AB141E759;
IL2CPP_EXTERN_C String_t* _stringLiteral31133B72BD99652557120522D697E07A71CF3DA6;
IL2CPP_EXTERN_C String_t* _stringLiteral32C160F8BF4BD5741D98F55E5487C9CD4ED0A921;
IL2CPP_EXTERN_C String_t* _stringLiteral349EE59EA43C1E5D49630218CC7F73B3AC055344;
IL2CPP_EXTERN_C String_t* _stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7;
IL2CPP_EXTERN_C String_t* _stringLiteral39FA1E980BA741E69B2DC04AF2C961A72DA4E553;
IL2CPP_EXTERN_C String_t* _stringLiteral3BEF703FC97B2EF58FFDCB567F4C4F33758B77FD;
IL2CPP_EXTERN_C String_t* _stringLiteral40266A599D7FCF1D8A2E067A8C90873F38D822E2;
IL2CPP_EXTERN_C String_t* _stringLiteral41B29E6818EB3DC63FDFF520DBC2B07B4616C31D;
IL2CPP_EXTERN_C String_t* _stringLiteral42073B4C2D04446C6E19D4601BE7F290195813C4;
IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE;
IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D;
IL2CPP_EXTERN_C String_t* _stringLiteral42D9C559B36F71C5AB37A696ECC383A0346BC96E;
IL2CPP_EXTERN_C String_t* _stringLiteral430E518F836082E0683698AB9E3F79D39C7F5140;
IL2CPP_EXTERN_C String_t* _stringLiteral432809284A61C8EDD9D90D5ABBBAFC0B4DBC7FB7;
IL2CPP_EXTERN_C String_t* _stringLiteral43D4BC32C912978CB5A42000324BB5E01F316AC5;
IL2CPP_EXTERN_C String_t* _stringLiteral4437BD97E9EF1504EFFC424F3AF22F53BAE124F4;
IL2CPP_EXTERN_C String_t* _stringLiteral444C6FD23DF88A83A6776F970B2AA77934FFF506;
IL2CPP_EXTERN_C String_t* _stringLiteral44906D44EC62870135D9DC36A0D3968140F3ECEF;
IL2CPP_EXTERN_C String_t* _stringLiteral44A2C30EE3C713B4D21FA53CE82508AA974EF69F;
IL2CPP_EXTERN_C String_t* _stringLiteral450A121B534CE8146DA53AF9EA5328F6753B270F;
IL2CPP_EXTERN_C String_t* _stringLiteral49AE794C00022ECA141068DEA9531BF6E0D342B7;
IL2CPP_EXTERN_C String_t* _stringLiteral4A239B353DF341F4369D061CC4804CE665AC004F;
IL2CPP_EXTERN_C String_t* _stringLiteral4C9ECEDF5B1FB9420A92A5B02A141FADFDF52ED6;
IL2CPP_EXTERN_C String_t* _stringLiteral4CD9DCF1D6A03B7AF7C79C9DE5CE9D5DE6ACB217;
IL2CPP_EXTERN_C String_t* _stringLiteral50623751D4FC8BA06CDD524BBE0F26D268939E09;
IL2CPP_EXTERN_C String_t* _stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932;
IL2CPP_EXTERN_C String_t* _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6;
IL2CPP_EXTERN_C String_t* _stringLiteral51C6279E31F7483126B79E3000116001A915B690;
IL2CPP_EXTERN_C String_t* _stringLiteral536AD1D6D09E3FF60B110BCF7C61CAC2A6B0D397;
IL2CPP_EXTERN_C String_t* _stringLiteral5607081EBC5A38ABEBFBF4E705DE9D9215154E72;
IL2CPP_EXTERN_C String_t* _stringLiteral560C311BA606901B751369745841EC8F31B5FD8F;
IL2CPP_EXTERN_C String_t* _stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D;
IL2CPP_EXTERN_C String_t* _stringLiteral58C9C290D14E469F4F8043C30DAE9B517DFD91E1;
IL2CPP_EXTERN_C String_t* _stringLiteral596FAE423911F69DCD2CF3EBBA9D04DB79824F57;
IL2CPP_EXTERN_C String_t* _stringLiteral5AC99274726A9DE2BFDE72AF9A09B4090D70A00D;
IL2CPP_EXTERN_C String_t* _stringLiteral5AFD3918EA9B0319000EB4A5665DDEB07CCB249B;
IL2CPP_EXTERN_C String_t* _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6;
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
IL2CPP_EXTERN_C String_t* _stringLiteral6099A97D6F389755E70DAD6DEFD4620F9AAFC7DB;
IL2CPP_EXTERN_C String_t* _stringLiteral60A8E46FB58B32469B01DE3ACE927FE91B27EC52;
IL2CPP_EXTERN_C String_t* _stringLiteral60F85EA97812A18CDB5BD580B7A841E17A25A794;
IL2CPP_EXTERN_C String_t* _stringLiteral6319A0ADA278E8CB5B493B705A3E0FAA420303CC;
IL2CPP_EXTERN_C String_t* _stringLiteral68D30E263818AD6C2D86F13DBA046121F5F7A1FD;
IL2CPP_EXTERN_C String_t* _stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9;
IL2CPP_EXTERN_C String_t* _stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437;
IL2CPP_EXTERN_C String_t* _stringLiteral6F8F57CB4EFADE4F9EB4B28556590324C8D0B936;
IL2CPP_EXTERN_C String_t* _stringLiteral6FE1D10402FA73D38B1019624B3D2A5B5C867A30;
IL2CPP_EXTERN_C String_t* _stringLiteral6FFF89F12DC2A6CF2CA9D0A3799CAF055178ACE5;
IL2CPP_EXTERN_C String_t* _stringLiteral71D2B38B0BA7DDAC3254DB28F151BAC82CA42218;
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
IL2CPP_EXTERN_C String_t* _stringLiteral75DAA5C16AD22FC6CBDC55CD16AD259D5A8F883D;
IL2CPP_EXTERN_C String_t* _stringLiteral78B67CC5FE62A8456C7B569FBAC1CD4B1E7A9285;
IL2CPP_EXTERN_C String_t* _stringLiteral7A0A2392ACF5A7B95F7BEF7E2031663D5C54B568;
IL2CPP_EXTERN_C String_t* _stringLiteral7A4DB5A48002D176FFD5642CCEECF519B68D44A0;
IL2CPP_EXTERN_C String_t* _stringLiteral7A6CE6FF125004EAF524C0442EB1278CD1CA4F7D;
IL2CPP_EXTERN_C String_t* _stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D;
IL2CPP_EXTERN_C String_t* _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E;
IL2CPP_EXTERN_C String_t* _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C;
IL2CPP_EXTERN_C String_t* _stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3;
IL2CPP_EXTERN_C String_t* _stringLiteral7ED334B1196CAA0013BCFAED11720B289ACE8657;
IL2CPP_EXTERN_C String_t* _stringLiteral804227437FFBF6A9357C617E09C9B6C0EEBC5105;
IL2CPP_EXTERN_C String_t* _stringLiteral84A1329FBF8622CAEBD57D1EB5B21C601AD7C870;
IL2CPP_EXTERN_C String_t* _stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88;
IL2CPP_EXTERN_C String_t* _stringLiteral873BA9CAE8EF9B2148F5C38D4124955263A836E1;
IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D;
IL2CPP_EXTERN_C String_t* _stringLiteral8A151D6090743D9E886008285DE3A3FB22BC228F;
IL2CPP_EXTERN_C String_t* _stringLiteral8C057E251F01D1246CA35725818EB4BECE3BF3B1;
IL2CPP_EXTERN_C String_t* _stringLiteral8D16E9432C04457309BE5660A7FAA2D0E26E3A7E;
IL2CPP_EXTERN_C String_t* _stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99;
IL2CPP_EXTERN_C String_t* _stringLiteral9429457DD16796EBBE1D06D01517DB7C764BA6A7;
IL2CPP_EXTERN_C String_t* _stringLiteral96A17B8E6FD3FD5FF20EA64D3C41EA5A5DE70330;
IL2CPP_EXTERN_C String_t* _stringLiteral96EC52420EC5AB3C6D55AE97C6E038E918ED0EC4;
IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694;
IL2CPP_EXTERN_C String_t* _stringLiteral9A181C52772E2BE53A280EA09B2A3C3BAC1681E5;
IL2CPP_EXTERN_C String_t* _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662;
IL2CPP_EXTERN_C String_t* _stringLiteral9B54B99D2D01A816F2DDC997E399877B2A8DB19C;
IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3;
IL2CPP_EXTERN_C String_t* _stringLiteral9D585EFA72289B5EB83C4E729C8843ADEA8F08D2;
IL2CPP_EXTERN_C String_t* _stringLiteral9DFFC3267C5F999585E61B45BA9C8DF18D4B02CA;
IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
IL2CPP_EXTERN_C String_t* _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C;
IL2CPP_EXTERN_C String_t* _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C;
IL2CPP_EXTERN_C String_t* _stringLiteralA363E5B14212F70344F9E4B42F6140A092D0E343;
IL2CPP_EXTERN_C String_t* _stringLiteralA36CB49041E31496EDB0CF9BBB01CEF6120EA3F4;
IL2CPP_EXTERN_C String_t* _stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E;
IL2CPP_EXTERN_C String_t* _stringLiteralA4074375C28F170F48C088A574F61A1A98069292;
IL2CPP_EXTERN_C String_t* _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827;
IL2CPP_EXTERN_C String_t* _stringLiteralA7B2BA46FD695B79CF60BB6970762E6C1E761E71;
IL2CPP_EXTERN_C String_t* _stringLiteralA843F9E227770024015378DF832E1A25CFCD73F2;
IL2CPP_EXTERN_C String_t* _stringLiteralA8DCEA6EA268D311C30598BDE81636EC3EEA7D44;
IL2CPP_EXTERN_C String_t* _stringLiteralAA4FDC6A5B67345B552422EDD8D4B812536A0575;
IL2CPP_EXTERN_C String_t* _stringLiteralAD6C3F7BBA285DE996C4023ED62F90C544C0C113;
IL2CPP_EXTERN_C String_t* _stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F;
IL2CPP_EXTERN_C String_t* _stringLiteralAF9E48D89B0F95FD7743676A1FD7D2BAF3E506F5;
IL2CPP_EXTERN_C String_t* _stringLiteralB1F08D0314C64CDEC75E61CB4671CE182F8F39A5;
IL2CPP_EXTERN_C String_t* _stringLiteralB3DD5AA2217C1BCE14B3CC8D0E8A2EC46E4F098E;
IL2CPP_EXTERN_C String_t* _stringLiteralB4C55B3EB787E57943196EB442BC171A969DCDCA;
IL2CPP_EXTERN_C String_t* _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58;
IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
IL2CPP_EXTERN_C String_t* _stringLiteralB8B7FF6EA48766107079374A4B073225864B5550;
IL2CPP_EXTERN_C String_t* _stringLiteralC0D69EE876D7C5C122F135FF788193F3718C6584;
IL2CPP_EXTERN_C String_t* _stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A;
IL2CPP_EXTERN_C String_t* _stringLiteralC5594ED9221B1600FB608D680692E07803A2EDBA;
IL2CPP_EXTERN_C String_t* _stringLiteralCD8CC2C551FD45E2551022E478C520A80DD62DDA;
IL2CPP_EXTERN_C String_t* _stringLiteralD26908498CB8612B538864E9368C4E6B7D359F3D;
IL2CPP_EXTERN_C String_t* _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6;
IL2CPP_EXTERN_C String_t* _stringLiteralD6879FB5AA9F284C75EF7F93BBF4F891A27C2426;
IL2CPP_EXTERN_C String_t* _stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554;
IL2CPP_EXTERN_C String_t* _stringLiteralD6E343F1FC14B98DB00C87F0E3819524F17E1996;
IL2CPP_EXTERN_C String_t* _stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7;
IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDC9368BD45FDADA419F19715727AA00136EDF092;
IL2CPP_EXTERN_C String_t* _stringLiteralDF2C12D438B63BDDB45563C56D85460A0AC2B6DF;
IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC;
IL2CPP_EXTERN_C String_t* _stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7;
IL2CPP_EXTERN_C String_t* _stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46;
IL2CPP_EXTERN_C String_t* _stringLiteralE234C34099947BE8BB6C958B450C81758FC6EC63;
IL2CPP_EXTERN_C String_t* _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF;
IL2CPP_EXTERN_C String_t* _stringLiteralE25534321226D9693D71A59D74F97A2E7C087499;
IL2CPP_EXTERN_C String_t* _stringLiteralE2B88E46159CFC01C6A8623898739CB2A93FAE87;
IL2CPP_EXTERN_C String_t* _stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29;
IL2CPP_EXTERN_C String_t* _stringLiteralE86D98C6DCF741AC261234D4DD6564807FFD6604;
IL2CPP_EXTERN_C String_t* _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490;
IL2CPP_EXTERN_C String_t* _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5;
IL2CPP_EXTERN_C String_t* _stringLiteralF055DA8792043562266B190C75E998854771F7DE;
IL2CPP_EXTERN_C String_t* _stringLiteralF120BE9B6A9F4F9A2A60DDDE77756405E8C5111C;
IL2CPP_EXTERN_C String_t* _stringLiteralF12B28CE864CCAE0D46FEC6689C6AE0CD61061EF;
IL2CPP_EXTERN_C String_t* _stringLiteralF2720902657F220A4255C591B7383B1661E21515;
IL2CPP_EXTERN_C String_t* _stringLiteralF2D53051A1FC8AFB412916CC43F2AC4BC8EA529C;
IL2CPP_EXTERN_C String_t* _stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF4A51C3F560CFFF758004A896D0F296062D4D2D8;
IL2CPP_EXTERN_C String_t* _stringLiteralFADD687304F8552C5DEE5C6D3CBD807002BF3720;
IL2CPP_EXTERN_C String_t* _stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8;
IL2CPP_EXTERN_C String_t* _stringLiteralFC0CDAC241F1E33895C656656CCAFD1419A41699;
IL2CPP_EXTERN_C String_t* _stringLiteralFC344454A143AB042DC5757AA44FB10C745C1E4D;
IL2CPP_EXTERN_C String_t* _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mEAA5A22918AD0DC18FCF48568E89C0F5794B105A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4A66450CDA32222827A7E731E42D9B9D85CB8324_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CImportClassMappingU3Eb__28_0_m7BA8969084E3BC672F0D242519C60B3BC8204B2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlCustomFormatter_FromEnum_m6B1BC1859F10CDB1C04A13AB2CCFB37CD0D80D18_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_GetDefaultValue_m9AC659BFACAF9F4E2ED88A32F9B0622C5FBACDA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportAnyElementInfo_m26B24C22E7A373EF178E830CFF15E0E04EA0155A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportListMapping_mB880ED974E84B7B9A2B588B3BF2CCC52EDF67739_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlReflectionImporter_IncludeType_mE13BACE7F8651EA6C6C9B8C8D8257D27CEE9D1BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadClassInstance_m2D516034470771EE80D8AE702D2C74DEAC657AA2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadObject_m96FED952EBA3659E737FBCED7883FFFB43EF113E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReader_OnUnknownNode_m9ADED58E840CB4F7C093F960B87DC1BD2E438B39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D;
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
struct XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5;
struct XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF;
struct XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E;
struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1;
struct EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember>
struct List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XmlReflectionMemberU5BU5D_t9331ADE1BB3FA9D45849226BBF1BA1021E66F0A9* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XmlReflectionMemberU5BU5D_t9331ADE1BB3FA9D45849226BBF1BA1021E66F0A9* ___s_emptyArray_5;
};
struct Il2CppArrayBounds;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
{
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____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;
};
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
};
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// System.Collections.CollectionBase
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F : public RuntimeObject
{
// System.Collections.ArrayList System.Collections.CollectionBase::_list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_0;
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject* ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.DBNull
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC : public RuntimeObject
{
};
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields
{
// System.DBNull System.DBNull::Value
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0;
};
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
{
};
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
{
// System.EventArgs System.EventArgs::Empty
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// System.Runtime.Serialization.ObjectIDGenerator
struct ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B : public RuntimeObject
{
// System.Int32 System.Runtime.Serialization.ObjectIDGenerator::m_currentCount
int32_t ___m_currentCount_0;
// System.Int32 System.Runtime.Serialization.ObjectIDGenerator::m_currentSize
int32_t ___m_currentSize_1;
// System.Int64[] System.Runtime.Serialization.ObjectIDGenerator::m_ids
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ___m_ids_2;
// System.Object[] System.Runtime.Serialization.ObjectIDGenerator::m_objs
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_objs_3;
};
struct ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_StaticFields
{
// System.Int32[] System.Runtime.Serialization.ObjectIDGenerator::sizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___sizes_4;
};
// System.Xml.Serialization.ObjectMap
struct ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0 : public RuntimeObject
{
};
// System.Collections.Queue
struct Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC : public RuntimeObject
{
// System.Object[] System.Collections.Queue::_array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____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;
// System.Object System.Collections.Queue::_syncRoot
RuntimeObject* ____syncRoot_6;
};
// System.Xml.Serialization.ReflectionHelper
struct ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB : public RuntimeObject
{
// System.Collections.Hashtable System.Xml.Serialization.ReflectionHelper::_clrTypes
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____clrTypes_0;
// System.Collections.Hashtable System.Xml.Serialization.ReflectionHelper::_schemaTypes
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____schemaTypes_1;
};
struct ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_StaticFields
{
// System.Reflection.ParameterModifier[] System.Xml.Serialization.ReflectionHelper::empty_modifiers
ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364* ___empty_modifiers_2;
};
// System.Xml.Serialization.SerializationSource
struct SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C : public RuntimeObject
{
// System.Type[] System.Xml.Serialization.SerializationSource::includedTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___includedTypes_0;
// System.String System.Xml.Serialization.SerializationSource::namspace
String_t* ___namspace_1;
// System.Boolean System.Xml.Serialization.SerializationSource::canBeGenerated
bool ___canBeGenerated_2;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// System.Xml.Serialization.TypeMember
struct TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D : public RuntimeObject
{
// System.Type System.Xml.Serialization.TypeMember::type
Type_t* ___type_0;
// System.String System.Xml.Serialization.TypeMember::member
String_t* ___member_1;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// System.Xml.Serialization.XmlAttributeOverrides
struct XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60 : public RuntimeObject
{
// System.Collections.Hashtable System.Xml.Serialization.XmlAttributeOverrides::overrides
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___overrides_0;
};
// System.Xml.Serialization.XmlAttributes
struct XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739 : public RuntimeObject
{
// System.Xml.Serialization.XmlAnyAttributeAttribute System.Xml.Serialization.XmlAttributes::xmlAnyAttribute
XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* ___xmlAnyAttribute_0;
// System.Xml.Serialization.XmlAnyElementAttributes System.Xml.Serialization.XmlAttributes::xmlAnyElements
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* ___xmlAnyElements_1;
// System.Xml.Serialization.XmlArrayAttribute System.Xml.Serialization.XmlAttributes::xmlArray
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* ___xmlArray_2;
// System.Xml.Serialization.XmlArrayItemAttributes System.Xml.Serialization.XmlAttributes::xmlArrayItems
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* ___xmlArrayItems_3;
// System.Xml.Serialization.XmlAttributeAttribute System.Xml.Serialization.XmlAttributes::xmlAttribute
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* ___xmlAttribute_4;
// System.Xml.Serialization.XmlChoiceIdentifierAttribute System.Xml.Serialization.XmlAttributes::xmlChoiceIdentifier
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* ___xmlChoiceIdentifier_5;
// System.Object System.Xml.Serialization.XmlAttributes::xmlDefaultValue
RuntimeObject* ___xmlDefaultValue_6;
// System.Xml.Serialization.XmlElementAttributes System.Xml.Serialization.XmlAttributes::xmlElements
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* ___xmlElements_7;
// System.Xml.Serialization.XmlEnumAttribute System.Xml.Serialization.XmlAttributes::xmlEnum
XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* ___xmlEnum_8;
// System.Boolean System.Xml.Serialization.XmlAttributes::xmlIgnore
bool ___xmlIgnore_9;
// System.Boolean System.Xml.Serialization.XmlAttributes::xmlns
bool ___xmlns_10;
// System.Xml.Serialization.XmlRootAttribute System.Xml.Serialization.XmlAttributes::xmlRoot
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___xmlRoot_11;
// System.Xml.Serialization.XmlTextAttribute System.Xml.Serialization.XmlAttributes::xmlText
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* ___xmlText_12;
// System.Xml.Serialization.XmlTypeAttribute System.Xml.Serialization.XmlAttributes::xmlType
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* ___xmlType_13;
};
// System.Xml.Serialization.XmlCustomFormatter
struct XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471 : public RuntimeObject
{
};
struct XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_StaticFields
{
// System.String[] System.Xml.Serialization.XmlCustomFormatter::allTimeFormats
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allTimeFormats_0;
};
// System.Xml.Serialization.XmlMemberMapping
struct XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B : public RuntimeObject
{
};
// System.Xml.XmlNameTable
struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8 : public RuntimeObject
{
};
// System.Xml.XmlNode
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlNode::parentNode
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode_0;
};
// System.Xml.XmlNodeList
struct XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85 : public RuntimeObject
{
};
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9 : public RuntimeObject
{
// 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;
};
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields
{
// System.Xml.XmlQualifiedName/HashCodeOfStringDelegate System.Xml.XmlQualifiedName::hashCodeDelegate
HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA* ___hashCodeDelegate_0;
// System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___Empty_4;
};
// System.Xml.XmlReader
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD : public RuntimeObject
{
};
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields
{
// System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap
uint32_t ___IsTextualNodeBitmap_0;
// System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap
uint32_t ___CanReadContentAsBitmap_1;
// System.UInt32 System.Xml.XmlReader::HasValueBitmap
uint32_t ___HasValueBitmap_2;
};
// System.Xml.Serialization.XmlReflectionImporter
struct XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6 : public RuntimeObject
{
// System.String System.Xml.Serialization.XmlReflectionImporter::initialDefaultNamespace
String_t* ___initialDefaultNamespace_0;
// System.Xml.Serialization.XmlAttributeOverrides System.Xml.Serialization.XmlReflectionImporter::attributeOverrides
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___attributeOverrides_1;
// System.Collections.ArrayList System.Xml.Serialization.XmlReflectionImporter::includedTypes
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___includedTypes_2;
// System.Xml.Serialization.ReflectionHelper System.Xml.Serialization.XmlReflectionImporter::helper
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* ___helper_3;
// System.Int32 System.Xml.Serialization.XmlReflectionImporter::arrayChoiceCount
int32_t ___arrayChoiceCount_4;
// System.Collections.ArrayList System.Xml.Serialization.XmlReflectionImporter::relatedMaps
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___relatedMaps_5;
// System.Boolean System.Xml.Serialization.XmlReflectionImporter::allowPrivateTypes
bool ___allowPrivateTypes_6;
};
struct XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields
{
// System.String System.Xml.Serialization.XmlReflectionImporter::errSimple
String_t* ___errSimple_7;
// System.String System.Xml.Serialization.XmlReflectionImporter::errSimple2
String_t* ___errSimple2_8;
};
// System.Xml.Serialization.XmlReflectionMember
struct XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A : public RuntimeObject
{
// System.Boolean System.Xml.Serialization.XmlReflectionMember::isReturnValue
bool ___isReturnValue_0;
// System.String System.Xml.Serialization.XmlReflectionMember::memberName
String_t* ___memberName_1;
// System.Type System.Xml.Serialization.XmlReflectionMember::memberType
Type_t* ___memberType_2;
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlReflectionMember::xmlAttributes
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___xmlAttributes_3;
// System.Type System.Xml.Serialization.XmlReflectionMember::declaringType
Type_t* ___declaringType_4;
};
// System.Xml.Serialization.XmlSerializationGeneratedCode
struct XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F : public RuntimeObject
{
};
// System.Xml.Serialization.XmlSerializer
struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B : public RuntimeObject
{
// System.Boolean System.Xml.Serialization.XmlSerializer::customSerializer
bool ___customSerializer_4;
// System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializer::typeMapping
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___typeMapping_5;
// System.Xml.Serialization.XmlSerializer/SerializerData System.Xml.Serialization.XmlSerializer::serializerData
SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* ___serializerData_6;
// System.Xml.Serialization.UnreferencedObjectEventHandler System.Xml.Serialization.XmlSerializer::onUnreferencedObject
UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A* ___onUnreferencedObject_8;
// System.Xml.Serialization.XmlAttributeEventHandler System.Xml.Serialization.XmlSerializer::onUnknownAttribute
XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65* ___onUnknownAttribute_9;
// System.Xml.Serialization.XmlElementEventHandler System.Xml.Serialization.XmlSerializer::onUnknownElement
XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3* ___onUnknownElement_10;
// System.Xml.Serialization.XmlNodeEventHandler System.Xml.Serialization.XmlSerializer::onUnknownNode
XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670* ___onUnknownNode_11;
};
struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields
{
// System.Int32 System.Xml.Serialization.XmlSerializer::generationThreshold
int32_t ___generationThreshold_0;
// System.Boolean System.Xml.Serialization.XmlSerializer::backgroundGeneration
bool ___backgroundGeneration_1;
// System.Boolean System.Xml.Serialization.XmlSerializer::deleteTempFiles
bool ___deleteTempFiles_2;
// System.Boolean System.Xml.Serialization.XmlSerializer::generatorFallback
bool ___generatorFallback_3;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializer::serializerTypes
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___serializerTypes_7;
};
// System.Xml.Serialization.XmlSerializerNamespaces
struct XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93 : public RuntimeObject
{
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializerNamespaces::namespaces
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___namespaces_0;
};
// System.Xml.Serialization.XmlTypeMapMember
struct XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A : public RuntimeObject
{
// System.String System.Xml.Serialization.XmlTypeMapMember::_name
String_t* ____name_0;
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::_index
int32_t ____index_1;
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::_globalIndex
int32_t ____globalIndex_2;
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::_specifiedGlobalIndex
int32_t ____specifiedGlobalIndex_3;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::_typeData
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ____typeData_4;
// System.Reflection.MemberInfo System.Xml.Serialization.XmlTypeMapMember::_member
MemberInfo_t* ____member_5;
// System.Reflection.MemberInfo System.Xml.Serialization.XmlTypeMapMember::_specifiedMember
MemberInfo_t* ____specifiedMember_6;
// System.Reflection.MethodInfo System.Xml.Serialization.XmlTypeMapMember::_shouldSerialize
MethodInfo_t* ____shouldSerialize_7;
// System.Object System.Xml.Serialization.XmlTypeMapMember::_defaultValue
RuntimeObject* ____defaultValue_8;
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::_flags
int32_t ____flags_9;
};
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F : public RuntimeObject
{
// System.Char[] System.Xml.XmlWriter::writeNodeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeNodeBuffer_0;
};
// System.Xml.Serialization.EnumMap/EnumMapMember
struct EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38 : public RuntimeObject
{
// 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;
};
// System.Xml.Serialization.XmlReflectionImporter/<>c
struct U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81 : public RuntimeObject
{
};
struct U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields
{
// System.Xml.Serialization.XmlReflectionImporter/<>c System.Xml.Serialization.XmlReflectionImporter/<>c::<>9
U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81* ___U3CU3E9_0;
// System.Comparison`1<System.Xml.Serialization.XmlReflectionMember> System.Xml.Serialization.XmlReflectionImporter/<>c::<>9__28_0
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* ___U3CU3E9__28_0_1;
};
// System.Xml.Serialization.XmlSerializationReader/CollectionFixup
struct CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702 : public RuntimeObject
{
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::callback
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* ___callback_0;
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::collection
RuntimeObject* ___collection_1;
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::collectionItems
RuntimeObject* ___collectionItems_2;
// System.String System.Xml.Serialization.XmlSerializationReader/CollectionFixup::id
String_t* ___id_3;
};
// System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup
struct CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11 : public RuntimeObject
{
// System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::list
RuntimeArray* ___list_0;
// System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::index
int32_t ___index_1;
// System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::id
String_t* ___id_2;
};
// System.Xml.Serialization.XmlSerializationReader/Fixup
struct Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566 : public RuntimeObject
{
// System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::source
RuntimeObject* ___source_0;
// System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::ids
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___ids_1;
// System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::callback
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* ___callback_2;
};
// System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo
struct WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D : public RuntimeObject
{
// System.Type System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::Type
Type_t* ___Type_0;
// System.String System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::TypeName
String_t* ___TypeName_1;
// System.String System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::TypeNs
String_t* ___TypeNs_2;
// System.Xml.Serialization.XmlSerializationReadCallback System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::Callback
XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* ___Callback_3;
};
// System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo
struct FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475 : public RuntimeObject
{
// System.Xml.Serialization.XmlSerializationReaderInterpreter System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_sri
XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ____sri_0;
// System.Xml.Serialization.ClassMap System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_map
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ____map_1;
// System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_isValueList
bool ____isValueList_2;
};
// System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo
struct ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB : public RuntimeObject
{
// System.Xml.Serialization.XmlSerializationReaderInterpreter System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::_sri
XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ____sri_0;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::_typeMap
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____typeMap_1;
};
// System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo
struct WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6 : public RuntimeObject
{
// System.Type System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::Type
Type_t* ___Type_0;
// System.String System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::TypeName
String_t* ___TypeName_1;
// System.String System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::TypeNs
String_t* ___TypeNs_2;
// System.Xml.Serialization.XmlSerializationWriteCallback System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::Callback
XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* ___Callback_3;
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<System.Xml.Serialization.XmlReflectionMember>
struct Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ____current_3;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.Nullable`1<System.Int32>
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.DateTime
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
{
// System.UInt64 System.DateTime::_dateData
uint64_t ____dateData_46;
};
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
{
// System.Int32[] System.DateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
// System.Int32[] System.DateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
// System.DateTime System.DateTime::MinValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
// System.DateTime System.DateTime::MaxValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
// System.DateTime System.DateTime::UnixEpoch
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
};
// System.Decimal
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Decimal::flags
int32_t ___flags_8;
};
#pragma pack(pop, tp)
struct
{
int32_t ___flags_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hi_9_OffsetPadding[4];
// System.Int32 System.Decimal::hi
int32_t ___hi_9;
};
#pragma pack(pop, tp)
struct
{
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
int32_t ___hi_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lo_10_OffsetPadding[8];
// System.Int32 System.Decimal::lo
int32_t ___lo_10;
};
#pragma pack(pop, tp)
struct
{
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
int32_t ___lo_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___mid_11_OffsetPadding[12];
// System.Int32 System.Decimal::mid
int32_t ___mid_11;
};
#pragma pack(pop, tp)
struct
{
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
int32_t ___mid_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___ulomidLE_12_OffsetPadding[8];
// System.UInt64 System.Decimal::ulomidLE
uint64_t ___ulomidLE_12;
};
#pragma pack(pop, tp)
struct
{
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
uint64_t ___ulomidLE_12_forAlignmentOnly;
};
};
};
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
{
// System.Decimal System.Decimal::Zero
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
// System.Decimal System.Decimal::One
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
// System.Decimal System.Decimal::MinusOne
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
// System.Decimal System.Decimal::MaxValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
// System.Decimal System.Decimal::MinValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
};
// System.ComponentModel.DefaultValueAttribute
struct DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.Object System.ComponentModel.DefaultValueAttribute::_value
RuntimeObject* ____value_0;
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
{
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject* ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject* ____value_1;
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// System.Xml.Serialization.EnumMap
struct EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C : public ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0
{
// System.Xml.Serialization.EnumMap/EnumMapMember[] System.Xml.Serialization.EnumMap::_members
EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* ____members_0;
// System.Boolean System.Xml.Serialization.EnumMap::_isFlags
bool ____isFlags_1;
// System.String[] System.Xml.Serialization.EnumMap::_enumNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____enumNames_2;
// System.String[] System.Xml.Serialization.EnumMap::_xmlNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____xmlNames_3;
// System.Int64[] System.Xml.Serialization.EnumMap::_values
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ____values_4;
};
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
};
// System.Guid
struct Guid_t
{
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
};
struct Guid_t_StaticFields
{
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// System.Xml.Serialization.ListMap
struct ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC : public ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0
{
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::_itemInfo
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ____itemInfo_0;
// System.String System.Xml.Serialization.ListMap::_choiceMember
String_t* ____choiceMember_1;
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// System.Xml.Serialization.UnreferencedObjectEventArgs
struct UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Object System.Xml.Serialization.UnreferencedObjectEventArgs::o
RuntimeObject* ___o_1;
// System.String System.Xml.Serialization.UnreferencedObjectEventArgs::id
String_t* ___id_2;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Xml.Serialization.XmlAnyAttributeAttribute
struct XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// System.Xml.Serialization.XmlAnyElementAttribute
struct XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlAnyElementAttribute::elementName
String_t* ___elementName_0;
// System.String System.Xml.Serialization.XmlAnyElementAttribute::ns
String_t* ___ns_1;
// System.Int32 System.Xml.Serialization.XmlAnyElementAttribute::order
int32_t ___order_2;
};
// System.Xml.Serialization.XmlAnyElementAttributes
struct XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF : public CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F
{
};
// System.Xml.Serialization.XmlArrayItemAttributes
struct XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513 : public CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F
{
};
// System.Xml.XmlAttribute
struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18 : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlName System.Xml.XmlAttribute::name
XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_1;
// System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_2;
};
// System.Xml.Serialization.XmlAttributeEventArgs
struct XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Object System.Xml.Serialization.XmlAttributeEventArgs::o
RuntimeObject* ___o_1;
// System.Xml.XmlAttribute System.Xml.Serialization.XmlAttributeEventArgs::attr
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr_2;
// System.String System.Xml.Serialization.XmlAttributeEventArgs::qnames
String_t* ___qnames_3;
// System.Int32 System.Xml.Serialization.XmlAttributeEventArgs::lineNumber
int32_t ___lineNumber_4;
// System.Int32 System.Xml.Serialization.XmlAttributeEventArgs::linePosition
int32_t ___linePosition_5;
};
// System.Xml.Serialization.XmlChoiceIdentifierAttribute
struct XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlChoiceIdentifierAttribute::memberName
String_t* ___memberName_0;
};
// System.Xml.XmlDocument
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlImplementation System.Xml.XmlDocument::implementation
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___implementation_1;
// System.Xml.DomNameTable System.Xml.XmlDocument::domNameTable
DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* ___domNameTable_2;
// System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::entities
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_4;
// System.Collections.Hashtable System.Xml.XmlDocument::htElementIdMap
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIdMap_5;
// System.Collections.Hashtable System.Xml.XmlDocument::htElementIDAttrDecl
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIDAttrDecl_6;
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::schemaInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_7;
// System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas_8;
// System.Boolean System.Xml.XmlDocument::reportValidity
bool ___reportValidity_9;
// System.Boolean System.Xml.XmlDocument::actualLoadingStatus
bool ___actualLoadingStatus_10;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertingDelegate_11;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertedDelegate_12;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovingDelegate_13;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovedDelegate_14;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangingDelegate_15;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangedDelegate_16;
// System.Boolean System.Xml.XmlDocument::fEntRefNodesPresent
bool ___fEntRefNodesPresent_17;
// System.Boolean System.Xml.XmlDocument::fCDataNodesPresent
bool ___fCDataNodesPresent_18;
// System.Boolean System.Xml.XmlDocument::preserveWhitespace
bool ___preserveWhitespace_19;
// System.Boolean System.Xml.XmlDocument::isLoading
bool ___isLoading_20;
// System.String System.Xml.XmlDocument::strDocumentName
String_t* ___strDocumentName_21;
// System.String System.Xml.XmlDocument::strDocumentFragmentName
String_t* ___strDocumentFragmentName_22;
// System.String System.Xml.XmlDocument::strCommentName
String_t* ___strCommentName_23;
// System.String System.Xml.XmlDocument::strTextName
String_t* ___strTextName_24;
// System.String System.Xml.XmlDocument::strCDataSectionName
String_t* ___strCDataSectionName_25;
// System.String System.Xml.XmlDocument::strEntityName
String_t* ___strEntityName_26;
// System.String System.Xml.XmlDocument::strID
String_t* ___strID_27;
// System.String System.Xml.XmlDocument::strXmlns
String_t* ___strXmlns_28;
// System.String System.Xml.XmlDocument::strXml
String_t* ___strXml_29;
// System.String System.Xml.XmlDocument::strSpace
String_t* ___strSpace_30;
// System.String System.Xml.XmlDocument::strLang
String_t* ___strLang_31;
// System.String System.Xml.XmlDocument::strEmpty
String_t* ___strEmpty_32;
// System.String System.Xml.XmlDocument::strNonSignificantWhitespaceName
String_t* ___strNonSignificantWhitespaceName_33;
// System.String System.Xml.XmlDocument::strSignificantWhitespaceName
String_t* ___strSignificantWhitespaceName_34;
// System.String System.Xml.XmlDocument::strReservedXmlns
String_t* ___strReservedXmlns_35;
// System.String System.Xml.XmlDocument::strReservedXml
String_t* ___strReservedXml_36;
// System.String System.Xml.XmlDocument::baseURI
String_t* ___baseURI_37;
// System.Xml.XmlResolver System.Xml.XmlDocument::resolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver_38;
// System.Boolean System.Xml.XmlDocument::bSetResolver
bool ___bSetResolver_39;
// System.Object System.Xml.XmlDocument::objLock
RuntimeObject* ___objLock_40;
};
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields
{
// System.Xml.EmptyEnumerator System.Xml.XmlDocument::EmptyEnumerator
EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* ___EmptyEnumerator_41;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::NotKnownSchemaInfo
RuntimeObject* ___NotKnownSchemaInfo_42;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::ValidSchemaInfo
RuntimeObject* ___ValidSchemaInfo_43;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::InvalidSchemaInfo
RuntimeObject* ___InvalidSchemaInfo_44;
};
// System.Xml.Serialization.XmlElementAttributes
struct XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50 : public CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F
{
};
// System.Xml.Serialization.XmlElementEventArgs
struct XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Object System.Xml.Serialization.XmlElementEventArgs::o
RuntimeObject* ___o_1;
// System.Xml.XmlElement System.Xml.Serialization.XmlElementEventArgs::elem
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem_2;
// System.String System.Xml.Serialization.XmlElementEventArgs::qnames
String_t* ___qnames_3;
// System.Int32 System.Xml.Serialization.XmlElementEventArgs::lineNumber
int32_t ___lineNumber_4;
// System.Int32 System.Xml.Serialization.XmlElementEventArgs::linePosition
int32_t ___linePosition_5;
};
// System.Xml.Serialization.XmlEnumAttribute
struct XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlEnumAttribute::name
String_t* ___name_0;
};
// System.Xml.Serialization.XmlIgnoreAttribute
struct XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// System.Xml.Serialization.XmlIncludeAttribute
struct XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.Type System.Xml.Serialization.XmlIncludeAttribute::type
Type_t* ___type_0;
};
// System.Xml.XmlLinkedNode
struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlLinkedNode System.Xml.XmlLinkedNode::next
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___next_1;
};
// System.Xml.Serialization.XmlNamespaceDeclarationsAttribute
struct XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// System.Xml.Serialization.XmlNodeEventArgs
struct XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Object System.Xml.Serialization.XmlNodeEventArgs::o
RuntimeObject* ___o_1;
// System.Xml.XmlNode System.Xml.Serialization.XmlNodeEventArgs::xmlNode
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___xmlNode_2;
// System.Int32 System.Xml.Serialization.XmlNodeEventArgs::lineNumber
int32_t ___lineNumber_3;
// System.Int32 System.Xml.Serialization.XmlNodeEventArgs::linePosition
int32_t ___linePosition_4;
};
// System.Xml.Serialization.XmlRootAttribute
struct XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlRootAttribute::dataType
String_t* ___dataType_0;
// System.String System.Xml.Serialization.XmlRootAttribute::elementName
String_t* ___elementName_1;
// System.Boolean System.Xml.Serialization.XmlRootAttribute::isNullable
bool ___isNullable_2;
// System.String System.Xml.Serialization.XmlRootAttribute::ns
String_t* ___ns_3;
};
// System.Xml.Serialization.XmlSchemaProviderAttribute
struct XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlSchemaProviderAttribute::_methodName
String_t* ____methodName_0;
// System.Boolean System.Xml.Serialization.XmlSchemaProviderAttribute::_isAny
bool ____isAny_1;
};
// System.Xml.Serialization.XmlSerializationReader
struct XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597 : public XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F
{
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::document
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___document_0;
// System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::reader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_1;
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::fixups
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___fixups_2;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::collFixups
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___collFixups_3;
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::collItemFixups
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___collItemFixups_4;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::typesCallbacks
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___typesCallbacks_5;
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::noIDTargets
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___noIDTargets_6;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::targets
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___targets_7;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::delayedListFixups
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___delayedListFixups_8;
// System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializationReader::eventSource
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* ___eventSource_9;
// System.Int32 System.Xml.Serialization.XmlSerializationReader::delayedFixupId
int32_t ___delayedFixupId_10;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::referencedObjects
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___referencedObjects_11;
// System.Int32 System.Xml.Serialization.XmlSerializationReader::readCount
int32_t ___readCount_12;
// System.Int32 System.Xml.Serialization.XmlSerializationReader::whileIterationCount
int32_t ___whileIterationCount_13;
// System.String System.Xml.Serialization.XmlSerializationReader::w3SchemaNS
String_t* ___w3SchemaNS_14;
// System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS
String_t* ___w3InstanceNS_15;
// System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS2000
String_t* ___w3InstanceNS2000_16;
// System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS1999
String_t* ___w3InstanceNS1999_17;
// System.String System.Xml.Serialization.XmlSerializationReader::soapNS
String_t* ___soapNS_18;
// System.String System.Xml.Serialization.XmlSerializationReader::wsdlNS
String_t* ___wsdlNS_19;
// System.String System.Xml.Serialization.XmlSerializationReader::nullX
String_t* ___nullX_20;
// System.String System.Xml.Serialization.XmlSerializationReader::nil
String_t* ___nil_21;
// System.String System.Xml.Serialization.XmlSerializationReader::typeX
String_t* ___typeX_22;
// System.String System.Xml.Serialization.XmlSerializationReader::arrayType
String_t* ___arrayType_23;
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::arrayQName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___arrayQName_24;
};
// System.Xml.Serialization.XmlSerializationWriter
struct XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B : public XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F
{
// System.Runtime.Serialization.ObjectIDGenerator System.Xml.Serialization.XmlSerializationWriter::idGenerator
ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* ___idGenerator_0;
// System.Int32 System.Xml.Serialization.XmlSerializationWriter::qnameCount
int32_t ___qnameCount_1;
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::topLevelElement
bool ___topLevelElement_2;
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationWriter::namespaces
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___namespaces_3;
// System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::writer
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer_4;
// System.Collections.Queue System.Xml.Serialization.XmlSerializationWriter::referencedElements
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* ___referencedElements_5;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationWriter::callbacks
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___callbacks_6;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationWriter::serializedObjects
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___serializedObjects_7;
};
// System.Xml.Serialization.XmlTextAttribute
struct XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlTextAttribute::dataType
String_t* ___dataType_0;
// System.Type System.Xml.Serialization.XmlTextAttribute::type
Type_t* ___type_1;
};
// System.Xml.XmlTextReader
struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::impl
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___impl_3;
};
// System.Xml.Serialization.XmlTypeAttribute
struct XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.Boolean System.Xml.Serialization.XmlTypeAttribute::includeInSchema
bool ___includeInSchema_0;
// System.String System.Xml.Serialization.XmlTypeAttribute::ns
String_t* ___ns_1;
// System.String System.Xml.Serialization.XmlTypeAttribute::typeName
String_t* ___typeName_2;
};
// System.Xml.Serialization.XmlTypeMapElementInfoList
struct XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78 : public ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A
{
};
// System.Xml.Serialization.XmlTypeMapMemberAnyAttribute
struct XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A
{
};
// System.Xml.Serialization.XmlTypeMapMemberElement
struct XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A
{
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::_elementInfo
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ____elementInfo_10;
// System.String System.Xml.Serialization.XmlTypeMapMemberElement::_choiceMember
String_t* ____choiceMember_11;
// System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::_isTextCollector
bool ____isTextCollector_12;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::_choiceTypeData
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ____choiceTypeData_13;
};
// System.Xml.Serialization.XmlTypeMapMemberNamespaces
struct XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A
{
};
// System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0
{
// System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::field
RuntimeObject* ___field_0;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_pinvoke
{
Il2CppIUnknown* ___field_0;
};
// Native definition for COM marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_com
{
Il2CppIUnknown* ___field_0;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// System.Xml.Serialization.ClassMap
struct ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109 : public ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0
{
// System.Collections.Hashtable System.Xml.Serialization.ClassMap::_elements
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____elements_0;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::_elementMembers
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____elementMembers_1;
// System.Collections.Hashtable System.Xml.Serialization.ClassMap::_attributeMembers
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____attributeMembers_2;
// System.Xml.Serialization.XmlTypeMapMemberAttribute[] System.Xml.Serialization.ClassMap::_attributeMembersArray
XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* ____attributeMembersArray_3;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::_flatLists
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____flatLists_4;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::_allMembers
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____allMembers_5;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::_membersWithDefault
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____membersWithDefault_6;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::_listMembers
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____listMembers_7;
// System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::_defaultAnyElement
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ____defaultAnyElement_8;
// System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::_defaultAnyAttribute
XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ____defaultAnyAttribute_9;
// System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::_namespaceDeclarations
XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ____namespaceDeclarations_10;
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::_xmlTextCollector
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ____xmlTextCollector_11;
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::_returnMember
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ____returnMember_12;
// System.Boolean System.Xml.Serialization.ClassMap::_ignoreMemberNamespace
bool ____ignoreMemberNamespace_13;
// System.Boolean System.Xml.Serialization.ClassMap::_canBeSimpleType
bool ____canBeSimpleType_14;
// System.Nullable`1<System.Boolean> System.Xml.Serialization.ClassMap::_isOrderDependentMap
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ____isOrderDependentMap_15;
};
// System.Globalization.DateTimeFormatFlags
struct DateTimeFormatFlags_tB7CDDA8D7A3A0B2B9F64DB7704671F07FCE88FDC
{
// System.Int32 System.Globalization.DateTimeFormatFlags::value__
int32_t ___value___2;
};
// System.Globalization.DateTimeStyles
struct DateTimeStyles_t68D2C41B347837759F064D04F256AC268AF50465
{
// System.Int32 System.Globalization.DateTimeStyles::value__
int32_t ___value___2;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
{
// System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets
bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10;
// System.Int32 System.Collections.Hashtable::_count
int32_t ____count_11;
// System.Int32 System.Collections.Hashtable::_occupancy
int32_t ____occupancy_12;
// System.Int32 System.Collections.Hashtable::_loadsize
int32_t ____loadsize_13;
// System.Single System.Collections.Hashtable::_loadFactor
float ____loadFactor_14;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version
int32_t ____version_15;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress
bool ____isWriterInProgress_16;
// System.Collections.ICollection System.Collections.Hashtable::_keys
RuntimeObject* ____keys_17;
// System.Collections.ICollection System.Collections.Hashtable::_values
RuntimeObject* ____values_18;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_19;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject* ____syncRoot_20;
};
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
{
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Hashtable::s_serializationInfoTable
ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21;
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_tDAEC8B3C5986B042F8F9B0845505D0FC15F92E68
{
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
};
// System.Xml.ReadState
struct ReadState_t1D77BBA83B1B8C9A73F295AA02C60CF3E3E43960
{
// System.Int32 System.Xml.ReadState::value__
int32_t ___value___2;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// System.Xml.Serialization.SchemaTypes
struct SchemaTypes_t2B774F27827D697F5216B28193D76522A3C142E2
{
// System.Int32 System.Xml.Serialization.SchemaTypes::value__
int32_t ___value___2;
};
// System.Xml.Serialization.SerializationFormat
struct SerializationFormat_t7888038BE2B1AF3EAE59C6495FAAF5F4B451B519
{
// System.Int32 System.Xml.Serialization.SerializationFormat::value__
int32_t ___value___2;
};
// System.StringSplitOptions
struct StringSplitOptions_t4DD892C76C70DD4800FC1B76054D69826F770062
{
// System.Int32 System.StringSplitOptions::value__
int32_t ___value___2;
};
// System.Xml.WriteState
struct WriteState_t7C7DD3FA495CE7586781A5919ECDD49CD0270729
{
// System.Int32 System.Xml.WriteState::value__
int32_t ___value___2;
};
// System.Xml.XmlDateTimeSerializationMode
struct XmlDateTimeSerializationMode_tF35C42BE60C28E33BBEFAC710B67C376A7A33375
{
// System.Int32 System.Xml.XmlDateTimeSerializationMode::value__
int32_t ___value___2;
};
// System.Xml.XmlElement
struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.Xml.XmlName System.Xml.XmlElement::name
XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_2;
// System.Xml.XmlAttributeCollection System.Xml.XmlElement::attributes
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* ___attributes_3;
// System.Xml.XmlLinkedNode System.Xml.XmlElement::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_4;
};
// System.Xml.XmlNamedNodeMap
struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::parent
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent_0;
// System.Xml.XmlNamedNodeMap/SmallXmlNodeList System.Xml.XmlNamedNodeMap::nodes
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0 ___nodes_1;
};
// System.Xml.XmlNodeType
struct XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95
{
// System.Int32 System.Xml.XmlNodeType::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSchemaForm
struct XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B
{
// System.Int32 System.Xml.Schema.XmlSchemaForm::value__
int32_t ___value___2;
};
// System.Xml.Serialization.XmlTypeMapMemberExpandable
struct XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE : public XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840
{
// System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::_flatArrayIndex
int32_t ____flatArrayIndex_14;
};
// System.Xml.Serialization.XmlTypeMapMemberList
struct XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E : public XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840
{
};
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A : public RuntimeObject
{
// System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ____cultureData_1;
// System.String System.Globalization.DateTimeFormatInfo::_name
String_t* ____name_2;
// System.String System.Globalization.DateTimeFormatInfo::_langName
String_t* ____langName_3;
// System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::_compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ____compareInfo_4;
// System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::_cultureInfo
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____cultureInfo_5;
// System.String System.Globalization.DateTimeFormatInfo::amDesignator
String_t* ___amDesignator_6;
// System.String System.Globalization.DateTimeFormatInfo::pmDesignator
String_t* ___pmDesignator_7;
// System.String System.Globalization.DateTimeFormatInfo::dateSeparator
String_t* ___dateSeparator_8;
// System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern
String_t* ___generalShortTimePattern_9;
// System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern
String_t* ___generalLongTimePattern_10;
// System.String System.Globalization.DateTimeFormatInfo::timeSeparator
String_t* ___timeSeparator_11;
// System.String System.Globalization.DateTimeFormatInfo::monthDayPattern
String_t* ___monthDayPattern_12;
// System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern
String_t* ___dateTimeOffsetPattern_13;
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_17;
// System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek
int32_t ___firstDayOfWeek_18;
// System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule
int32_t ___calendarWeekRule_19;
// System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern
String_t* ___fullDateTimePattern_20;
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedDayNames_21;
// System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_superShortDayNames_22;
// System.String[] System.Globalization.DateTimeFormatInfo::dayNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___dayNames_23;
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedMonthNames_24;
// System.String[] System.Globalization.DateTimeFormatInfo::monthNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___monthNames_25;
// System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___genitiveMonthNames_26;
// System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_genitiveAbbreviatedMonthNames_27;
// System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___leapYearMonthNames_28;
// System.String System.Globalization.DateTimeFormatInfo::longDatePattern
String_t* ___longDatePattern_29;
// System.String System.Globalization.DateTimeFormatInfo::shortDatePattern
String_t* ___shortDatePattern_30;
// System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern
String_t* ___yearMonthPattern_31;
// System.String System.Globalization.DateTimeFormatInfo::longTimePattern
String_t* ___longTimePattern_32;
// System.String System.Globalization.DateTimeFormatInfo::shortTimePattern
String_t* ___shortTimePattern_33;
// System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allYearMonthPatterns_34;
// System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortDatePatterns_35;
// System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongDatePatterns_36;
// System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortTimePatterns_37;
// System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongTimePatterns_38;
// System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_eraNames_39;
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEraNames_40;
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEnglishEraNames_41;
// System.Globalization.CalendarId[] System.Globalization.DateTimeFormatInfo::optionalCalendars
CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA* ___optionalCalendars_42;
// System.Boolean System.Globalization.DateTimeFormatInfo::_isReadOnly
bool ____isReadOnly_44;
// System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags
int32_t ___formatFlags_45;
// System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanPositivePattern
String_t* ____fullTimeSpanPositivePattern_49;
// System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanNegativePattern
String_t* ____fullTimeSpanNegativePattern_50;
// System.Globalization.DateTimeFormatInfo/TokenHashValue[] System.Globalization.DateTimeFormatInfo::_dtfiTokenHash
TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9* ____dtfiTokenHash_52;
};
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_StaticFields
{
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_invariantInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_invariantInfo_0;
// System.Char[] System.Globalization.DateTimeFormatInfo::s_monthSpaces
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_monthSpaces_46;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_jajpDTFI_80;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_zhtwDTFI_81;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F : public RuntimeObject
{
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_0;
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t* ___ClassImpl_1;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject* ___DefaultValueImpl_2;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t* ___MemberImpl_3;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_4;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_5;
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_pinvoke
{
int32_t ___AttrsImpl_0;
Type_t* ___ClassImpl_1;
Il2CppIUnknown* ___DefaultValueImpl_2;
MemberInfo_t* ___MemberImpl_3;
char* ___NameImpl_4;
int32_t ___PositionImpl_5;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_com
{
int32_t ___AttrsImpl_0;
Type_t* ___ClassImpl_1;
Il2CppIUnknown* ___DefaultValueImpl_2;
MemberInfo_t* ___MemberImpl_3;
Il2CppChar* ___NameImpl_4;
int32_t ___PositionImpl_5;
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// System.Xml.Serialization.TypeData
struct TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704 : public RuntimeObject
{
// 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_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___listItemTypeData_6;
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::mappedType
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___mappedType_7;
// System.Xml.Schema.XmlSchemaPatternFacet System.Xml.Serialization.TypeData::facet
XmlSchemaPatternFacet_t1F025AEBB84DAD3516F8766AE831927EEFF4A927* ___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;
};
struct TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_StaticFields
{
// System.String[] System.Xml.Serialization.TypeData::keywords
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___keywords_12;
};
// System.Xml.Serialization.XmlArrayAttribute
struct XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlArrayAttribute::elementName
String_t* ___elementName_0;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayAttribute::form
int32_t ___form_1;
// System.Boolean System.Xml.Serialization.XmlArrayAttribute::isNullable
bool ___isNullable_2;
// System.String System.Xml.Serialization.XmlArrayAttribute::ns
String_t* ___ns_3;
// System.Int32 System.Xml.Serialization.XmlArrayAttribute::order
int32_t ___order_4;
};
// System.Xml.Serialization.XmlArrayItemAttribute
struct XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlArrayItemAttribute::dataType
String_t* ___dataType_0;
// System.String System.Xml.Serialization.XmlArrayItemAttribute::elementName
String_t* ___elementName_1;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayItemAttribute::form
int32_t ___form_2;
// System.String System.Xml.Serialization.XmlArrayItemAttribute::ns
String_t* ___ns_3;
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::isNullable
bool ___isNullable_4;
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::isNullableSpecified
bool ___isNullableSpecified_5;
// System.Int32 System.Xml.Serialization.XmlArrayItemAttribute::nestingLevel
int32_t ___nestingLevel_6;
// System.Type System.Xml.Serialization.XmlArrayItemAttribute::type
Type_t* ___type_7;
};
// System.Xml.Serialization.XmlAttributeAttribute
struct XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlAttributeAttribute::attributeName
String_t* ___attributeName_0;
// System.String System.Xml.Serialization.XmlAttributeAttribute::dataType
String_t* ___dataType_1;
// System.Type System.Xml.Serialization.XmlAttributeAttribute::type
Type_t* ___type_2;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlAttributeAttribute::form
int32_t ___form_3;
// System.String System.Xml.Serialization.XmlAttributeAttribute::ns
String_t* ___ns_4;
};
// System.Xml.XmlAttributeCollection
struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0 : public XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C
{
};
// System.Xml.Serialization.XmlElementAttribute
struct XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Xml.Serialization.XmlElementAttribute::dataType
String_t* ___dataType_0;
// System.String System.Xml.Serialization.XmlElementAttribute::elementName
String_t* ___elementName_1;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlElementAttribute::form
int32_t ___form_2;
// System.String System.Xml.Serialization.XmlElementAttribute::ns
String_t* ___ns_3;
// System.Boolean System.Xml.Serialization.XmlElementAttribute::isNullable
bool ___isNullable_4;
// System.Type System.Xml.Serialization.XmlElementAttribute::type
Type_t* ___type_5;
// System.Int32 System.Xml.Serialization.XmlElementAttribute::order
int32_t ___order_6;
};
// System.Xml.Serialization.XmlMapping
struct XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97 : public RuntimeObject
{
// System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::map
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* ___map_0;
// System.Collections.ArrayList System.Xml.Serialization.XmlMapping::relatedMaps
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___relatedMaps_1;
// System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::format
int32_t ___format_2;
// System.Xml.Serialization.SerializationSource System.Xml.Serialization.XmlMapping::source
SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* ___source_3;
// System.String System.Xml.Serialization.XmlMapping::_elementName
String_t* ____elementName_4;
// System.String System.Xml.Serialization.XmlMapping::_namespace
String_t* ____namespace_5;
// System.String System.Xml.Serialization.XmlMapping::key
String_t* ___key_6;
};
// System.Xml.Serialization.XmlSerializationReaderInterpreter
struct XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8 : public XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597
{
// System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializationReaderInterpreter::_typeMap
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ____typeMap_25;
// System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlSerializationReaderInterpreter::_format
int32_t ____format_26;
};
struct XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields
{
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReaderInterpreter::AnyType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___AnyType_27;
// System.Object[] System.Xml.Serialization.XmlSerializationReaderInterpreter::empty_array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___empty_array_28;
};
// System.Xml.Serialization.XmlTypeMapElementInfo
struct XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32 : public RuntimeObject
{
// 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_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ____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_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____mappedType_7;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::_type
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ____type_8;
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_wrappedElement
bool ____wrappedElement_9;
// System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_explicitOrder
int32_t ____explicitOrder_10;
};
// System.Xml.Serialization.XmlTypeMapMemberAnyElement
struct XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950 : public XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE
{
};
// System.Xml.Serialization.XmlTypeMapMemberAttribute
struct XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A
{
// System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::_attributeName
String_t* ____attributeName_10;
// System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::_namespace
String_t* ____namespace_11;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapMemberAttribute::_form
int32_t ____form_12;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::_mappedType
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____mappedType_13;
};
// System.Xml.Serialization.XmlTypeMapMemberFlatList
struct XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38 : public XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE
{
// System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::_listMap
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ____listMap_15;
};
// System.Comparison`1<System.Xml.Serialization.XmlReflectionMember>
struct Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Xml.Serialization.XmlMembersMapping
struct XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C : public XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97
{
// System.Boolean System.Xml.Serialization.XmlMembersMapping::_hasWrapperElement
bool ____hasWrapperElement_7;
// System.Xml.Serialization.XmlMemberMapping[] System.Xml.Serialization.XmlMembersMapping::_mapping
XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF* ____mapping_8;
};
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback
struct XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842 : public MulticastDelegate_t
{
};
// System.Xml.Serialization.XmlSerializationFixupCallback
struct XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE : public MulticastDelegate_t
{
};
// System.Xml.Serialization.XmlSerializationReadCallback
struct XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B : public MulticastDelegate_t
{
};
// System.Xml.Serialization.XmlSerializationWriteCallback
struct XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA : public MulticastDelegate_t
{
};
// System.Xml.Serialization.XmlTypeMapping
struct XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9 : public XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97
{
// System.String System.Xml.Serialization.XmlTypeMapping::xmlType
String_t* ___xmlType_7;
// System.String System.Xml.Serialization.XmlTypeMapping::xmlTypeNamespace
String_t* ___xmlTypeNamespace_8;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::type
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type_9;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::baseMap
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___baseMap_10;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::multiReferenceType
bool ___multiReferenceType_11;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::includeInSchema
bool ___includeInSchema_12;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::isNullable
bool ___isNullable_13;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::isAny
bool ___isAny_14;
// System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::_derivedTypes
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____derivedTypes_15;
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.Xml.Serialization.XmlSerializableMapping
struct XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7 : public XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9
{
// System.Xml.Schema.XmlSchema System.Xml.Serialization.XmlSerializableMapping::_schema
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ____schema_16;
// System.Xml.Schema.XmlSchemaComplexType System.Xml.Serialization.XmlSerializableMapping::_schemaType
XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* ____schemaType_17;
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializableMapping::_schemaTypeName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ____schemaTypeName_18;
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int64[]
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D : public RuntimeArray
{
ALIGN_FIELD (8) int64_t m_Items[1];
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Xml.Serialization.XmlMemberMapping[]
struct XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF : public RuntimeArray
{
ALIGN_FIELD (8) XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B* m_Items[1];
inline XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B** 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, XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XmlMemberMapping_t9561277C00FE869A09CB752EE80DD74B8B0DB67B* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
{
ALIGN_FIELD (8) Type_t* m_Items[1];
inline Type_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Xml.Serialization.XmlIncludeAttribute[]
struct XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5 : public RuntimeArray
{
ALIGN_FIELD (8) XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* m_Items[1];
inline XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736** 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, XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Xml.Serialization.EnumMap/EnumMapMember[]
struct EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520 : public RuntimeArray
{
ALIGN_FIELD (8) EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* m_Items[1];
inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38** 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_tB7A0813F20CFA0758843C38C2ECE325B13893E38* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.FieldInfo[]
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8 : public RuntimeArray
{
ALIGN_FIELD (8) FieldInfo_t* m_Items[1];
inline FieldInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FieldInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, FieldInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FieldInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FieldInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.PropertyInfo[]
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7 : public RuntimeArray
{
ALIGN_FIELD (8) PropertyInfo_t* m_Items[1];
inline PropertyInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PropertyInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PropertyInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PropertyInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C : public RuntimeArray
{
ALIGN_FIELD (8) ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* m_Items[1];
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053 : public RuntimeArray
{
ALIGN_FIELD (8) MemberInfo_t* m_Items[1];
inline MemberInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MemberInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MemberInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MemberInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MemberInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Xml.XmlNode[]
struct XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E : public RuntimeArray
{
ALIGN_FIELD (8) XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* m_Items[1];
inline XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF** 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, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Boolean[]
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
{
ALIGN_FIELD (8) bool m_Items[1];
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Xml.XmlQualifiedName[]
struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1 : public RuntimeArray
{
ALIGN_FIELD (8) XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* m_Items[1];
inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9** 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, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___value0, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared (Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___comparison0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8 (StringBuilder_t* ___sb0, int32_t ___n1, String_t* ___val2, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Collections.IList System.Collections.CollectionBase::get_List()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8 (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.CollectionBase::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72 (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlAnyElementAttribute System.Xml.Serialization.XmlAnyElementAttributes::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* XmlAnyElementAttributes_get_Item_mD23E83BA47BE2FEC7B1928CC3CE5478BA98ABB6E (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAnyElementAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttribute_AddKeyHash_m7AB3FE3A96E37527BD66E200B740E9E9E457D112 (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Collections.IEnumerator System.Collections.CollectionBase::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionBase_GetEnumerator_m8121D67DEBB0009A93BFEBB1DA46BA8A671FD862 (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlAnyElementAttribute::get_Order()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttribute_get_Order_m2CCED3AB699ADBDE0F16C41EB0EFE8921DF4BA6A_inline (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.CollectionBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionBase__ctor_m9AB03A7692AA8F78FA5519ACA74FF3FA2F9520BC (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
// System.String System.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_m121B48D3252D16160844C6731FF6FB43B18425E1 (StringBuilder_t* ___sb0, int32_t ___n1, String_t* ___val2, String_t* ___def3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061 (StringBuilder_t* ___sb0, int32_t ___n1, bool ___val2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_mEF58A07F8E3AD8A1E3E44B5AF44E9886E3296D24 (StringBuilder_t* ___sb0, int32_t ___n1, bool ___val2, bool ___def3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_mC6B2F528BC8CD8680EE2F4B3AB9FD0F786950234 (StringBuilder_t* ___sb0, int32_t ___n1, int32_t ___val2, int32_t ___def3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_m017BF19230CC3E3D4ABCCE764A6D36E8A46C89EC (StringBuilder_t* ___sb0, int32_t ___n1, Type_t* ___val2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlArrayItemAttribute System.Xml.Serialization.XmlArrayItemAttributes::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* XmlArrayItemAttributes_get_Item_m3A37EA7333F946C6C6F52A46BFCDD4FC0B420DD8 (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlArrayItemAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayItemAttribute_AddKeyHash_m899C82648223097CA3798612D04E7C0E6D8DC440 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlAttributeOverrides::get_Item(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* XmlAttributeOverrides_get_Item_m8F3874210220952C0D1ED4D9D3D69513D1C96C6E (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, Type_t* ___type0, String_t* ___member1, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeMember System.Xml.Serialization.XmlAttributeOverrides::GetKey(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D* XmlAttributeOverrides_GetKey_m2A1C08CCB0F0A887808DF7DE7440609181A9B383 (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, Type_t* ___type0, String_t* ___member1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.TypeMember::.ctor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeMember__ctor_m0151EB46D0BF9AB4D68680469BB3B1D0382191CF (TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D* __this, Type_t* ___type0, String_t* ___member1, const RuntimeMethod* method) ;
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributes_AddKeyHash_m67DE2F458A9666FCD4B8CCE854ABFDFAACDE224F (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAnyElementAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttributes__ctor_m6A17C49BC033377B9E078F1CCFC3909A9348956A (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlArrayItemAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayItemAttributes__ctor_m8714C17D54F0BB66B4CDC5558C3839BDC48D1262 (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlElementAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttributes__ctor_mF9ECB9E0E902251B37757FC133AB4607BCAF8962 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlAnyElementAttributes::Add(System.Xml.Serialization.XmlAnyElementAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttributes_Add_m3767B41223211071B81243E075C9774175A5C186 (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* ___attribute0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlArrayItemAttributes::Add(System.Xml.Serialization.XmlArrayItemAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttributes_Add_m5409D5F1D56AE511D0CE652C4F940B6D36CE7FCC (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* ___attribute0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlElementAttributes::Add(System.Xml.Serialization.XmlElementAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElementAttributes_Add_mFAF753CA050A16F260EAA885AD4A565B96DB4C40 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* ___attribute0, const RuntimeMethod* method) ;
// System.Void System.Collections.CollectionBase::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionBase_Clear_m0357C9FEC2BDB351726BA642093656CB1025968F (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAnyElementAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttributes_AddKeyHash_m8E7B73641DDBEB048ED0C413F5B5A13B8192EF7D (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlArrayItemAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayItemAttributes_AddKeyHash_m7425226A5091C66C2225133D67F3F85248E9052A (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlElementAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttributes_AddKeyHash_mD9A6FA25DFBA51026A175EBD0E1770261C926437 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlArrayAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayAttribute_AddKeyHash_mD3E532419B5B132CD226CE174AEEEC03D8F08FBF (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAttributeAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeAttribute_AddKeyHash_m2B3F08466F301B25ED496A73DB10AFA5645BBC26 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB (Type_t* ___type0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlCustomFormatter::ToXmlString(System.Xml.Serialization.TypeData,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_ToXmlString_m8B314E13C0DF5676C6D9516F1DB34518106A394D (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlEnumAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEnumAttribute_AddKeyHash_mBD6CCFBA2AF5A0E9FA46F35AF30E1DFF8CE2217C (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlRootAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute_AddKeyHash_m0CE50F6D4C7EFAE326DF317DABC543E85307463A (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTextAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextAttribute_AddKeyHash_m5084FCEC37C0FEABFFA86617BB1F2993D9F544DC (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeAttribute_AddKeyHash_mC4DAB0436EA984594404652066A6EFCF264465F9 (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlChoiceIdentifierAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChoiceIdentifierAttribute_AddKeyHash_mF380D6DE99B750E124549D3892E8E009F65C41D5 (XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlElementAttributes System.Xml.Serialization.XmlAttributes::get_XmlElements()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlElementAttributes::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElementAttributes_get_Order_mAE0BF907973526BBAF7AAF9CACD9CDD665624215 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___value0, method);
}
// System.Xml.Serialization.XmlArrayAttribute System.Xml.Serialization.XmlAttributes::get_XmlArray()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlArrayAttribute::get_Order()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayAttribute_get_Order_m82A05D0B48CDF77EEAC644B324916768C3DCC219_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlAnyElementAttributes System.Xml.Serialization.XmlAttributes::get_XmlAnyElements()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlAnyElementAttributes::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttributes_get_Order_m01A17B17DAC7BFCE5C2B854C9B4751583480A986 (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, const RuntimeMethod* method) ;
// System.Nullable`1<System.Int32> System.Xml.Serialization.XmlAttributes::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 XmlAttributes_get_Order_mFDA027D8E65B6FA40F5D935825673C832309FF28 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.Int32>::get_Value()
inline int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared)(__this, method);
}
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Int32 System.Text.StringBuilder::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (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_m69D52D3917F3D1BAC76B506B9BAA68A41B483DEF (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject* ___arg02, RuntimeObject* ___arg13, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject* ___arg02, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::EncodeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_EncodeName_m42879CBB7E33F534E7BA93890E4A830C5E5C6392 (String_t* ___name0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::EncodeLocalName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435 (String_t* ___name0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.TypeData::get_XmlType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_mEAE825F700D1360D52DBAE623315B108ABADF375 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mD498DD0E8B82A9E93A66FE61A9A977523C5D01CD (bool ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m3963263C4C1BFFC2ADF0401CBF35D12BEE47BECD (uint8_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m70CBE2DA22D8FCAC8906512E2A6F12C2E39C6D62 (int32_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.DateTime,System.Xml.XmlDateTimeSerializationMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m53BEA31146914B2252CA6CAFE2DA2360FA254078 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, int32_t ___dateTimeOption1, const RuntimeMethod* method) ;
// System.String System.DateTime::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mFA07C846C46E12A04FE92E9388CBE27146C47720 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m9AB2822ABA7C73BBABFA7A3D8318B602CD73C10B (double ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m8B9358ACFF0D39C8843D0CFA5B5209CA04C6AB47 (int16_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m107060D51F6846EEE17E3F25663DE8CBF0D531B7 (int64_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.SByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mC96BECCB53E0E0AEE7343F589064A956B510D788 (int8_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m5E4CB5F0119A790789813DACE87198037B503361 (float ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m9E81DED159D21EE4F48F23CD7BCA537FA66C1350 (uint16_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m538A8EFC52434D2F0D562A650E080E60ED2D5C3A (uint32_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m8DA228632804611F0B44C93D6E285A422A58E344 (uint64_t ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToString(System.Guid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m6E2C7912305248A51E6D343F747BCED28407632E (Guid_t ___value0, const RuntimeMethod* method) ;
// System.String System.Convert::ToBase64String(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::ToBinHexString(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToBinHexString_m18CF7765F4C6BB347B491EFF4317FE4E83A871A0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlConvert::ToBoolean(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlConvert_ToBoolean_mC9C05B76ECCD48E206BF6AD704A9742C88A6DBB4 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Byte System.Xml.XmlConvert::ToByte(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t XmlConvert_ToByte_m2E34F5DBC8CC707B29AB4A81D74776C98F38237C (String_t* ___s0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlConvert::ToInt32(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlConvert_ToInt32_mDE7EE99061A69CCE5FB3C241348580413B782DAC (String_t* ___s0, const RuntimeMethod* method) ;
// System.DateTime System.Xml.XmlConvert::ToDateTime(System.String,System.Xml.XmlDateTimeSerializationMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D XmlConvert_ToDateTime_m7107F1C9F62C00C17BD6338F49B5C7FE7CA1FD16 (String_t* ___s0, int32_t ___dateTimeOption1, const RuntimeMethod* method) ;
// System.DateTime System.Xml.XmlConvert::ToDateTime(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D XmlConvert_ToDateTime_mD576D186EE4174348CEE99F8FC8FB4B438405BBA (String_t* ___s0, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::get_Date()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::get_InvariantInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_get_InvariantInfo_m38B65CBFD59AB5EB343F15AEF9A6B7DB3683625B (const RuntimeMethod* method) ;
// System.DateTime System.DateTime::ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ParseExact_m6187A243D56D5B9C9A0165E156B510395702D1F5 (String_t* ___s0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___formats1, RuntimeObject* ___provider2, int32_t ___style3, const RuntimeMethod* method) ;
// System.Decimal System.Xml.XmlConvert::ToDecimal(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F XmlConvert_ToDecimal_mF207176DE0C5A80122854CAC9C2155F7DD6435CF (String_t* ___s0, const RuntimeMethod* method) ;
// System.Double System.Xml.XmlConvert::ToDouble(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XmlConvert_ToDouble_m1103CDF418E58863D866DF2156731EDC5392F96F (String_t* ___s0, const RuntimeMethod* method) ;
// System.Int16 System.Xml.XmlConvert::ToInt16(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t XmlConvert_ToInt16_m181D12069AB83A8C4E54FB9E9D95800C5C9C2380 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Int64 System.Xml.XmlConvert::ToInt64(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlConvert_ToInt64_m2CF984027A0976837779877B75DC706078E21085 (String_t* ___s0, const RuntimeMethod* method) ;
// System.SByte System.Xml.XmlConvert::ToSByte(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t XmlConvert_ToSByte_m016312ECA2028FDF641F77EA959E948206EFA724 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Single System.Xml.XmlConvert::ToSingle(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XmlConvert_ToSingle_m8AC367272E8941669A57D02186398DD44E795003 (String_t* ___s0, const RuntimeMethod* method) ;
// System.UInt16 System.Xml.XmlConvert::ToUInt16(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t XmlConvert_ToUInt16_m38684EA1B03F1990C215D648E9872AEB51C3B25C (String_t* ___s0, const RuntimeMethod* method) ;
// System.UInt32 System.Xml.XmlConvert::ToUInt32(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t XmlConvert_ToUInt32_mA32F8206F0D506F6C6AE32F38E564BF0BD0F6253 (String_t* ___s0, const RuntimeMethod* method) ;
// System.UInt64 System.Xml.XmlConvert::ToUInt64(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XmlConvert_ToUInt64_mC4B96AE0BE289EDC44D372826497E19555AA38A4 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Guid System.Xml.XmlConvert::ToGuid(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XmlConvert_ToGuid_m38706674F6E400E1864A7F52E39CD539305D77F6 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Byte[] System.Convert::FromBase64String(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Byte[] System.Xml.XmlConvert::FromBinHexString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* XmlConvert_FromBinHexString_mCEECD04A59A5B24E7831182C035B8807493F2D22 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.TypeData::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4 (RuntimeObject* ___value0, Type_t* ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlElementAttribute System.Xml.Serialization.XmlElementAttributes::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* XmlElementAttributes_get_Item_m724D3FD8DE8930D19D825A2B81348C3EAE41630D (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlElementAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttribute_AddKeyHash_m0107CE4587A6C7922A47FCD9151D320FDEDDB43D (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlElementAttribute::get_Order()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlElementAttribute_get_Order_mCF42C8462D6BAE16562CD7E16E56DD5BBD56A34F_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ReflectionHelper::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper__ctor_m8FD2C662187A6CCCA9BB61F4D6A9827EFC18C3FF (ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAttributeOverrides::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeOverrides__ctor_m37774F812F38A06B484C026945A873EEC5C5A78C (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportClassMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, bool ___isBaseType3, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportListMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.Xml.Serialization.XmlAttributes,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportListMapping_mB880ED974E84B7B9A2B588B3BF2CCC52EDF67739 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, int32_t ___nestingLevel4, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportXmlNodeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportXmlNodeMapping_mC19FEDCE22F79CFBC05DA7540F9FD77F7BDBDCBF (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportPrimitiveMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportPrimitiveMapping_m835E44D65873D999F2B6C847769442DB164AC6A5 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportEnumMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportEnumMapping_m0B068134E99537E6B81FE5459AE245F08429EDEA (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportXmlSerializableMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportXmlSerializableMapping_mBD9C080184E58C2498B8E40D43583816EAAF7974 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlMapping::SetKey(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_SetKey_m29AA9DBD54FBFC2C50A282C1D8C33547CD6D7686_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, String_t* ___key0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlMapping::set_RelatedMaps(System.Collections.ArrayList)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_set_RelatedMaps_m6A89B4318BA4BA04099D938C36CA3A83AAC3BC44_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlMapping::set_Format(System.Xml.Serialization.SerializationFormat)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_set_Format_m84E84DA7E6927678C90D903E2A8599E6BF6748B9_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A (String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlReflectionImporter::CanBeNull(System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReflectionImporter_CanBeNull_m52BC441CF224DCDF490BEE6ED280AB778BFFC3A6 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.TypeData::get_IsListType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlAttributeOverrides::get_Item(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* XmlAttributeOverrides_get_Item_m2FAD5994E54196E78D169E8CCAB3D71E817A1025 (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.TypeData::get_FullTypeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAttributes::.ctor(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributes__ctor_mFEEAECF61BFB18BAA8D5767AF38A2D51D7CBC15F (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlRootAttribute System.Xml.Serialization.XmlAttributes::get_XmlRoot()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeAttribute System.Xml.Serialization.XmlAttributes::get_XmlType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeAttribute::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_TypeName_mB06CCEC7168EF5AF9B5286049A3E0571CAFDAD42 (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeAttribute::get_IncludeInSchema()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeAttribute_get_IncludeInSchema_mDC85FE2BB6FE9BE2A457394CEEF91341CAA84DA3_inline (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlRootAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_ElementName_m8E9F810E8C3AEA05914EF8AEA47DCC31EDD7B2AE (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlRootAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlRootAttribute::get_IsNullable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlRootAttribute_get_IsNullable_m2838215306230F5E93695672074B66ACC39E0092_inline (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializableMapping::.ctor(System.Xml.Serialization.XmlRootAttribute,System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2 (XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* __this, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root0, String_t* ___elementName1, String_t* ___ns2, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData3, String_t* ___xmlType4, String_t* ___xmlTypeNamespace5, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.TypeData::get_IsXsdType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapping::.ctor(System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___elementName0, String_t* ___ns1, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData2, String_t* ___xmlType3, String_t* ___xmlTypeNamespace4, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapping::set_IncludeInSchema(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IncludeInSchema_m4ADFB54087375F1E855F955A23FD6A75499C95CB_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapping::set_IsNullable(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsNullable_mD892626D9838297535D63A2CE20F0F0E93B0E06F_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ReflectionHelper::CheckSerializableType(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper_CheckSerializableType_m8DB0250A0957686514A12FAF12AD4AC695F4BE25 (Type_t* ___type0, bool ___allowPrivateConstructors1, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlReflectionImporter::GetTypeNamespace(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.ReflectionHelper::GetRegisteredClrType(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ReflectionHelper_GetRegisteredClrType_m05E15F35772167A902933F5688840FADE08C74AF (ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* __this, Type_t* ___type0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::CreateTypeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultXmlType2, String_t* ___defaultNamespace3, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapping::get_XmlTypeNamespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ReflectionHelper::RegisterClrType(System.Xml.Serialization.XmlTypeMapping,System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper_RegisterClrType_mD0C72D14AAB753E89AF6E0B99BC9F53FD8ED1188 (ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___map0, Type_t* ___type1, String_t* ___ns2, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapping::get_XmlType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ReflectionHelper::RegisterSchemaType(System.Xml.Serialization.XmlTypeMapping,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionHelper_RegisterSchemaType_m579F388E056C327FC96BFCDF5E0CB4F8122FFF1D (ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___map0, String_t* ___xmlType1, String_t* ___ns2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ClassMap::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap__ctor_m2E0CDD6C951F89A117B800D1EFA07A15B61D32F6 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlMapping::set_ObjectMap(System.Xml.Serialization.ObjectMap)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_set_ObjectMap_m34272FA1B72AD9AE95E70C84665290EA6C0C0FCD_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember> System.Xml.Serialization.XmlReflectionImporter::GetReflectionMembers(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* XmlReflectionImporter_GetReflectionMembers_mD6792F16E5A5CB03415A976ED3EAD616E5DA9256 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember>::GetEnumerator()
inline Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* __this, const RuntimeMethod* method)
{
return (( Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A (*) (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Serialization.XmlReflectionMember>::Dispose()
inline void Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C (Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Xml.Serialization.XmlReflectionMember>::get_Current()
inline XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_inline (Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A* __this, const RuntimeMethod* method)
{
return (( XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* (*) (Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlReflectionMember::get_XmlAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
inline bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
inline void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, bool, const RuntimeMethod*))Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared)(__this, ___value0, method);
}
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
inline bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Serialization.XmlReflectionMember>::MoveNext()
inline bool Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610 (Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void System.Comparison`1<System.Xml.Serialization.XmlReflectionMember>::.ctor(System.Object,System.IntPtr)
inline void Comparison_1__ctor_mF7A2F27418691688E0C1F25DFC4B3A68DA36E5A6 (Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember>::Sort(System.Comparison`1<T>)
inline void List_1_Sort_mEAA5A22918AD0DC18FCF48568E89C0F5794B105A (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* __this, Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* ___comparison0, const RuntimeMethod* method)
{
(( void (*) (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472*, Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED*, const RuntimeMethod*))List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared)(__this, ___comparison0, method);
}
// System.Boolean System.Xml.Serialization.XmlAttributes::get_XmlIgnore()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlAttributes_get_XmlIgnore_m817F5C7648E0CADEBE452A1EF3E59A0D07A80627_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.XmlReflectionMember::get_DeclaringType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlReflectionMember_get_DeclaringType_mA84E638B63CD926ED1DB32628B7747DE0BA7F355_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportClassMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportClassMapping_m435E0FBB161DB459B4E0C4FFB73916C45D5EED0D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, bool ___isBaseType3, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::get_HasXmlTypeNamespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_HasXmlTypeNamespace_m461935579477604F7ECB9D989B49EF4621DF3FF8 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlReflectionImporter::CreateMapMember(System.Type,System.Xml.Serialization.XmlReflectionMember,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___declaringType0, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___rmember1, String_t* ___defaultNamespace2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::CheckOptionalValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_CheckOptionalValueType_mC3A9B15424B4E2F537CAD6602EA32522C47FC36B (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ClassMap::AddMember(System.Xml.Serialization.XmlTypeMapMember)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlReflectionMember::get_MemberName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::get_DerivedTypes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m9682FD802D4138CDD616855551EB57D7FA3FF84C (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, String_t* ___defaultNamespace1, const RuntimeMethod* method) ;
// System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::get_ObjectMap()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapping::set_BaseMap(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_BaseMap_m1B6EC933148E6ED405775C6A56CF888DF489988F_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.ClassMap::get_HasSimpleContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ClassMap_get_HasSimpleContent_m7023F99D0994EB07A18F31EC2FFF7CEC4FA38960 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ClassMap::SetCanBeSimpleType(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ClassMap_SetCanBeSimpleType_mEFA2779827B16C4BACF378B6536121C5FE1AE74C_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, bool ___can0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlReflectionImporter::RegisterDerivedMap(System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_RegisterDerivedMap_m6ACF611372A2C13FFDCE8865E267D47079A36EAA (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___map0, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___derivedMap1, const RuntimeMethod* method) ;
// System.Collections.ICollection System.Xml.Serialization.ClassMap::get_ElementMembers()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::get_TypeData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.TypeData::get_TypeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_TypeName_mC7AF987BA3129B6648CE999111BE0E739E5A25A8_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::get_BaseMap()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_get_BaseMap_m4596D5703D08B93CE429A7C62CEB9AA91506B32D_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlReflectionImporter::ImportIncludedTypes(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_ImportIncludedTypes_m14EFED9CB15D6C7C5F828BE68F77E59D0710EF3E (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, String_t* ___defaultNamespace1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_XmlTextCollector()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::get_TypeData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapMember::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMember_get_Name_mCF37113EDBC93BBAE3E38DDA503BF83C752287F9_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, RuntimeObject* ___arg23, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ListMap::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap__ctor_m89E81F66CB6B669B50E293853AAF98AD4DED0F67 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributes__ctor_mA77FF59E5F2D6C3DAE3695F3A11F61B6DE8E6494 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.TypeData::get_ListItemType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfoList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlArrayItemAttributes System.Xml.Serialization.XmlAttributes::get_XmlArrayItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* XmlAttributes_get_XmlArrayItems_mA3EA68D61FCFD9DBAD4175F48035F95AC10EDB6E_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_Namespace_m18BA85AB457B0ED70ABDA1C89B32A10BA24D0113_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayItemAttribute::get_Form()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttribute_get_Form_mBBFA635F531B819D8E43AFF6110670FB383C1F33_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlArrayItemAttribute::get_NestingLevel()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttribute_get_NestingLevel_mE927341768913F399DAB59E37BB38EB4B5CF33ED_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.XmlArrayItemAttribute::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlArrayItemAttribute_get_Type_m80FA2D88365496E4C5090375F0E014976B6B7417_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_DataType_m781844E00CC1400EE1F3960B9D8367FC06C5B1C9 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __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_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8 (Type_t* ___runtimeType0, String_t* ___xmlDataType1, bool ___underlyingEnumType2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::.ctor(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Namespace(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Form(System.Xml.Schema.XmlSchemaForm)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Form_m404075D5C7B4E4CE0EC5ED46881D4D84C73E0102_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::get_IsNullableSpecified()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlArrayItemAttribute_get_IsNullableSpecified_mDC4FABB753BA60A10CEED9BDD82011C47E14B4F0_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::get_IsNullable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlArrayItemAttribute_get_IsNullable_mC7A6E27D7259FF7DD81A2C575EBD4578651857D8_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsNullable(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_NestingLevel(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_NestingLevel_m104B8F548E5E7B0982E55AFA8900F9BB4E0E1A35_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportListMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String,System.Xml.Serialization.XmlAttributes,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportListMapping_m2DE4BB63B5D578F38690F0CECD77C0E87268CEFC (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, int32_t ___nestingLevel4, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_MappedType(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.TypeData::get_IsComplexType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_ElementName_m2882B401E27852A6CC2129A6B0CBD8DAE7EE6677 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ElementName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::get_MappedType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlMapping::get_ElementName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ListMap::set_ItemInfo(System.Xml.Serialization.XmlTypeMapElementInfoList)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMap_set_ItemInfo_mD0E132CC2807675C9308B26F69EA38EC9EB3EF11_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___value0, const RuntimeMethod* method) ;
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.TypeTranslator::GetArrayName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeTranslator_GetArrayName_m15F8FBB85322BBAAB490B5329FE61AE2204A356A (String_t* ___elemName0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.ReflectionHelper::GetRegisteredSchemaType(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ReflectionHelper_GetRegisteredSchemaType_m7B43FB39F0723B94240F271D7ADDFCFF2EDF85D7 (ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* __this, String_t* ___xmlType0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.XmlIncludeAttribute::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlIncludeAttribute_get_Type_m933A769AE46F8B8FE3612605D6B0E890AE3A1EDD_inline (XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* __this, const RuntimeMethod* method) ;
// System.String[] System.Enum::GetNames(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Enum_GetNames_mA16B3D5DABC2AE21290B05053660F925DBFF6D94 (Type_t* ___enumType0, const RuntimeMethod* method) ;
// System.Reflection.FieldInfo System.Type::GetField(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t* Type_GetField_m0BF55B1A27A1B6AB6D3477E7F9E1CF2A3451E1E0 (Type_t* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlEnumAttribute::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEnumAttribute_get_Name_m13FF8A329D3569F4C785968B3928A1554EC9CCF3_inline (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.EnumMap/EnumMapMember::.ctor(System.String,System.String,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumMapMember__ctor_m706EC5F580B4D0A8E3470E22AF8B091AE551ABA1 (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, String_t* ___xmlName0, String_t* ___enumName1, int64_t ___value2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.EnumMap::.ctor(System.Xml.Serialization.EnumMap/EnumMapMember[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumMap__ctor_m8B507CB9A313B5FEC589E7C3F0A6B573D665768D (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* ___members0, bool ___isFlags1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember>::.ctor()
inline void List_1__ctor_m4A66450CDA32222827A7E731E42D9B9D85CB8324 (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Xml.Serialization.XmlReflectionMember::.ctor(System.String,System.Type,System.Xml.Serialization.XmlAttributes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionMember__ctor_m7B83DEED7CE7FDD74528D8863C8243F70D6DE355 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, String_t* ___name0, Type_t* ___type1, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___attributes2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlReflectionMember::set_DeclaringType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReflectionMember_set_DeclaringType_m1FEBB9DF4BDFE905A76D4E297BE992C89B39B1A8_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, Type_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember>::Add(T)
inline void List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_inline (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* __this, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472*, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Boolean System.Type::get_IsInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m484A7D9321E72758EABE7F36AE266EB0905957EC (Type_t* __this, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.TypeData::GetGenericListItemType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeData_GetGenericListItemType_m1ED288DADF0F3AC6BCCE64BFFC08407E3A216822 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.XmlReflectionMember::get_MemberType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlArrayAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlArrayAttribute_get_Namespace_m37B65FCCE7A60AEADBF394DB6210DA1CC8A91CF8_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayAttribute::get_Form()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayAttribute_get_Form_mD5222A61AE3D5908142D9DBF1A5BE0986466F008_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlAnyAttributeAttribute System.Xml.Serialization.XmlAttributes::get_XmlAnyAttribute()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* XmlAttributes_get_XmlAnyAttribute_m3116C8A13795C5AEB267B6C78EE406EB7F1C79D7_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAnyAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAnyAttribute__ctor_m55E6BD862DFD1709C359931225EFCC70AF9F8C35 (XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAnyElement::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAnyElement__ctor_m66FD3FF1033A6C41F21CA1677897AA554794E750 (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlReflectionImporter::ImportAnyElementInfo(System.String,System.Xml.Serialization.XmlReflectionMember,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlReflectionImporter_ImportAnyElementInfo_m26B24C22E7A373EF178E830CFF15E0E04EA0155A (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, String_t* ___defaultNamespace0, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___rmember1, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* ___member2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlAttributes::get_Xmlns()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlAttributes_get_Xmlns_m470230B52FC047B9820991B287C46CFACAACBB33_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberNamespaces::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberNamespaces__ctor_m655334756FB0C4721F7AB415FF4C7D25E2A7863B (XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlAttributeAttribute System.Xml.Serialization.XmlAttributes::get_XmlAttribute()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute__ctor_m114811B0B3047CF56B5C834D9B72D64CE7DA45AD (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_AttributeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_AttributeName_mD12BFE7D2970617D6BAEA2C7726BFCC1E78043B9 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_AttributeName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_AttributeName_m9FA871900139C9A680D39F3FA1D64593EA0A8A37_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_AttributeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_MappedType(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_MappedType_mA7E95DC2D885930465A715589EF224E64286F518_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_Namespace_m66DDB72831548F3B23A4A68E11826303CEE42835_inline (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlAttributeAttribute::get_Form()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlAttributeAttribute_get_Form_m49A9D062DB2C8CED21041D3FBF941A7C3A4E06BD_inline (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Form(System.Xml.Schema.XmlSchemaForm)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Form_m060BDBE9694B862C8E46DCEB5CAD8F6C52E9691B_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Namespace(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Namespace_m75CC38F536B9F3D71532845F4D741A6A37489277_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_DataType_m0F9734D465582A44A3DF13505EBF817307233310 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.XmlElementAttribute::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlElementAttribute_get_Type_m3B355841D7F13F4CD84F8C3ED4D28917BB170CCB_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTextAttribute System.Xml.Serialization.XmlAttributes::get_XmlText()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList__ctor_m184FE28F5A2FAA15F1BFBC27F3A2904497E4C8B7 (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::set_ListMap(System.Xml.Serialization.ListMap)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList_set_ListMap_mFEBE950843FA798DFC8628E296696296C953071E_inline (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ___value0, const RuntimeMethod* method) ;
// System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::get_ListMap()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlReflectionImporter::ImportElementInfo(System.Type,System.String,System.String,System.Type,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___cls0, String_t* ___defaultName1, String_t* ___defaultNamespace2, Type_t* ___defaultType3, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* ___member4, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts5, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::get_ItemInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceMember()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.ListMap::set_ChoiceMember(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMap_set_ChoiceMember_m25EB1F93541895E0647E420B7BF9C8C7194621D6_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberList__ctor_mBD734CDCEE34AF3580EF194A4AB86CDBFD5F47D7 (XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlArrayAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayAttribute_get_ElementName_mFDDFF359B711CC6348AD07853053BB37C405CDC2 (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlArrayAttribute::get_IsNullable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlArrayAttribute_get_IsNullable_m84FB7E08614BFAFE7C6D5B72F4E43CBA42583CFB_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ExplicitOrder(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ExplicitOrder_mD893A153D81289F4A8C4A429800FEDB81E3578B4_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::get_ElementInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement__ctor_m1C521481C567615C591328B512832B144B153169 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlAttributes::get_XmlDefaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlAttributes_get_XmlDefaultValue_m24022111D30B964CF2DDE2EC6ACC870DB4BA7ED1_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlReflectionImporter::GetDefaultValue(System.Xml.Serialization.TypeData,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReflectionImporter_GetDefaultValue_m9AC659BFACAF9F4E2ED88A32F9B0622C5FBACDA8 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, RuntimeObject* ___defaultValue1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_DefaultValue(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_DefaultValue_m97AC90D89BFEE878DA9FE3150292AD6E69B6FA27_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_TypeData(System.Xml.Serialization.TypeData)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_TypeData_m9C4CAF5B4A21DE54C9DE9F90C1332BBDAA4A4B4C_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_Name(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Name_m388D6A30E3DD11FD6068A5D5C180110C327EFC08_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlReflectionMember::get_IsReturnValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReflectionMember_get_IsReturnValue_m85EB9A5F4C984353A4BEA4A10D90BEB715158255_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsReturnValue(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsReturnValue_m8E27F10143941CADA16EEB3F2B81DCE9BB573AD1 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlReflectionImporter::ImportTextElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList,System.Type,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___list0, Type_t* ___defaultType1, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* ___member2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, String_t* ___defaultNamespace4, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlChoiceIdentifierAttribute System.Xml.Serialization.XmlAttributes::get_XmlChoiceIdentifier()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* XmlAttributes_get_XmlChoiceIdentifier_mA6096A2AFE2439889FA8F48E22AD7335C9B7EE45_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlChoiceIdentifierAttribute::get_MemberName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlChoiceIdentifierAttribute_get_MemberName_mFB0A7699A652AE5EEB3AF341F1EEE4C91B46EE9A (XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceMember(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceMember_m8F271920DC329BABB1F6CC20C327EFABC5D5FAD4_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceTypeData(System.Xml.Serialization.TypeData)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceTypeData_mC09197CF2429D39C3771B2E1903663FEE114877D_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlElementAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_DataType_mC74327AED7D2D68D57E769EDB5125BDE0D0A6ABF (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlElementAttribute::get_Form()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlElementAttribute_get_Form_mAB6C265C412AD6BA37FF7802EB207C726F3ADADC_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::get_Form()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_Form_m6D632374F4C5C58870DFDB60928B518C216180FA_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlElementAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_Namespace_m79825FA7B795B8D0FF3E71637AEB426DC3AFB1FA_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlElementAttribute::get_IsNullable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlElementAttribute_get_IsNullable_mC31D59FDBE93193FDF0409AC0DC191E8B11A387F_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsNullable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.TypeData::get_IsNullable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsNullable_m31728B62ACF57A01989472F565DAAC86DA179D07 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___values0, const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mBFACD7FE8657957CE3D5DA54D519AB418AF421E7 (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlElementAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_ElementName_mFD5C95EC3061DC2A2D88E0EACC2DDFFA91C76F6F (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.EnumMap::GetEnumName(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94 (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, String_t* ___typeName0, String_t* ___xmlName1, 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_m47B2846E44214E013BF3069B0F9015AD223FF16E (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject* ___arg02, RuntimeObject* ___arg13, RuntimeObject* ___arg24, const RuntimeMethod* method) ;
// System.Object System.Enum::Parse(System.Type,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_Parse_m1ABE53499F05D295104BDE57EE12376CF4513585 (Type_t* ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ChoiceValue(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ChoiceValue_m51083B31BC4A97D6C58F2A8FA96355BED2E37AAB_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlAnyElementAttribute::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAnyElementAttribute_get_Name_m4A874C74BA795155B3B95CD2A423E1C8A0CAE8F0 (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlAnyElementAttribute::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6_inline (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsUnnamedAnyElement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m9C07E7FD57FE290F705A2EC1EF3F4F3C36AB1DDD (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_IsXmlTextCollector(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_IsXmlTextCollector_m3825384EFF73E2990FD5746E45CE7AF2D69B456B_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Type System.Xml.Serialization.XmlTextAttribute::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlTextAttribute_get_Type_m6D956F711B1336CEAE650DDC4A35A9899CEF9861_inline (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTextAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextAttribute_get_DataType_m6B266372322103E2D735DC26D210652ECD475B07 (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsTextElement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsTextElement_mCE031A8FDAFEACF48094CCDF5C90BBB2A64E2655 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_WrappedElement(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_WrappedElement_m45FA9CFAFC7B8EB395F59D7832542F3410089195_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsValueType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318 (Type_t* __this, const RuntimeMethod* method) ;
// System.String System.Enum::Format(System.Type,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_Format_m123C334AE1E6D7DA980E55F737754DE1E0EA09DD (Type_t* ___enumType0, RuntimeObject* ___value1, String_t* ___format2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlReflectionImporter/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA058BD654206592CBA4FF6B46AC6A8419DE0632E (U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlAttributes::get_SortableOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributes_get_SortableOrder_m3D4F7E08FCA0AF6985B0C5BED981BE036E03B687 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlQualifiedName::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationGeneratedCode::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationGeneratedCode__ctor_mBC7B26FB29C099BB456D537954F2AF3673AC28C6 (XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::.ctor(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m23D3FC333FDD50BBCAF64B57184A889E0F6B7468 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method) ;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::EnsureHashtable(System.Collections.Hashtable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* XmlSerializationReader_EnsureHashtable_m676AEE49C5641981561013079ECF69CE82957B06 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___hash0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::set_CollectionItems(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CollectionFixup_set_CollectionItems_mE1B2C71D40112F90E2ECC65D1E14234BA2ED351F_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::EnsureArrayList(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlSerializationReader_EnsureArrayList_m4F967D2DD5EFCFBEA524BB8FE5A608FE4A6BA956 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___list0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_m37F31F6AFF382B838F022DFF2F6C49AEE921D110 (WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationReader::CurrentTag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationReader_CurrentTag_mE1917EC42A8114332387EE718C252B726CA05E14 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlQualifiedName::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlQualifiedName::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ;
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C (Type_t* ___elementType0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F (RuntimeArray* ___sourceArray0, RuntimeArray* ___destinationArray1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::get_Reader()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.TypeTranslator::ParseArrayType(System.String,System.String&,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeTranslator_ParseArrayType_m034F2CC1D633A475E362A3EC265A89BF1016C262 (String_t* ___arrayType0, String_t** ___type1, String_t** ___ns2, String_t** ___dimensions3, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ToXmlQualifiedName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationReader::GetNullAttr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_GetNullAttr_m1393BD163FC969C02A146408DD0A36FE0E47D5CF (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::ReadEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadElementQualifiedName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ReadElementQualifiedName_m847D8D30671D41FE44EB696DB93C1B5281AFEFAD (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencedElement_mB6746AFA7D9CF05419DC84F682B029F0AEB8E41D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::GetXsiType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlQualifiedName::op_Equality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___a0, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___b1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadList(System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject** ___resultList0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Callback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* CollectionFixup_get_Callback_m1F1435C58DB8A0FDDC6EF46BAE8C871531BEDBAE_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Collection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::Invoke(System.Object,System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_inline (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo System.Xml.Serialization.XmlSerializationReader::GetCallbackInfo(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* XmlSerializationReader_GetCallbackInfo_mDFDA259FC5C4CADF68A1A75B2096B4DBF3B6E25C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadTypedPrimitive_m01A7EFB4CC732A91E92D2FC847489B5AF5FBBFC0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname0, bool ___reportUnknown1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReadCallback::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_inline (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::AddTarget(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddTarget_mF2FDE667DDECBA83C6CC7F7D0278E11B95FBDBC2 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, RuntimeObject* ___o1, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Int32::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m829FA04F6E40653134D0F9C6671DFF28F6EECC4B (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeTranslator_GetPrimitiveTypeData_m57312826DECF143595FF371D2E67BEDB0F11C36F (String_t* ___typeName0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_m83079F8026EBB9E442B5F5BD09D7E5C1B53595D0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, String_t** ___fixupReference2, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___value0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::.ctor(System.Array,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemFixup__ctor_mE654E8182AAE3013271D452C051AE10ADFD9C2AC (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, RuntimeArray* ___list0, int32_t ___index1, String_t* ___id2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_m8F4D571A2124FFD8159D128335BB0E76C723814A (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* ___fixup0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Collection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeArray* CollectionItemFixup_get_Collection_m3A3D1F07DD384677EB43842B4E0C9AE6CAA8B8F6_inline (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CollectionItemFixup_get_Id_m01A755FF6A3F989910289A67DD5ADFA0528FD39F_inline (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::GetTarget(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Index()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CollectionItemFixup_get_Index_m455C70697C9BD61D8E47E5867796671FAECBF958_inline (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_CollectionItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_CollectionItems_m7C8D7CB07A7C17F517B09A5145424EB1DE0EB497_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::get_Callback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* Fixup_get_Callback_mF6D51DD8D4089ED7510FA16D29095F75BFB54D9B_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::Invoke(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_inline (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::UnreferencedObject(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnreferencedObject_m4487CEE93EAE9E4A76ACCE73F1336B21E7060461 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, RuntimeObject* ___o1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.Boolean,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_mCF80446EFFF59F06F15AF7F1A96CADD62E7BCB43 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, bool ___elementCanBeType2, String_t** ___fixupReference3, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationReader::TargetReady(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_TargetReady_m793FC7F673F85FEAD9AFA131D03C82D27CE925A6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::FindPrimitiveTypeData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeTranslator_FindPrimitiveTypeData_m0906A3731464F08A922EA69A2B629F7E473A29CD (String_t* ___typeName0, const RuntimeMethod* method) ;
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::get_Document()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::OnUnknownNode(System.Xml.XmlNode,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_OnUnknownNode_m9ADED58E840CB4F7C093F960B87DC1BD2E438B39 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, RuntimeObject* ___o1, String_t* ___qnames2, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadNullableQualifiedName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ReadNullableQualifiedName_mCD286FFAEE778FD6CC3627B0F11085BAD744015D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlCustomFormatter::FromXmlString(System.Xml.Serialization.TypeData,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlCustomFormatter_FromXmlString_m148D907C11B06D1A94836952828FB5BE421A7EA4 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, String_t* ___value1, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::DecodeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_DecodeName_m0A515523E8424058C10863C8B3B0FDA0B63DD329 (String_t* ___name0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlTextReader::get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_LineNumber_m55D50DD933052EA9E291E92516B920C1C258D4A8 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlTextReader::get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_LinePosition_m2ADEA694B3B86523797ADD4EB117DCC6BA4D4D14 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlAttributeEventArgs::.ctor(System.Xml.XmlAttribute,System.Int32,System.Int32,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeEventArgs__ctor_mE2875927B30862BA53BC5CCBBFAB989456C96BFF (XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, int32_t ___lineNumber1, int32_t ___linePosition2, RuntimeObject* ___o3, String_t* ___qnames4, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlElementEventArgs::.ctor(System.Xml.XmlElement,System.Int32,System.Int32,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementEventArgs__ctor_mD10AF9A6402C1913964A0ACCFFAD0CE29EA019AA (XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, int32_t ___lineNumber1, int32_t ___linePosition2, RuntimeObject* ___o3, String_t* ___qnames4, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownNode_m0ED67BE2DC8A3558FA0C0A2CC19575A52480FBD0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, String_t* ___qnames1, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.Serialization.XmlSerializationReader::ReadXmlNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlSerializationReader_ReadXmlNode_mD224CFB90450934FC68CF9A0D720E40CE57CE945 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, bool ___wrapped0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownAttribute(System.Object,System.Xml.XmlAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownAttribute_m5DE80B94D9A23B344BD4D61A5743386B1393562D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr1, String_t* ___qnames2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownElement(System.Object,System.Xml.XmlElement,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownElement_m0AB972087CDCDF08330B2472DF521B3263405D31 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, String_t* ___qnames2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlNodeEventArgs::.ctor(System.Xml.XmlNode,System.Int32,System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeEventArgs__ctor_m0E50754A95E4FD3ADB7FEF2532BAE7682EAF2975 (XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___xmlNode0, int32_t ___lineNumber1, int32_t ___linePosition2, RuntimeObject* ___o3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.UnreferencedObjectEventArgs::.ctor(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnreferencedObjectEventArgs__ctor_mD16B06CE6C6B0BC9066D72C98273D6F55A24EC70 (UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* __this, RuntimeObject* ___o0, String_t* ___id1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader__ctor_mE7A1AB3E151A31FE7D934FBFBB9823F5C0D70C68 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::get_Format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Xml.Serialization.XmlMapping::get_RelatedMaps()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReaderCallbackInfo__ctor_mA1DE9023122B9D262150A2AABCCB839AC4E31CBC (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___sri0, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap1, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlMapping::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReadCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReadCallback__ctor_m3E8920B08440F5007D60B89120F500D80C24B4F7 (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::AddReadCallback(System.String,System.String,System.Type,System.Xml.Serialization.XmlSerializationReadCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddReadCallback_m7FBB39194FAA252273D04AAB981A83D81A690E98 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, Type_t* ___type2, XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* ___read3, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___rootMap0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEncodedObject(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, const RuntimeMethod* method) ;
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownNodeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::ReadReferencedElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlMembersMapping::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlMembersMapping_get_Count_mDAFF3965B76D19DE0EFAE018FEE1B429419855A7 (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlMembersMapping::get_HasWrapperElement()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_AllMembers()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsReturnValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsReturnValue_m2FF8236466A439AB4412508BE3D78C3C71A47481 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.TypeData::get_IsValueType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsValueType_m6A1F44C35FE034599DE34B16D1E5DFD8B83A021B (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_m9CB41129916C0B5A2323C6EBD6031BB9CF3B693C (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValueFromAttr(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m7DCD796BFED1BC399DDA708281D49BAF3EF5CAF8 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, RuntimeObject* ___ob1, RuntimeObject* ___value2, bool ___isValueList3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___ob1, bool ___isValueList2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___ob1, bool ___isValueList2, bool ___readBySoapOrder3, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNodeElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsAny()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsNullable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, RuntimeObject* ___list2, bool ___canCreateInstance3, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveElement_m93C17C23DF8E7F7F2501CA2452E5CEA6EF2551A6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEnumElement_mB13411EB63D3EEEF92A41C2E3E29B243132E02B4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlSerializableElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, 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_m7327D765A1501F12E33F29BBAFAF4AFAAB3AA8B8 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___a0, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___b1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealElementMap(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_GetRealElementMap_m2488C8E8ABFB81EE1181A68DA85C142579599ED8 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___name0, String_t* ___ens1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___type0, const RuntimeMethod* method) ;
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownTypeException(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownTypeException_m158A6883E878D4147D071564F3BFF3B6B42D5296 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___type0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901 (Type_t* ___type0, bool ___nonPublic1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::get_DefaultAnyAttributeMember()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMemberAttribute System.Xml.Serialization.ClassMap::GetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* ClassMap_GetAttribute_mFAA51D19B1F7AAC3105A581FA1F2738B15BBBCD0 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::get_MappedType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetValueFromXmlString(System.String,System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, String_t* ___value0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData1, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, RuntimeObject* ___ob1, RuntimeObject* ___value2, bool ___isValueList3, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationReader::IsXmlnsAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_IsXmlnsAttribute_m82CD3BEBE6E81699B23FDC923B5029DAFB05B06D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::get_NamespaceDeclarations()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, RuntimeObject* ___ob1, bool ___isValueList2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializerNamespaces::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializerNamespaces__ctor_mBE51E0E9233359BCF1602C6200E9D85084E83E91 (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializerNamespaces::Add(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::ParseWsdlArrayType(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ParseWsdlArrayType_mD66086D7B4A80B5F9F77DC8546472BD1B8087598 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::AddListValue(System.Xml.Serialization.TypeData,System.Object&,System.Int32,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___listType0, RuntimeObject** ___list1, int32_t ___index2, RuntimeObject* ___value3, bool ___canCreateInstance4, const RuntimeMethod* method) ;
// System.Array System.Xml.Serialization.XmlSerializationReader::ShrinkArray(System.Array,System.Int32,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeArray* ___a0, int32_t ___length1, Type_t* ___elementType2, bool ___isNullable3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetListMembersDefaults(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___ob1, bool ___isValueList2, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_ReturnMember()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_FlatLists()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter::IsReadOnly(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___memType1, RuntimeObject* ___ob2, bool ___isValueList3, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::get_FlatArrayIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___ob0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::InitializeList(System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___listType0, const RuntimeMethod* method) ;
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceTypeData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.ClassMap,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo__ctor_m21B1A474D5B56C19F301C9D9EF4B235B7B8AE639 (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___sri0, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map1, bool ___isValueList2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationFixupCallback__ctor_mB41C79CFAA7CD40502E2C121836DF8A12FB521DD (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader/Fixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Fixup__ctor_m7213A65447CD4248AA5F086E4C71C792B5A21F14 (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, RuntimeObject* ___o0, XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* ___callback1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/Fixup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_mF54D9CAC7E4D3149F057CBDD182C76A2EC78F794 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* ___fixup0, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___name0, String_t* ___ns1, int32_t ___minimalOrder2, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.ClassMap::get_IsOrderDependentMap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ClassMap_get_IsOrderDependentMap_m0B479BCCCAECE8D9D5DC7659B5CFFB7CB949C93A (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ClassMap_GetElement_m60767CE50696152D35651B8202236E105721F3C3 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::get_Member()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_Index()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::get_ExplicitOrder()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_MultiReferenceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::get_Ids()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t** ___fixupReference0, const RuntimeMethod* method) ;
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateReadOnlyCollectionException(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateList(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___listType0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationCollectionFixupCallback__ctor_mB50149D9773BF51E099E574127D057F454EC6DF8 (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup__ctor_m1F4ADF9D829F9B0BFEB1442AEB2167118F4EA0AB (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___collection0, XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* ___callback1, String_t* ___id2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionFixup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_m846FB4EEF12E21F5803BC41685952AFE6A3D98E1 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* ___fixup0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObjectElement(System.Xml.Serialization.XmlTypeMapElementInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___elem0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNode(System.Xml.Serialization.TypeData,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, bool ___wrapped1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::SetChoice(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_SetChoice_m70A2968411084153BBDD57111C740A75C9D7AEB5 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, RuntimeObject* ___ob0, RuntimeObject* ___choice1, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::get_DefaultAnyElementMember()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindTextElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindTextElement_m4A953DA460CF998CB59D87819531224C9069FC0A (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_m163DA4E73791FCAE462A497BF2A0224A7775B629 (RuntimeObject* ___ob0, String_t* ___name1, RuntimeObject* ___value2, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_ListMembers()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::get_Source()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.TypeData::get_HasPublicConstructor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::IsReadOnly(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_IsReadOnly_mE3DBCC6D4CA65E2E2CAA00D4E21C30CAAC03F805 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::ImplicitConvert(System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationWriterInterpreter_ImplicitConvert_mD16AB1B10272160C637E2A335ADB47E55864C07E (RuntimeObject* ___obj0, Type_t* ___type1, const RuntimeMethod* method) ;
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_GlobalIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_m22E52C02AD75799B95A242B6B73EECFC0B20B81D (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___ob0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsOptionalValueType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlTypeMapMember::SetValueSpecified(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValueSpecified_m59690B6CAF6C450B85F61653053632248FEE544C (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___ob0, bool ___value1, const RuntimeMethod* method) ;
// System.Object System.Enum::ToObject(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_ToObject_m6AC36749AA2CE7BCC5416CA230C0E5B4BDCFF4DB (Type_t* ___enumType0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveValue(System.Xml.Serialization.XmlTypeMapElementInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveValue_m571D86640A7A892ABF759E35BC38F27B46C208F4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___elem0, const RuntimeMethod* method) ;
// System.Xml.Serialization.IXmlSerializable System.Xml.Serialization.XmlSerializationReader::ReadSerializable(System.Xml.Serialization.IXmlSerializable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___serializable0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationReader::ReadNullableString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationReader_ReadNullableString_mF87F51B907EF4DC621A112ACDA569F46CAF7733F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListString(System.Xml.Serialization.XmlTypeMapping,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListString_mA0DEC8B7D4D0939BF4250109EA9C9DB49F578A21 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, String_t* ___values1, const RuntimeMethod* method) ;
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetEnumValue(System.Xml.Serialization.XmlTypeMapping,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, String_t* ___val1, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlTypeMapping::get_TypeFullName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ;
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindElement_mB8E8BCFD1D6C7A8C244598D1317BCC1296E47CD7 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, String_t* ___elementName0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
// System.String[] System.String::Split(System.Char,System.StringSplitOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4 (String_t* __this, Il2CppChar ___separator0, int32_t ___options1, const RuntimeMethod* method) ;
// System.Array System.Xml.Serialization.XmlSerializationReader::EnsureArrayIndex(System.Array,System.Int32,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeArray* ___a0, int32_t ___index1, Type_t* ___elementType2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.TypeData::ConvertForAssignment(System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_ConvertForAssignment_m342A0D4CC583DB70A219F8D9470EAF36DC263092 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, RuntimeObject** ___value0, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA (Type_t* __this, String_t* ___name0, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___types1, const RuntimeMethod* method) ;
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___obj0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___parameters1, const RuntimeMethod* method) ;
// System.Object System.Activator::CreateInstance(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_m2767C14E0050C13BDB2732D7223FE17A9FA0F61A (Type_t* ___type0, bool ___nonPublic1, const RuntimeMethod* method) ;
// System.Object System.Activator::CreateInstance(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_m978D6F745618B691D632E5D6E4AB8840541FC858 (Type_t* ___type0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::CopyEnumerableList(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___source0, RuntimeObject* ___dest1, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Type::GetMethod(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231 (Type_t* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::ReadXmlDocument(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlSerializationReader_ReadXmlDocument_mFBCD46F2EADC620A3B2DF95B6EAAB8AC52B28AE5 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, bool ___wrapped0, const RuntimeMethod* method) ;
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownConstantException(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownConstantException_m0C39D77BDAD36BD8A62AC7BACAA8BA9767441E4F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___value0, Type_t* ___enumType1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FixupMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FixupMembers_mE0162576E13B7E40DD786B330C4D9D79326CFB75 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___obfixup1, bool ___isValueList2, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName[] System.Xml.Serialization.XmlSerializerNamespaces::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* XmlSerializerNamespaces_ToArray_m36788F0D0B36CF5704BA12E554987ACAA77E0661 (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_mCD5B02AA94A872AEB63A81C174520985F378E240 (WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* __this, const RuntimeMethod* method) ;
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m9551C746760505766F62166E975F43E6BC174F41 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationWriter::GetQualifiedName(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Runtime.Serialization.ObjectIDGenerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectIDGenerator__ctor_m26261E5BF8675579F39157564153ECA733453B10 (ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* __this, const RuntimeMethod* method) ;
// System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::get_Writer()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, String_t* ___value3, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationWriter::GetNamespacePrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetNamespacePrefix_m5F129F48CEF46D93DCBE7B31D2CC13A73F77494B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___ns0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m9BECE5A394F9A9601AB66932AF0D7EF25E16AE0B (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, String_t* ___value3, const RuntimeMethod* method) ;
// System.Xml.XmlElement System.Xml.XmlDocument::get_DocumentElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagEncoded(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlNode(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagLiteral(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___value2, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xsiType3, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlNCName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromXmlNCName_m7EE1E3AC8CC2953B2184AF5CD5041851508A7C56 (String_t* ___ncName0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXsiType(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationWriter::FromXmlQualifiedName(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xmlQualifiedName0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xsiType3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteElementString(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteElementString_m35A6492D83CA4686148F3D39271BC94E29811C42 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, const RuntimeMethod* method) ;
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializerNamespaces::get_Namespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* XmlSerializerNamespaces_get_Namespaces_mD6B8A3D282B91E40D13217289F2904CE4ACECD2D (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___value2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, bool ___writePrefixed2, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::CheckReferenceQueue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriteCallback::Invoke(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlSerializationWriter::GetId(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, bool ___addToReferencesList1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::AlreadyQueued(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___ob0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::IsPrimitiveArray(System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___td0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteArray(System.Object,System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteArray_mA3E69AB440FBF8F03DC25C3F8FD06071B1D07E37 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___td1, const RuntimeMethod* method) ;
// System.Object System.Array::GetValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21 (RuntimeArray* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___n0, String_t* ___ns1, RuntimeObject* ___o2, Type_t* ___ambientType3, bool ___suppressReference4, bool ___isNullable5, const RuntimeMethod* method) ;
// System.Void System.Collections.Queue::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mFCCBE2B4FFBD3F33D6FBE2D010C9A0CA976784CB (Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___serializable0, String_t* ___name1, String_t* ___ns2, bool ___isNullable3, bool ___wrapped4, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, RuntimeObject* ___o2, bool ___writePrefixed3, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean,System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, RuntimeObject* ___o2, bool ___writePrefixed3, RuntimeObject* ___namespaces4, const RuntimeMethod* method) ;
// System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromXmlName_mF60F1941DED51082A7FB7C79D6EF77EB96F44BFA (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlAnyAttributeAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyAttributeAttribute__ctor_m6A757CBDFCDBE37C4603E0E2A2BA0227BF8E7F55 (XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlAnyElementAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttribute__ctor_m77A25D19BBF9D0C1F511228A8990FB6A7977AE86 (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method)
{
{
__this->___order_2 = (-1);
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlAnyElementAttribute::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAnyElementAttribute_get_Name_m4A874C74BA795155B3B95CD2A423E1C8A0CAE8F0 (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __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->___elementName_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___elementName_0;
return L_2;
}
}
// System.String System.Xml.Serialization.XmlAnyElementAttribute::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6 (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_1;
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlAnyElementAttribute::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttribute_get_Order_m2CCED3AB699ADBDE0F16C41EB0EFE8921DF4BA6A (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___order_2;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlAnyElementAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttribute_AddKeyHash_m7AB3FE3A96E37527BD66E200B740E9E9E457D112 (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA8DCEA6EA268D311C30598BDE81636EC3EEA7D44);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteralA8DCEA6EA268D311C30598BDE81636EC3EEA7D44, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___ns_1;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
String_t* L_5 = __this->___elementName_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
NullCheck(L_6);
StringBuilder_t* L_7;
L_7 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_6, ((int32_t)124), 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.Serialization.XmlAnyElementAttribute System.Xml.Serialization.XmlAnyElementAttributes::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* XmlAnyElementAttributes_get_Item_mD23E83BA47BE2FEC7B1928CC3CE5478BA98ABB6E (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8(__this, NULL);
int32_t L_1 = ___index0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
return ((XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB*)CastclassClass((RuntimeObject*)L_2, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Xml.Serialization.XmlAnyElementAttributes::Add(System.Xml.Serialization.XmlAnyElementAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttributes_Add_m3767B41223211071B81243E075C9774175A5C186 (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* ___attribute0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8(__this, NULL);
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_1 = ___attribute0;
NullCheck(L_0);
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlAnyElementAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttributes_AddKeyHash_m8E7B73641DDBEB048ED0C413F5B5A13B8192EF7D (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA843F9E227770024015378DF832E1A25CFCD73F2);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(__this, NULL);
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
StringBuilder_t* L_1 = ___sb0;
NullCheck(L_1);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, _stringLiteralA843F9E227770024015378DF832E1A25CFCD73F2, NULL);
V_0 = 0;
goto IL_002a;
}
IL_0019:
{
int32_t L_3 = V_0;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_4;
L_4 = XmlAnyElementAttributes_get_Item_mD23E83BA47BE2FEC7B1928CC3CE5478BA98ABB6E(__this, L_3, NULL);
StringBuilder_t* L_5 = ___sb0;
NullCheck(L_4);
XmlAnyElementAttribute_AddKeyHash_m7AB3FE3A96E37527BD66E200B740E9E9E457D112(L_4, L_5, NULL);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
}
IL_002a:
{
int32_t L_7 = V_0;
int32_t L_8;
L_8 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(__this, NULL);
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0019;
}
}
{
StringBuilder_t* L_9 = ___sb0;
NullCheck(L_9);
StringBuilder_t* L_10;
L_10 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)124), NULL);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlAnyElementAttributes::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttributes_get_Order_m01A17B17DAC7BFCE5C2B854C9B4751583480A986 (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
{
RuntimeObject* L_0;
L_0 = CollectionBase_GetEnumerator_m8121D67DEBB0009A93BFEBB1DA46BA8A671FD862(__this, NULL);
V_0 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0031:
{// begin finally (depth: 1)
{
RuntimeObject* L_1 = V_0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_3;
if (!L_2)
{
goto IL_0041;
}
}
{
RuntimeObject* L_3 = V_3;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0041:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0027_1;
}
IL_0009_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_4);
V_1 = ((XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB*)CastclassClass((RuntimeObject*)L_5, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var));
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_6 = V_1;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlAnyElementAttribute_get_Order_m2CCED3AB699ADBDE0F16C41EB0EFE8921DF4BA6A_inline(L_6, NULL);
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0027_1;
}
}
{
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = XmlAnyElementAttribute_get_Order_m2CCED3AB699ADBDE0F16C41EB0EFE8921DF4BA6A_inline(L_8, NULL);
V_2 = L_9;
goto IL_0044;
}
IL_0027_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0009_1;
}
}
{
goto IL_0042;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0042:
{
return (-1);
}
IL_0044:
{
int32_t L_12 = V_2;
return L_12;
}
}
// System.Void System.Xml.Serialization.XmlAnyElementAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAnyElementAttributes__ctor_m6A17C49BC033377B9E078F1CCFC3909A9348956A (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* __this, const RuntimeMethod* method)
{
{
CollectionBase__ctor_m9AB03A7692AA8F78FA5519ACA74FF3FA2F9520BC(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Xml.Serialization.XmlArrayAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayAttribute_get_ElementName_mFDDFF359B711CC6348AD07853053BB37C405CDC2 (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __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->___elementName_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___elementName_0;
return L_2;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayAttribute::get_Form()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlArrayAttribute_get_Form_mD5222A61AE3D5908142D9DBF1A5BE0986466F008 (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_1;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlArrayAttribute::get_IsNullable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlArrayAttribute_get_IsNullable_m84FB7E08614BFAFE7C6D5B72F4E43CBA42583CFB (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_2;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlArrayAttribute::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayAttribute_get_Namespace_m37B65FCCE7A60AEADBF394DB6210DA1CC8A91CF8 (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlArrayAttribute::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlArrayAttribute_get_Order_m82A05D0B48CDF77EEAC644B324916768C3DCC219 (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___order_4;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlArrayAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayAttribute_AddKeyHash_mD3E532419B5B132CD226CE174AEEEC03D8F08FBF (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2B88E46159CFC01C6A8623898739CB2A93FAE87);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteralE2B88E46159CFC01C6A8623898739CB2A93FAE87, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___ns_3;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
String_t* L_5 = __this->___elementName_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
int32_t* L_7 = (&__this->___form_1);
Il2CppFakeBox<int32_t> L_8(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, L_7);
String_t* L_9;
L_9 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_8), NULL);
V_0 = 0;
Il2CppFakeBox<int32_t> L_10(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, (&V_0));
String_t* L_11;
L_11 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_10), NULL);
KeyHelper_AddField_m121B48D3252D16160844C6731FF6FB43B18425E1(L_6, 3, L_9, L_11, NULL);
StringBuilder_t* L_12 = ___sb0;
bool L_13 = __this->___isNullable_2;
KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061(L_12, 4, L_13, NULL);
StringBuilder_t* L_14 = ___sb0;
NullCheck(L_14);
StringBuilder_t* L_15;
L_15 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)124), 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.Serialization.XmlArrayItemAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_DataType_m781844E00CC1400EE1F3960B9D8367FC06C5B1C9 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __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->___dataType_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___dataType_0;
return L_2;
}
}
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_ElementName_m2882B401E27852A6CC2129A6B0CBD8DAE7EE6677 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __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->___elementName_1;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___elementName_1;
return L_2;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayItemAttribute::get_Form()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttribute_get_Form_mBBFA635F531B819D8E43AFF6110670FB383C1F33 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_2;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_Namespace_m18BA85AB457B0ED70ABDA1C89B32A10BA24D0113 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::get_IsNullable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlArrayItemAttribute_get_IsNullable_mC7A6E27D7259FF7DD81A2C575EBD4578651857D8 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_4;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::get_IsNullableSpecified()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlArrayItemAttribute_get_IsNullableSpecified_mDC4FABB753BA60A10CEED9BDD82011C47E14B4F0 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullableSpecified_5;
return L_0;
}
}
// System.Type System.Xml.Serialization.XmlArrayItemAttribute::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlArrayItemAttribute_get_Type_m80FA2D88365496E4C5090375F0E014976B6B7417 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_7;
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlArrayItemAttribute::get_NestingLevel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttribute_get_NestingLevel_mE927341768913F399DAB59E37BB38EB4B5CF33ED (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___nestingLevel_6;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlArrayItemAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayItemAttribute_AddKeyHash_m899C82648223097CA3798612D04E7C0E6D8DC440 (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B54B99D2D01A816F2DDC997E399877B2A8DB19C);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral9B54B99D2D01A816F2DDC997E399877B2A8DB19C, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___ns_3;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
String_t* L_5 = __this->___elementName_1;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
int32_t* L_7 = (&__this->___form_2);
Il2CppFakeBox<int32_t> L_8(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, L_7);
String_t* L_9;
L_9 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_8), NULL);
V_0 = 0;
Il2CppFakeBox<int32_t> L_10(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, (&V_0));
String_t* L_11;
L_11 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_10), NULL);
KeyHelper_AddField_m121B48D3252D16160844C6731FF6FB43B18425E1(L_6, 3, L_9, L_11, NULL);
StringBuilder_t* L_12 = ___sb0;
bool L_13 = __this->___isNullable_4;
KeyHelper_AddField_mEF58A07F8E3AD8A1E3E44B5AF44E9886E3296D24(L_12, 4, L_13, (bool)1, NULL);
StringBuilder_t* L_14 = ___sb0;
String_t* L_15 = __this->___dataType_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_14, 5, L_15, NULL);
StringBuilder_t* L_16 = ___sb0;
int32_t L_17 = __this->___nestingLevel_6;
KeyHelper_AddField_mC6B2F528BC8CD8680EE2F4B3AB9FD0F786950234(L_16, 6, L_17, 0, NULL);
StringBuilder_t* L_18 = ___sb0;
Type_t* L_19 = __this->___type_7;
KeyHelper_AddField_m017BF19230CC3E3D4ABCCE764A6D36E8A46C89EC(L_18, 7, L_19, NULL);
StringBuilder_t* L_20 = ___sb0;
NullCheck(L_20);
StringBuilder_t* L_21;
L_21 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_20, ((int32_t)124), 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.Serialization.XmlArrayItemAttribute System.Xml.Serialization.XmlArrayItemAttributes::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* XmlArrayItemAttributes_get_Item_m3A37EA7333F946C6C6F52A46BFCDD4FC0B420DD8 (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8(__this, NULL);
int32_t L_1 = ___index0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
return ((XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40*)CastclassClass((RuntimeObject*)L_2, XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Xml.Serialization.XmlArrayItemAttributes::Add(System.Xml.Serialization.XmlArrayItemAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttributes_Add_m5409D5F1D56AE511D0CE652C4F940B6D36CE7FCC (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* ___attribute0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8(__this, NULL);
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_1 = ___attribute0;
NullCheck(L_0);
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlArrayItemAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayItemAttributes_AddKeyHash_m7425226A5091C66C2225133D67F3F85248E9052A (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9429457DD16796EBBE1D06D01517DB7C764BA6A7);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(__this, NULL);
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
StringBuilder_t* L_1 = ___sb0;
NullCheck(L_1);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, _stringLiteral9429457DD16796EBBE1D06D01517DB7C764BA6A7, NULL);
V_0 = 0;
goto IL_002a;
}
IL_0019:
{
int32_t L_3 = V_0;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_4;
L_4 = XmlArrayItemAttributes_get_Item_m3A37EA7333F946C6C6F52A46BFCDD4FC0B420DD8(__this, L_3, NULL);
StringBuilder_t* L_5 = ___sb0;
NullCheck(L_4);
XmlArrayItemAttribute_AddKeyHash_m899C82648223097CA3798612D04E7C0E6D8DC440(L_4, L_5, NULL);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
}
IL_002a:
{
int32_t L_7 = V_0;
int32_t L_8;
L_8 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(__this, NULL);
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0019;
}
}
{
StringBuilder_t* L_9 = ___sb0;
NullCheck(L_9);
StringBuilder_t* L_10;
L_10 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)124), NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlArrayItemAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlArrayItemAttributes__ctor_m8714C17D54F0BB66B4CDC5558C3839BDC48D1262 (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* __this, const RuntimeMethod* method)
{
{
CollectionBase__ctor_m9AB03A7692AA8F78FA5519ACA74FF3FA2F9520BC(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlAttributeAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeAttribute__ctor_m3E32E1039959E973CB41409D99ACC48B7226B395 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, String_t* ___attributeName0, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
String_t* L_0 = ___attributeName0;
__this->___attributeName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributeName_0), (void*)L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_AttributeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_AttributeName_mD12BFE7D2970617D6BAEA2C7726BFCC1E78043B9 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __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->___attributeName_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___attributeName_0;
return L_2;
}
}
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_DataType_m0F9734D465582A44A3DF13505EBF817307233310 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __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->___dataType_1;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___dataType_1;
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlAttributeAttribute::set_DataType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeAttribute_set_DataType_m8F11C42E4B1FACC380B885DAB91D1A3FEBF7C70B (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___dataType_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___dataType_1), (void*)L_0);
return;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlAttributeAttribute::get_Form()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeAttribute_get_Form_m49A9D062DB2C8CED21041D3FBF941A7C3A4E06BD (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_3;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_Namespace_m66DDB72831548F3B23A4A68E11826303CEE42835 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_4;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlAttributeAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeAttribute_AddKeyHash_m2B3F08466F301B25ED496A73DB10AFA5645BBC26 (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral71D2B38B0BA7DDAC3254DB28F151BAC82CA42218);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral71D2B38B0BA7DDAC3254DB28F151BAC82CA42218, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___ns_4;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
String_t* L_5 = __this->___attributeName_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
int32_t* L_7 = (&__this->___form_3);
Il2CppFakeBox<int32_t> L_8(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, L_7);
String_t* L_9;
L_9 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_8), NULL);
V_0 = 0;
Il2CppFakeBox<int32_t> L_10(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, (&V_0));
String_t* L_11;
L_11 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_10), NULL);
KeyHelper_AddField_m121B48D3252D16160844C6731FF6FB43B18425E1(L_6, 3, L_9, L_11, NULL);
StringBuilder_t* L_12 = ___sb0;
String_t* L_13 = __this->___dataType_1;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_12, 4, L_13, NULL);
StringBuilder_t* L_14 = ___sb0;
Type_t* L_15 = __this->___type_2;
KeyHelper_AddField_m017BF19230CC3E3D4ABCCE764A6D36E8A46C89EC(L_14, 5, L_15, NULL);
StringBuilder_t* L_16 = ___sb0;
NullCheck(L_16);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_16, ((int32_t)124), 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.XmlAttributeOverrides::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeOverrides__ctor_m37774F812F38A06B484C026945A873EEC5C5A78C (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_0);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL);
__this->___overrides_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___overrides_0), (void*)L_0);
return;
}
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlAttributeOverrides::get_Item(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* XmlAttributeOverrides_get_Item_m2FAD5994E54196E78D169E8CCAB3D71E817A1025 (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, Type_t* ___type0, 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;
}
{
Type_t* L_0 = ___type0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_2;
L_2 = XmlAttributeOverrides_get_Item_m8F3874210220952C0D1ED4D9D3D69513D1C96C6E(__this, L_0, L_1, NULL);
return L_2;
}
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlAttributeOverrides::get_Item(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* XmlAttributeOverrides_get_Item_m8F3874210220952C0D1ED4D9D3D69513D1C96C6E (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, Type_t* ___type0, String_t* ___member1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___overrides_0;
Type_t* L_1 = ___type0;
String_t* L_2 = ___member1;
TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D* L_3;
L_3 = XmlAttributeOverrides_GetKey_m2A1C08CCB0F0A887808DF7DE7440609181A9B383(__this, L_1, L_2, NULL);
NullCheck(L_0);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_3);
return ((XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)CastclassClass((RuntimeObject*)L_4, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var));
}
}
// System.Xml.Serialization.TypeMember System.Xml.Serialization.XmlAttributeOverrides::GetKey(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D* XmlAttributeOverrides_GetKey_m2A1C08CCB0F0A887808DF7DE7440609181A9B383 (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, Type_t* ___type0, String_t* ___member1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
String_t* L_1 = ___member1;
TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D* L_2 = (TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D*)il2cpp_codegen_object_new(TypeMember_tC50D33D2FBD149BB3F9B76E6AFD752A4B4E2AE1D_il2cpp_TypeInfo_var);
NullCheck(L_2);
TypeMember__ctor_m0151EB46D0BF9AB4D68680469BB3B1D0382191CF(L_2, L_0, L_1, NULL);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlAttributeOverrides::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeOverrides_AddKeyHash_mD14920F69E7D72E646922CEE1B44BA7DDB8CD11D (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD26908498CB8612B538864E9368C4E6B7D359F3D);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
StringBuilder_t* G_B4_0 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* G_B4_1 = NULL;
StringBuilder_t* G_B3_0 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
StringBuilder_t* G_B5_1 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* G_B5_2 = NULL;
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteralD26908498CB8612B538864E9368C4E6B7D359F3D, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->___overrides_0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_2);
V_0 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007a:
{// begin finally (depth: 1)
{
RuntimeObject* L_4 = V_0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_3;
if (!L_5)
{
goto IL_008a;
}
}
{
RuntimeObject* L_6 = V_3;
NullCheck(L_6);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
}
IL_008a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0070_1;
}
IL_001a_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
V_1 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_8, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
RuntimeObject* L_9;
L_9 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL);
RuntimeObject* L_10;
L_10 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_1), NULL);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var));
StringBuilder_t* L_11 = ___sb0;
RuntimeObject* L_12 = V_2;
G_B3_0 = L_11;
G_B3_1 = ((XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)CastclassClass((RuntimeObject*)L_9, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var));
if (L_12)
{
G_B4_0 = L_11;
G_B4_1 = ((XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)CastclassClass((RuntimeObject*)L_9, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var));
goto IL_0051_1;
}
}
{
RuntimeObject* L_13;
L_13 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_1), NULL);
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
G_B5_0 = L_14;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
goto IL_005d_1;
}
IL_0051_1:
{
RuntimeObject* L_15 = V_2;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_16;
L_16 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(L_15);
String_t* L_17;
L_17 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, L_15, (String_t*)NULL, L_16);
G_B5_0 = L_17;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
}
IL_005d_1:
{
NullCheck(G_B5_1);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B5_1, G_B5_0, NULL);
NullCheck(L_18);
StringBuilder_t* L_19;
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_18, ((int32_t)32), NULL);
StringBuilder_t* L_20 = ___sb0;
NullCheck(G_B5_2);
XmlAttributes_AddKeyHash_m67DE2F458A9666FCD4B8CCE854ABFDFAACDE224F(G_B5_2, L_20, NULL);
}
IL_0070_1:
{
RuntimeObject* L_21 = V_0;
NullCheck(L_21);
bool L_22;
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
if (L_22)
{
goto IL_001a_1;
}
}
{
goto IL_008b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_008b:
{
StringBuilder_t* L_23 = ___sb0;
NullCheck(L_23);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827, 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.XmlAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributes__ctor_mA77FF59E5F2D6C3DAE3695F3A11F61B6DE8E6494 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_0 = (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF*)il2cpp_codegen_object_new(XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlAnyElementAttributes__ctor_m6A17C49BC033377B9E078F1CCFC3909A9348956A(L_0, NULL);
__this->___xmlAnyElements_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAnyElements_1), (void*)L_0);
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_1 = (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513*)il2cpp_codegen_object_new(XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlArrayItemAttributes__ctor_m8714C17D54F0BB66B4CDC5558C3839BDC48D1262(L_1, NULL);
__this->___xmlArrayItems_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlArrayItems_3), (void*)L_1);
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_2 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
__this->___xmlDefaultValue_6 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlDefaultValue_6), (void*)L_2);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_3 = (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50*)il2cpp_codegen_object_new(XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlElementAttributes__ctor_mF9ECB9E0E902251B37757FC133AB4607BCAF8962(L_3, NULL);
__this->___xmlElements_7 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlElements_7), (void*)L_3);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributes::.ctor(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributes__ctor_mFEEAECF61BFB18BAA8D5767AF38A2D51D7CBC15F (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_0 = (XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF*)il2cpp_codegen_object_new(XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlAnyElementAttributes__ctor_m6A17C49BC033377B9E078F1CCFC3909A9348956A(L_0, NULL);
__this->___xmlAnyElements_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAnyElements_1), (void*)L_0);
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_1 = (XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513*)il2cpp_codegen_object_new(XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlArrayItemAttributes__ctor_m8714C17D54F0BB66B4CDC5558C3839BDC48D1262(L_1, NULL);
__this->___xmlArrayItems_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlArrayItems_3), (void*)L_1);
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_2 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
__this->___xmlDefaultValue_6 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlDefaultValue_6), (void*)L_2);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_3 = (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50*)il2cpp_codegen_object_new(XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlElementAttributes__ctor_mF9ECB9E0E902251B37757FC133AB4607BCAF8962(L_3, NULL);
__this->___xmlElements_7 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlElements_7), (void*)L_3);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_4 = ___provider0;
NullCheck(L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5;
L_5 = InterfaceFuncInvoker1< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, bool >::Invoke(0 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Boolean) */, ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var, L_4, (bool)0);
V_0 = L_5;
V_1 = 0;
goto IL_019d;
}
IL_0041:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
RuntimeObject* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_2 = L_9;
RuntimeObject* L_10 = V_2;
if (!((XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A*)IsInstClass((RuntimeObject*)L_10, XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A_il2cpp_TypeInfo_var)))
{
goto IL_005e;
}
}
{
RuntimeObject* L_11 = V_2;
__this->___xmlAnyAttribute_0 = ((XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A*)CastclassClass((RuntimeObject*)L_11, XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAnyAttribute_0), (void*)((XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A*)CastclassClass((RuntimeObject*)L_11, XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_005e:
{
RuntimeObject* L_12 = V_2;
if (!((XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB*)IsInstClass((RuntimeObject*)L_12, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var)))
{
goto IL_007d;
}
}
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_13 = __this->___xmlAnyElements_1;
RuntimeObject* L_14 = V_2;
NullCheck(L_13);
int32_t L_15;
L_15 = XmlAnyElementAttributes_Add_m3767B41223211071B81243E075C9774175A5C186(L_13, ((XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB*)CastclassClass((RuntimeObject*)L_14, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var)), NULL);
goto IL_0199;
}
IL_007d:
{
RuntimeObject* L_16 = V_2;
if (!((XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15*)IsInstClass((RuntimeObject*)L_16, XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15_il2cpp_TypeInfo_var)))
{
goto IL_0096;
}
}
{
RuntimeObject* L_17 = V_2;
__this->___xmlArray_2 = ((XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15*)CastclassClass((RuntimeObject*)L_17, XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlArray_2), (void*)((XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15*)CastclassClass((RuntimeObject*)L_17, XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_0096:
{
RuntimeObject* L_18 = V_2;
if (!((XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40*)IsInstClass((RuntimeObject*)L_18, XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var)))
{
goto IL_00b5;
}
}
{
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_19 = __this->___xmlArrayItems_3;
RuntimeObject* L_20 = V_2;
NullCheck(L_19);
int32_t L_21;
L_21 = XmlArrayItemAttributes_Add_m5409D5F1D56AE511D0CE652C4F940B6D36CE7FCC(L_19, ((XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40*)CastclassClass((RuntimeObject*)L_20, XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var)), NULL);
goto IL_0199;
}
IL_00b5:
{
RuntimeObject* L_22 = V_2;
if (!((XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE*)IsInstClass((RuntimeObject*)L_22, XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE_il2cpp_TypeInfo_var)))
{
goto IL_00ce;
}
}
{
RuntimeObject* L_23 = V_2;
__this->___xmlAttribute_4 = ((XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE*)CastclassClass((RuntimeObject*)L_23, XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAttribute_4), (void*)((XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE*)CastclassClass((RuntimeObject*)L_23, XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_00ce:
{
RuntimeObject* L_24 = V_2;
if (!((XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E*)IsInstClass((RuntimeObject*)L_24, XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E_il2cpp_TypeInfo_var)))
{
goto IL_00e7;
}
}
{
RuntimeObject* L_25 = V_2;
__this->___xmlChoiceIdentifier_5 = ((XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E*)CastclassClass((RuntimeObject*)L_25, XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlChoiceIdentifier_5), (void*)((XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E*)CastclassClass((RuntimeObject*)L_25, XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_00e7:
{
RuntimeObject* L_26 = V_2;
if (!((DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC*)IsInstClass((RuntimeObject*)L_26, DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC_il2cpp_TypeInfo_var)))
{
goto IL_0105;
}
}
{
RuntimeObject* L_27 = V_2;
NullCheck(((DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC*)CastclassClass((RuntimeObject*)L_27, DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC_il2cpp_TypeInfo_var)));
RuntimeObject* L_28;
L_28 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, ((DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC*)CastclassClass((RuntimeObject*)L_27, DefaultValueAttribute_tD45612CBB8D83D43A266980AB11467557BF753CC_il2cpp_TypeInfo_var)));
__this->___xmlDefaultValue_6 = L_28;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlDefaultValue_6), (void*)L_28);
goto IL_0199;
}
IL_0105:
{
RuntimeObject* L_29 = V_2;
if (!((XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5*)IsInstClass((RuntimeObject*)L_29, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var)))
{
goto IL_0121;
}
}
{
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_30 = __this->___xmlElements_7;
RuntimeObject* L_31 = V_2;
NullCheck(L_30);
int32_t L_32;
L_32 = XmlElementAttributes_Add_mFAF753CA050A16F260EAA885AD4A565B96DB4C40(L_30, ((XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5*)CastclassClass((RuntimeObject*)L_31, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var)), NULL);
goto IL_0199;
}
IL_0121:
{
RuntimeObject* L_33 = V_2;
if (!((XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)IsInstClass((RuntimeObject*)L_33, XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var)))
{
goto IL_0137;
}
}
{
RuntimeObject* L_34 = V_2;
__this->___xmlEnum_8 = ((XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)CastclassClass((RuntimeObject*)L_34, XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlEnum_8), (void*)((XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)CastclassClass((RuntimeObject*)L_34, XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_0137:
{
RuntimeObject* L_35 = V_2;
if (!((XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F*)IsInstClass((RuntimeObject*)L_35, XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F_il2cpp_TypeInfo_var)))
{
goto IL_0148;
}
}
{
__this->___xmlIgnore_9 = (bool)1;
goto IL_0199;
}
IL_0148:
{
RuntimeObject* L_36 = V_2;
if (!((XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C*)IsInstClass((RuntimeObject*)L_36, XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C_il2cpp_TypeInfo_var)))
{
goto IL_0159;
}
}
{
__this->___xmlns_10 = (bool)1;
goto IL_0199;
}
IL_0159:
{
RuntimeObject* L_37 = V_2;
if (!((XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)IsInstClass((RuntimeObject*)L_37, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF_il2cpp_TypeInfo_var)))
{
goto IL_016f;
}
}
{
RuntimeObject* L_38 = V_2;
__this->___xmlRoot_11 = ((XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)CastclassClass((RuntimeObject*)L_38, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlRoot_11), (void*)((XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)CastclassClass((RuntimeObject*)L_38, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_016f:
{
RuntimeObject* L_39 = V_2;
if (!((XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0*)IsInstClass((RuntimeObject*)L_39, XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0_il2cpp_TypeInfo_var)))
{
goto IL_0185;
}
}
{
RuntimeObject* L_40 = V_2;
__this->___xmlText_12 = ((XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0*)CastclassClass((RuntimeObject*)L_40, XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlText_12), (void*)((XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0*)CastclassClass((RuntimeObject*)L_40, XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0_il2cpp_TypeInfo_var)));
goto IL_0199;
}
IL_0185:
{
RuntimeObject* L_41 = V_2;
if (!((XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5*)IsInstClass((RuntimeObject*)L_41, XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5_il2cpp_TypeInfo_var)))
{
goto IL_0199;
}
}
{
RuntimeObject* L_42 = V_2;
__this->___xmlType_13 = ((XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5*)CastclassClass((RuntimeObject*)L_42, XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlType_13), (void*)((XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5*)CastclassClass((RuntimeObject*)L_42, XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5_il2cpp_TypeInfo_var)));
}
IL_0199:
{
int32_t L_43 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_43, 1));
}
IL_019d:
{
int32_t L_44 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_45 = V_0;
NullCheck(L_45);
if ((((int32_t)L_44) < ((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))
{
goto IL_0041;
}
}
{
bool L_46 = __this->___xmlIgnore_9;
if (!L_46)
{
goto IL_0215;
}
}
{
__this->___xmlAnyAttribute_0 = (XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAnyAttribute_0), (void*)(XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A*)NULL);
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_47 = __this->___xmlAnyElements_1;
NullCheck(L_47);
CollectionBase_Clear_m0357C9FEC2BDB351726BA642093656CB1025968F(L_47, NULL);
__this->___xmlArray_2 = (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlArray_2), (void*)(XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15*)NULL);
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_48 = __this->___xmlArrayItems_3;
NullCheck(L_48);
CollectionBase_Clear_m0357C9FEC2BDB351726BA642093656CB1025968F(L_48, NULL);
__this->___xmlAttribute_4 = (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAttribute_4), (void*)(XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE*)NULL);
__this->___xmlChoiceIdentifier_5 = (XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlChoiceIdentifier_5), (void*)(XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E*)NULL);
__this->___xmlDefaultValue_6 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlDefaultValue_6), (void*)NULL);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_49 = __this->___xmlElements_7;
NullCheck(L_49);
CollectionBase_Clear_m0357C9FEC2BDB351726BA642093656CB1025968F(L_49, NULL);
__this->___xmlEnum_8 = (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlEnum_8), (void*)(XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)NULL);
__this->___xmlns_10 = (bool)0;
__this->___xmlRoot_11 = (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlRoot_11), (void*)(XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL);
__this->___xmlText_12 = (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlText_12), (void*)(XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0*)NULL);
__this->___xmlType_13 = (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlType_13), (void*)(XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5*)NULL);
}
IL_0215:
{
return;
}
}
// System.Xml.Serialization.XmlAnyAttributeAttribute System.Xml.Serialization.XmlAttributes::get_XmlAnyAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* XmlAttributes_get_XmlAnyAttribute_m3116C8A13795C5AEB267B6C78EE406EB7F1C79D7 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* L_0 = __this->___xmlAnyAttribute_0;
return L_0;
}
}
// System.Xml.Serialization.XmlAnyElementAttributes System.Xml.Serialization.XmlAttributes::get_XmlAnyElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_0 = __this->___xmlAnyElements_1;
return L_0;
}
}
// System.Xml.Serialization.XmlArrayAttribute System.Xml.Serialization.XmlAttributes::get_XmlArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_0 = __this->___xmlArray_2;
return L_0;
}
}
// System.Xml.Serialization.XmlArrayItemAttributes System.Xml.Serialization.XmlAttributes::get_XmlArrayItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* XmlAttributes_get_XmlArrayItems_mA3EA68D61FCFD9DBAD4175F48035F95AC10EDB6E (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_0 = __this->___xmlArrayItems_3;
return L_0;
}
}
// System.Xml.Serialization.XmlAttributeAttribute System.Xml.Serialization.XmlAttributes::get_XmlAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_0 = __this->___xmlAttribute_4;
return L_0;
}
}
// System.Xml.Serialization.XmlChoiceIdentifierAttribute System.Xml.Serialization.XmlAttributes::get_XmlChoiceIdentifier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* XmlAttributes_get_XmlChoiceIdentifier_mA6096A2AFE2439889FA8F48E22AD7335C9B7EE45 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* L_0 = __this->___xmlChoiceIdentifier_5;
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlAttributes::get_XmlDefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAttributes_get_XmlDefaultValue_m24022111D30B964CF2DDE2EC6ACC870DB4BA7ED1 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___xmlDefaultValue_6;
return L_0;
}
}
// System.Xml.Serialization.XmlElementAttributes System.Xml.Serialization.XmlAttributes::get_XmlElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_0 = __this->___xmlElements_7;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlAttributes::get_XmlIgnore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributes_get_XmlIgnore_m817F5C7648E0CADEBE452A1EF3E59A0D07A80627 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___xmlIgnore_9;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlAttributes::get_Xmlns()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributes_get_Xmlns_m470230B52FC047B9820991B287C46CFACAACBB33 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___xmlns_10;
return L_0;
}
}
// System.Xml.Serialization.XmlRootAttribute System.Xml.Serialization.XmlAttributes::get_XmlRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_0 = __this->___xmlRoot_11;
return L_0;
}
}
// System.Xml.Serialization.XmlTextAttribute System.Xml.Serialization.XmlAttributes::get_XmlText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_0 = __this->___xmlText_12;
return L_0;
}
}
// System.Xml.Serialization.XmlTypeAttribute System.Xml.Serialization.XmlAttributes::get_XmlType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_0 = __this->___xmlType_13;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributes_AddKeyHash_m67DE2F458A9666FCD4B8CCE854ABFDFAACDE224F (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44906D44EC62870135D9DC36A0D3968140F3ECEF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C9ECEDF5B1FB9420A92A5B02A141FADFDF52ED6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DFFC3267C5F999585E61B45BA9C8DF18D4B02CA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral44906D44EC62870135D9DC36A0D3968140F3ECEF, NULL);
StringBuilder_t* L_2 = ___sb0;
bool L_3 = __this->___xmlIgnore_9;
KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
bool L_5 = __this->___xmlns_10;
KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* L_7 = __this->___xmlAnyAttribute_0;
KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061(L_6, 3, (bool)((!(((RuntimeObject*)(XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A*)L_7) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), NULL);
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_8 = __this->___xmlAnyElements_1;
StringBuilder_t* L_9 = ___sb0;
NullCheck(L_8);
XmlAnyElementAttributes_AddKeyHash_m8E7B73641DDBEB048ED0C413F5B5A13B8192EF7D(L_8, L_9, NULL);
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_10 = __this->___xmlArrayItems_3;
StringBuilder_t* L_11 = ___sb0;
NullCheck(L_10);
XmlArrayItemAttributes_AddKeyHash_m7425226A5091C66C2225133D67F3F85248E9052A(L_10, L_11, NULL);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_12 = __this->___xmlElements_7;
StringBuilder_t* L_13 = ___sb0;
NullCheck(L_12);
XmlElementAttributes_AddKeyHash_mD9A6FA25DFBA51026A175EBD0E1770261C926437(L_12, L_13, NULL);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_14 = __this->___xmlArray_2;
if (!L_14)
{
goto IL_006e;
}
}
{
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_15 = __this->___xmlArray_2;
StringBuilder_t* L_16 = ___sb0;
NullCheck(L_15);
XmlArrayAttribute_AddKeyHash_mD3E532419B5B132CD226CE174AEEEC03D8F08FBF(L_15, L_16, NULL);
}
IL_006e:
{
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_17 = __this->___xmlAttribute_4;
if (!L_17)
{
goto IL_0082;
}
}
{
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_18 = __this->___xmlAttribute_4;
StringBuilder_t* L_19 = ___sb0;
NullCheck(L_18);
XmlAttributeAttribute_AddKeyHash_m2B3F08466F301B25ED496A73DB10AFA5645BBC26(L_18, L_19, NULL);
}
IL_0082:
{
RuntimeObject* L_20 = __this->___xmlDefaultValue_6;
if (L_20)
{
goto IL_0098;
}
}
{
StringBuilder_t* L_21 = ___sb0;
NullCheck(L_21);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_21, _stringLiteral4C9ECEDF5B1FB9420A92A5B02A141FADFDF52ED6, NULL);
goto IL_00d3;
}
IL_0098:
{
RuntimeObject* L_23 = __this->___xmlDefaultValue_6;
if (((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)IsInstSealed((RuntimeObject*)L_23, DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var)))
{
goto IL_00d3;
}
}
{
RuntimeObject* L_24 = __this->___xmlDefaultValue_6;
NullCheck(L_24);
Type_t* L_25;
L_25 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_24, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_26;
L_26 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_25, NULL);
RuntimeObject* L_27 = __this->___xmlDefaultValue_6;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_28;
L_28 = XmlCustomFormatter_ToXmlString_m8B314E13C0DF5676C6D9516F1DB34518106A394D(L_26, L_27, NULL);
V_0 = L_28;
StringBuilder_t* L_29 = ___sb0;
String_t* L_30 = V_0;
String_t* L_31;
L_31 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral9DFFC3267C5F999585E61B45BA9C8DF18D4B02CA, L_30, NULL);
NullCheck(L_29);
StringBuilder_t* L_32;
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_29, L_31, NULL);
}
IL_00d3:
{
XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* L_33 = __this->___xmlEnum_8;
if (!L_33)
{
goto IL_00e7;
}
}
{
XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* L_34 = __this->___xmlEnum_8;
StringBuilder_t* L_35 = ___sb0;
NullCheck(L_34);
XmlEnumAttribute_AddKeyHash_mBD6CCFBA2AF5A0E9FA46F35AF30E1DFF8CE2217C(L_34, L_35, NULL);
}
IL_00e7:
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_36 = __this->___xmlRoot_11;
if (!L_36)
{
goto IL_00fb;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_37 = __this->___xmlRoot_11;
StringBuilder_t* L_38 = ___sb0;
NullCheck(L_37);
XmlRootAttribute_AddKeyHash_m0CE50F6D4C7EFAE326DF317DABC543E85307463A(L_37, L_38, NULL);
}
IL_00fb:
{
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_39 = __this->___xmlText_12;
if (!L_39)
{
goto IL_010f;
}
}
{
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_40 = __this->___xmlText_12;
StringBuilder_t* L_41 = ___sb0;
NullCheck(L_40);
XmlTextAttribute_AddKeyHash_m5084FCEC37C0FEABFFA86617BB1F2993D9F544DC(L_40, L_41, NULL);
}
IL_010f:
{
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_42 = __this->___xmlType_13;
if (!L_42)
{
goto IL_0123;
}
}
{
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_43 = __this->___xmlType_13;
StringBuilder_t* L_44 = ___sb0;
NullCheck(L_43);
XmlTypeAttribute_AddKeyHash_mC4DAB0436EA984594404652066A6EFCF264465F9(L_43, L_44, NULL);
}
IL_0123:
{
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* L_45 = __this->___xmlChoiceIdentifier_5;
if (!L_45)
{
goto IL_0137;
}
}
{
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* L_46 = __this->___xmlChoiceIdentifier_5;
StringBuilder_t* L_47 = ___sb0;
NullCheck(L_46);
XmlChoiceIdentifierAttribute_AddKeyHash_mF380D6DE99B750E124549D3892E8E009F65C41D5(L_46, L_47, NULL);
}
IL_0137:
{
StringBuilder_t* L_48 = ___sb0;
NullCheck(L_48);
StringBuilder_t* L_49;
L_49 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_48, _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827, NULL);
return;
}
}
// System.Nullable`1<System.Int32> System.Xml.Serialization.XmlAttributes::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 XmlAttributes_get_Order_mFDA027D8E65B6FA40F5D935825673C832309FF28 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_0;
memset((&V_0), 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_0;
L_0 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_0, NULL);
if ((((int32_t)L_1) <= ((int32_t)0)))
{
goto IL_002a;
}
}
{
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_2;
L_2 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = XmlElementAttributes_get_Order_mAE0BF907973526BBAF7AAF9CACD9CDD665624215(L_2, NULL);
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&V_0), L_3, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
goto IL_0066;
}
IL_002a:
{
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_4;
L_4 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(__this, NULL);
if (!L_4)
{
goto IL_0046;
}
}
{
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_5;
L_5 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(__this, NULL);
NullCheck(L_5);
int32_t L_6;
L_6 = XmlArrayAttribute_get_Order_m82A05D0B48CDF77EEAC644B324916768C3DCC219_inline(L_5, NULL);
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&V_0), L_6, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
goto IL_0066;
}
IL_0046:
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_7;
L_7 = XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline(__this, NULL);
NullCheck(L_7);
int32_t L_8;
L_8 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_7, NULL);
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_0066;
}
}
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_9;
L_9 = XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline(__this, NULL);
NullCheck(L_9);
int32_t L_10;
L_10 = XmlAnyElementAttributes_get_Order_m01A17B17DAC7BFCE5C2B854C9B4751583480A986(L_9, NULL);
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&V_0), L_10, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
}
IL_0066:
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_11 = V_0;
return L_11;
}
}
// System.Int32 System.Xml.Serialization.XmlAttributes::get_SortableOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributes_get_SortableOrder_m3D4F7E08FCA0AF6985B0C5BED981BE036E03B687 (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_0;
L_0 = XmlAttributes_get_Order_mFDA027D8E65B6FA40F5D935825673C832309FF28(__this, NULL);
V_0 = L_0;
bool L_1;
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_0), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_1)
{
goto IL_0016;
}
}
{
return ((int32_t)-2147483648LL);
}
IL_0016:
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_2;
L_2 = XmlAttributes_get_Order_mFDA027D8E65B6FA40F5D935825673C832309FF28(__this, NULL);
V_0 = L_2;
int32_t L_3;
L_3 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&V_0), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
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.String System.Xml.Serialization.XmlChoiceIdentifierAttribute::get_MemberName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlChoiceIdentifierAttribute_get_MemberName_mFB0A7699A652AE5EEB3AF341F1EEE4C91B46EE9A (XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* __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->___memberName_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___memberName_0;
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlChoiceIdentifierAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChoiceIdentifierAttribute_AddKeyHash_mF380D6DE99B750E124549D3892E8E009F65C41D5 (XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58C9C290D14E469F4F8043C30DAE9B517DFD91E1);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral58C9C290D14E469F4F8043C30DAE9B517DFD91E1, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___memberName_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
NullCheck(L_4);
StringBuilder_t* L_5;
L_5 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_4, ((int32_t)124), 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.Serialization.XmlCustomFormatter::FromEnum(System.Int64,System.String[],System.Int64[],System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromEnum_m6B1BC1859F10CDB1C04A13AB2CCFB37CD0D80D18 (int64_t ___value0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___values1, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ___ids2, String_t* ___typeName3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
int32_t V_1 = 0;
int64_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_1 = ___ids2;
NullCheck(L_1);
V_1 = ((int32_t)(((RuntimeArray*)L_1)->max_length));
int64_t L_2 = ___value0;
V_2 = L_2;
V_3 = (-1);
V_4 = 0;
goto IL_0057;
}
IL_0013:
{
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_3 = ___ids2;
int32_t L_4 = V_4;
NullCheck(L_3);
int32_t L_5 = L_4;
int64_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
if (L_6)
{
goto IL_001e;
}
}
{
int32_t L_7 = V_4;
V_3 = L_7;
goto IL_0051;
}
IL_001e:
{
int64_t L_8 = V_2;
if (!L_8)
{
goto IL_005c;
}
}
{
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_9 = ___ids2;
int32_t L_10 = V_4;
NullCheck(L_9);
int32_t L_11 = L_10;
int64_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
int64_t L_13 = ___value0;
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_14 = ___ids2;
int32_t L_15 = V_4;
NullCheck(L_14);
int32_t L_16 = L_15;
int64_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
if ((!(((uint64_t)((int64_t)(L_12&L_13))) == ((uint64_t)L_17))))
{
goto IL_0051;
}
}
{
StringBuilder_t* L_18 = V_0;
NullCheck(L_18);
int32_t L_19;
L_19 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_18, NULL);
if (!L_19)
{
goto IL_003e;
}
}
{
StringBuilder_t* L_20 = V_0;
NullCheck(L_20);
StringBuilder_t* L_21;
L_21 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_20, ((int32_t)32), NULL);
}
IL_003e:
{
StringBuilder_t* L_22 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = ___values1;
int32_t L_24 = V_4;
NullCheck(L_23);
int32_t L_25 = L_24;
String_t* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
NullCheck(L_22);
StringBuilder_t* L_27;
L_27 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_22, L_26, NULL);
int64_t L_28 = V_2;
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_29 = ___ids2;
int32_t L_30 = V_4;
NullCheck(L_29);
int32_t L_31 = L_30;
int64_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_2 = ((int64_t)(L_28&((~L_32))));
}
IL_0051:
{
int32_t L_33 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_33, 1));
}
IL_0057:
{
int32_t L_34 = V_4;
int32_t L_35 = V_1;
if ((((int32_t)L_34) < ((int32_t)L_35)))
{
goto IL_0013;
}
}
IL_005c:
{
int64_t L_36 = V_2;
if (!L_36)
{
goto IL_0099;
}
}
{
String_t* L_37 = ___typeName3;
if (!L_37)
{
goto IL_007e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_38;
L_38 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
int64_t L_39 = ___value0;
int64_t L_40 = L_39;
RuntimeObject* L_41 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)), &L_40);
String_t* L_42 = ___typeName3;
String_t* L_43;
L_43 = String_Format_m69D52D3917F3D1BAC76B506B9BAA68A41B483DEF(L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35)), L_41, L_42, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_44 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_44);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_44, L_43, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlCustomFormatter_FromEnum_m6B1BC1859F10CDB1C04A13AB2CCFB37CD0D80D18_RuntimeMethod_var)));
}
IL_007e:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_45;
L_45 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
int64_t L_46 = ___value0;
int64_t L_47 = L_46;
RuntimeObject* L_48 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)), &L_47);
String_t* L_49;
L_49 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_45, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1BF1039B56259D73BD0BEE9EF7031C5CDFAF393E)), L_48, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_50 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_50);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_50, L_49, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_50, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlCustomFormatter_FromEnum_m6B1BC1859F10CDB1C04A13AB2CCFB37CD0D80D18_RuntimeMethod_var)));
}
IL_0099:
{
StringBuilder_t* L_51 = V_0;
NullCheck(L_51);
int32_t L_52;
L_52 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_51, NULL);
if (L_52)
{
goto IL_00af;
}
}
{
int32_t L_53 = V_3;
if ((((int32_t)L_53) == ((int32_t)(-1))))
{
goto IL_00af;
}
}
{
StringBuilder_t* L_54 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = ___values1;
int32_t L_56 = V_3;
NullCheck(L_55);
int32_t L_57 = L_56;
String_t* L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
NullCheck(L_54);
StringBuilder_t* L_59;
L_59 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_54, L_58, NULL);
}
IL_00af:
{
StringBuilder_t* L_60 = V_0;
NullCheck(L_60);
String_t* L_61;
L_61 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_60);
return L_61;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromXmlName_mF60F1941DED51082A7FB7C79D6EF77EB96F44BFA (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = XmlConvert_EncodeName_m42879CBB7E33F534E7BA93890E4A830C5E5C6392(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlNCName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromXmlNCName_m7EE1E3AC8CC2953B2184AF5CD5041851508A7C56 (String_t* ___ncName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___ncName0;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::ToXmlString(System.Xml.Serialization.TypeData,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_ToXmlString_m8B314E13C0DF5676C6D9516F1DB34518106A394D (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_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*)&_stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51C6279E31F7483126B79E3000116001A915B690);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7ED334B1196CAA0013BCFAED11720B289ACE8657);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7);
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*)&_stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
uint32_t V_1 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2;
memset((&V_2), 0, sizeof(V_2));
{
RuntimeObject* L_0 = ___value1;
if (L_0)
{
goto IL_0005;
}
}
{
return (String_t*)NULL;
}
IL_0005:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = ___type0;
NullCheck(L_1);
String_t* L_2;
L_2 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_1, NULL);
V_0 = L_2;
String_t* L_3 = V_0;
uint32_t L_4;
L_4 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_mEAE825F700D1360D52DBAE623315B108ABADF375(L_3, NULL);
V_1 = L_4;
uint32_t L_5 = V_1;
if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)1683620383)))))
{
goto IL_00b8;
}
}
{
uint32_t L_6 = V_1;
if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)1042916651)))))
{
goto IL_006f;
}
}
{
uint32_t L_7 = V_1;
if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)735213196)))))
{
goto IL_0049;
}
}
{
uint32_t L_8 = V_1;
if ((((int32_t)L_8) == ((int32_t)((int32_t)520654156))))
{
goto IL_01d5;
}
}
{
uint32_t L_9 = V_1;
if ((((int32_t)L_9) == ((int32_t)((int32_t)735213196))))
{
goto IL_016c;
}
}
{
goto IL_0428;
}
IL_0049:
{
uint32_t L_10 = V_1;
if ((((int32_t)L_10) == ((int32_t)((int32_t)748388108))))
{
goto IL_02a7;
}
}
{
uint32_t L_11 = V_1;
if ((((int32_t)L_11) == ((int32_t)((int32_t)799079693))))
{
goto IL_02fb;
}
}
{
uint32_t L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)((int32_t)1042916651))))
{
goto IL_02e6;
}
}
{
goto IL_0428;
}
IL_006f:
{
uint32_t L_13 = V_1;
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)1412591975)))))
{
goto IL_0092;
}
}
{
uint32_t L_14 = V_1;
if ((((int32_t)L_14) == ((int32_t)((int32_t)1293334960))))
{
goto IL_0196;
}
}
{
uint32_t L_15 = V_1;
if ((((int32_t)L_15) == ((int32_t)((int32_t)1412591975))))
{
goto IL_027d;
}
}
{
goto IL_0428;
}
IL_0092:
{
uint32_t L_16 = V_1;
if ((((int32_t)L_16) == ((int32_t)((int32_t)1467875291))))
{
goto IL_02d1;
}
}
{
uint32_t L_17 = V_1;
if ((((int32_t)L_17) == ((int32_t)((int32_t)1564253156))))
{
goto IL_01c0;
}
}
{
uint32_t L_18 = V_1;
if ((((int32_t)L_18) == ((int32_t)((int32_t)1683620383))))
{
goto IL_023e;
}
}
{
goto IL_0428;
}
IL_00b8:
{
uint32_t L_19 = V_1;
if ((!(((uint32_t)L_19) <= ((uint32_t)((int32_t)-1595207928)))))
{
goto IL_0109;
}
}
{
uint32_t L_20 = V_1;
if ((!(((uint32_t)L_20) <= ((uint32_t)((int32_t)-2012103568)))))
{
goto IL_00e3;
}
}
{
uint32_t L_21 = V_1;
if ((((int32_t)L_21) == ((int32_t)((int32_t)1710517951))))
{
goto IL_0157;
}
}
{
uint32_t L_22 = V_1;
if ((((int32_t)L_22) == ((int32_t)((int32_t)-2012103568))))
{
goto IL_0292;
}
}
{
goto IL_0428;
}
IL_00e3:
{
uint32_t L_23 = V_1;
if ((((int32_t)L_23) == ((int32_t)((int32_t)-1779859874))))
{
goto IL_0214;
}
}
{
uint32_t L_24 = V_1;
if ((((int32_t)L_24) == ((int32_t)((int32_t)-1621202992))))
{
goto IL_0268;
}
}
{
uint32_t L_25 = V_1;
if ((((int32_t)L_25) == ((int32_t)((int32_t)-1595207928))))
{
goto IL_01ea;
}
}
{
goto IL_0428;
}
IL_0109:
{
uint32_t L_26 = V_1;
if ((!(((uint32_t)L_26) <= ((uint32_t)((int32_t)-1172149291)))))
{
goto IL_0134;
}
}
{
uint32_t L_27 = V_1;
if ((((int32_t)L_27) == ((int32_t)((int32_t)-1497080443))))
{
goto IL_0253;
}
}
{
uint32_t L_28 = V_1;
if ((((int32_t)L_28) == ((int32_t)((int32_t)-1471413475))))
{
goto IL_0181;
}
}
{
uint32_t L_29 = V_1;
if ((((int32_t)L_29) == ((int32_t)((int32_t)-1172149291))))
{
goto IL_01ff;
}
}
{
goto IL_0428;
}
IL_0134:
{
uint32_t L_30 = V_1;
if ((((int32_t)L_30) == ((int32_t)((int32_t)-1024663725))))
{
goto IL_0229;
}
}
{
uint32_t L_31 = V_1;
if ((((int32_t)L_31) == ((int32_t)((int32_t)-730669991))))
{
goto IL_01ab;
}
}
{
uint32_t L_32 = V_1;
if ((((int32_t)L_32) == ((int32_t)((int32_t)-263295302))))
{
goto IL_02bc;
}
}
{
goto IL_0428;
}
IL_0157:
{
String_t* L_33 = V_0;
bool L_34;
L_34 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_33, _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490, NULL);
if (L_34)
{
goto IL_0310;
}
}
{
goto IL_0428;
}
IL_016c:
{
String_t* L_35 = V_0;
bool L_36;
L_36 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_35, _stringLiteralE234C34099947BE8BB6C958B450C81758FC6EC63, NULL);
if (L_36)
{
goto IL_031c;
}
}
{
goto IL_0428;
}
IL_0181:
{
String_t* L_37 = V_0;
bool L_38;
L_38 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_37, _stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7, NULL);
if (L_38)
{
goto IL_0328;
}
}
{
goto IL_0428;
}
IL_0196:
{
String_t* L_39 = V_0;
bool L_40;
L_40 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_39, _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6, NULL);
if (L_40)
{
goto IL_0334;
}
}
{
goto IL_0428;
}
IL_01ab:
{
String_t* L_41 = V_0;
bool L_42;
L_42 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_41, _stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300, NULL);
if (L_42)
{
goto IL_0341;
}
}
{
goto IL_0428;
}
IL_01c0:
{
String_t* L_43 = V_0;
bool L_44;
L_44 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_43, _stringLiteral51C6279E31F7483126B79E3000116001A915B690, NULL);
if (L_44)
{
goto IL_035a;
}
}
{
goto IL_0428;
}
IL_01d5:
{
String_t* L_45 = V_0;
bool L_46;
L_46 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_45, _stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D, NULL);
if (L_46)
{
goto IL_0373;
}
}
{
goto IL_0428;
}
IL_01ea:
{
String_t* L_47 = V_0;
bool L_48;
L_48 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_47, _stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8, NULL);
if (L_48)
{
goto IL_037f;
}
}
{
goto IL_0428;
}
IL_01ff:
{
String_t* L_49 = V_0;
bool L_50;
L_50 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_49, _stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7, NULL);
if (L_50)
{
goto IL_038b;
}
}
{
goto IL_0428;
}
IL_0214:
{
String_t* L_51 = V_0;
bool L_52;
L_52 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_51, _stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72, NULL);
if (L_52)
{
goto IL_0397;
}
}
{
goto IL_0428;
}
IL_0229:
{
String_t* L_53 = V_0;
bool L_54;
L_54 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_53, _stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7, NULL);
if (L_54)
{
goto IL_03a3;
}
}
{
goto IL_0428;
}
IL_023e:
{
String_t* L_55 = V_0;
bool L_56;
L_56 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_55, _stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7, NULL);
if (L_56)
{
goto IL_03af;
}
}
{
goto IL_0428;
}
IL_0253:
{
String_t* L_57 = V_0;
bool L_58;
L_58 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_57, _stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29, NULL);
if (L_58)
{
goto IL_03bb;
}
}
{
goto IL_0428;
}
IL_0268:
{
String_t* L_59 = V_0;
bool L_60;
L_60 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_59, _stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3, NULL);
if (L_60)
{
goto IL_03c7;
}
}
{
goto IL_0428;
}
IL_027d:
{
String_t* L_61 = V_0;
bool L_62;
L_62 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_61, _stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88, NULL);
if (L_62)
{
goto IL_03d3;
}
}
{
goto IL_0428;
}
IL_0292:
{
String_t* L_63 = V_0;
bool L_64;
L_64 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_63, _stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7, NULL);
if (L_64)
{
goto IL_03df;
}
}
{
goto IL_0428;
}
IL_02a7:
{
String_t* L_65 = V_0;
bool L_66;
L_66 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_65, _stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932, NULL);
if (L_66)
{
goto IL_03eb;
}
}
{
goto IL_0428;
}
IL_02bc:
{
String_t* L_67 = V_0;
bool L_68;
L_68 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_67, _stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8, NULL);
if (L_68)
{
goto IL_03f7;
}
}
{
goto IL_0428;
}
IL_02d1:
{
String_t* L_69 = V_0;
bool L_70;
L_70 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_69, _stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9, NULL);
if (L_70)
{
goto IL_03f7;
}
}
{
goto IL_0428;
}
IL_02e6:
{
String_t* L_71 = V_0;
bool L_72;
L_72 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_71, _stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437, NULL);
if (L_72)
{
goto IL_040c;
}
}
{
goto IL_0428;
}
IL_02fb:
{
String_t* L_73 = V_0;
bool L_74;
L_74 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_73, _stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D, NULL);
if (L_74)
{
goto IL_0421;
}
}
{
goto IL_0428;
}
IL_0310:
{
RuntimeObject* L_75 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_76;
L_76 = XmlConvert_ToString_mD498DD0E8B82A9E93A66FE61A9A977523C5D01CD(((*(bool*)((bool*)(bool*)UnBox(L_75, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))), NULL);
return L_76;
}
IL_031c:
{
RuntimeObject* L_77 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_78;
L_78 = XmlConvert_ToString_m3963263C4C1BFFC2ADF0401CBF35D12BEE47BECD(((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_77, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))), NULL);
return L_78;
}
IL_0328:
{
RuntimeObject* L_79 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_80;
L_80 = XmlConvert_ToString_m70CBE2DA22D8FCAC8906512E2A6F12C2E39C6D62(((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_79, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))), NULL);
return L_80;
}
IL_0334:
{
RuntimeObject* L_81 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_82;
L_82 = XmlConvert_ToString_m53BEA31146914B2252CA6CAFE2DA2360FA254078(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_81, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), 3, NULL);
return L_82;
}
IL_0341:
{
RuntimeObject* L_83 = ___value1;
V_2 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_83, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))));
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_84;
L_84 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_85;
L_85 = DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00((&V_2), _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E, L_84, NULL);
return L_85;
}
IL_035a:
{
RuntimeObject* L_86 = ___value1;
V_2 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_86, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))));
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_87;
L_87 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_88;
L_88 = DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00((&V_2), _stringLiteral7ED334B1196CAA0013BCFAED11720B289ACE8657, L_87, NULL);
return L_88;
}
IL_0373:
{
RuntimeObject* L_89 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_90;
L_90 = XmlConvert_ToString_mFA07C846C46E12A04FE92E9388CBE27146C47720(((*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)UnBox(L_89, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))), NULL);
return L_90;
}
IL_037f:
{
RuntimeObject* L_91 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_92;
L_92 = XmlConvert_ToString_m9AB2822ABA7C73BBABFA7A3D8318B602CD73C10B(((*(double*)((double*)(double*)UnBox(L_91, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))), NULL);
return L_92;
}
IL_038b:
{
RuntimeObject* L_93 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_94;
L_94 = XmlConvert_ToString_m8B9358ACFF0D39C8843D0CFA5B5209CA04C6AB47(((*(int16_t*)((int16_t*)(int16_t*)UnBox(L_93, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var)))), NULL);
return L_94;
}
IL_0397:
{
RuntimeObject* L_95 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_96;
L_96 = XmlConvert_ToString_m70CBE2DA22D8FCAC8906512E2A6F12C2E39C6D62(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_95, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
return L_96;
}
IL_03a3:
{
RuntimeObject* L_97 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_98;
L_98 = XmlConvert_ToString_m107060D51F6846EEE17E3F25663DE8CBF0D531B7(((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_97, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))), NULL);
return L_98;
}
IL_03af:
{
RuntimeObject* L_99 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_100;
L_100 = XmlConvert_ToString_mC96BECCB53E0E0AEE7343F589064A956B510D788(((*(int8_t*)((int8_t*)(int8_t*)UnBox(L_99, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var)))), NULL);
return L_100;
}
IL_03bb:
{
RuntimeObject* L_101 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_102;
L_102 = XmlConvert_ToString_m5E4CB5F0119A790789813DACE87198037B503361(((*(float*)((float*)(float*)UnBox(L_101, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))), NULL);
return L_102;
}
IL_03c7:
{
RuntimeObject* L_103 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_104;
L_104 = XmlConvert_ToString_m9E81DED159D21EE4F48F23CD7BCA537FA66C1350(((*(uint16_t*)((uint16_t*)(uint16_t*)UnBox(L_103, UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)))), NULL);
return L_104;
}
IL_03d3:
{
RuntimeObject* L_105 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_106;
L_106 = XmlConvert_ToString_m538A8EFC52434D2F0D562A650E080E60ED2D5C3A(((*(uint32_t*)((uint32_t*)(uint32_t*)UnBox(L_105, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var)))), NULL);
return L_106;
}
IL_03df:
{
RuntimeObject* L_107 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_108;
L_108 = XmlConvert_ToString_m8DA228632804611F0B44C93D6E285A422A58E344(((*(uint64_t*)((uint64_t*)(uint64_t*)UnBox(L_107, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var)))), NULL);
return L_108;
}
IL_03eb:
{
RuntimeObject* L_109 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_110;
L_110 = XmlConvert_ToString_m6E2C7912305248A51E6D343F747BCED28407632E(((*(Guid_t*)((Guid_t*)(Guid_t*)UnBox(L_109, Guid_t_il2cpp_TypeInfo_var)))), NULL);
return L_110;
}
IL_03f7:
{
RuntimeObject* L_111 = ___value1;
if (!L_111)
{
goto IL_0406;
}
}
{
RuntimeObject* L_112 = ___value1;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
String_t* L_113;
L_113 = Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3(((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)Castclass((RuntimeObject*)L_112, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var)), NULL);
return L_113;
}
IL_0406:
{
String_t* L_114 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_114;
}
IL_040c:
{
RuntimeObject* L_115 = ___value1;
if (!L_115)
{
goto IL_041b;
}
}
{
RuntimeObject* L_116 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_117;
L_117 = XmlConvert_ToBinHexString_m18CF7765F4C6BB347B491EFF4317FE4E83A871A0(((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)Castclass((RuntimeObject*)L_116, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var)), NULL);
return L_117;
}
IL_041b:
{
String_t* L_118 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_118;
}
IL_0421:
{
RuntimeObject* L_119 = ___value1;
return ((String_t*)CastclassSealed((RuntimeObject*)L_119, String_t_il2cpp_TypeInfo_var));
}
IL_0428:
{
RuntimeObject* L_120 = ___value1;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_120, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var)))
{
goto IL_0437;
}
}
{
RuntimeObject* L_121 = ___value1;
NullCheck(L_121);
String_t* L_122;
L_122 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_121);
return L_122;
}
IL_0437:
{
RuntimeObject* L_123 = ___value1;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_124;
L_124 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_123, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var)));
String_t* L_125;
L_125 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_123, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var)), (String_t*)NULL, L_124);
return L_125;
}
}
// System.Object System.Xml.Serialization.XmlCustomFormatter::FromXmlString(System.Xml.Serialization.TypeData,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlCustomFormatter_FromXmlString_m148D907C11B06D1A94836952828FB5BE421A7EA4 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_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*)&_stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51C6279E31F7483126B79E3000116001A915B690);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437);
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*)&_stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7);
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*)&_stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
uint32_t V_1 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2;
memset((&V_2), 0, sizeof(V_2));
{
String_t* L_0 = ___value1;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = ___type0;
NullCheck(L_1);
String_t* L_2;
L_2 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_1, NULL);
V_0 = L_2;
String_t* L_3 = V_0;
uint32_t L_4;
L_4 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_mEAE825F700D1360D52DBAE623315B108ABADF375(L_3, NULL);
V_1 = L_4;
uint32_t L_5 = V_1;
if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)1683620383)))))
{
goto IL_00b8;
}
}
{
uint32_t L_6 = V_1;
if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)1042916651)))))
{
goto IL_006f;
}
}
{
uint32_t L_7 = V_1;
if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)735213196)))))
{
goto IL_0049;
}
}
{
uint32_t L_8 = V_1;
if ((((int32_t)L_8) == ((int32_t)((int32_t)520654156))))
{
goto IL_01d5;
}
}
{
uint32_t L_9 = V_1;
if ((((int32_t)L_9) == ((int32_t)((int32_t)735213196))))
{
goto IL_016c;
}
}
{
goto IL_0405;
}
IL_0049:
{
uint32_t L_10 = V_1;
if ((((int32_t)L_10) == ((int32_t)((int32_t)748388108))))
{
goto IL_02a7;
}
}
{
uint32_t L_11 = V_1;
if ((((int32_t)L_11) == ((int32_t)((int32_t)799079693))))
{
goto IL_02fb;
}
}
{
uint32_t L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)((int32_t)1042916651))))
{
goto IL_02e6;
}
}
{
goto IL_0405;
}
IL_006f:
{
uint32_t L_13 = V_1;
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)1412591975)))))
{
goto IL_0092;
}
}
{
uint32_t L_14 = V_1;
if ((((int32_t)L_14) == ((int32_t)((int32_t)1293334960))))
{
goto IL_0196;
}
}
{
uint32_t L_15 = V_1;
if ((((int32_t)L_15) == ((int32_t)((int32_t)1412591975))))
{
goto IL_027d;
}
}
{
goto IL_0405;
}
IL_0092:
{
uint32_t L_16 = V_1;
if ((((int32_t)L_16) == ((int32_t)((int32_t)1467875291))))
{
goto IL_02d1;
}
}
{
uint32_t L_17 = V_1;
if ((((int32_t)L_17) == ((int32_t)((int32_t)1564253156))))
{
goto IL_01c0;
}
}
{
uint32_t L_18 = V_1;
if ((((int32_t)L_18) == ((int32_t)((int32_t)1683620383))))
{
goto IL_023e;
}
}
{
goto IL_0405;
}
IL_00b8:
{
uint32_t L_19 = V_1;
if ((!(((uint32_t)L_19) <= ((uint32_t)((int32_t)-1595207928)))))
{
goto IL_0109;
}
}
{
uint32_t L_20 = V_1;
if ((!(((uint32_t)L_20) <= ((uint32_t)((int32_t)-2012103568)))))
{
goto IL_00e3;
}
}
{
uint32_t L_21 = V_1;
if ((((int32_t)L_21) == ((int32_t)((int32_t)1710517951))))
{
goto IL_0157;
}
}
{
uint32_t L_22 = V_1;
if ((((int32_t)L_22) == ((int32_t)((int32_t)-2012103568))))
{
goto IL_0292;
}
}
{
goto IL_0405;
}
IL_00e3:
{
uint32_t L_23 = V_1;
if ((((int32_t)L_23) == ((int32_t)((int32_t)-1779859874))))
{
goto IL_0214;
}
}
{
uint32_t L_24 = V_1;
if ((((int32_t)L_24) == ((int32_t)((int32_t)-1621202992))))
{
goto IL_0268;
}
}
{
uint32_t L_25 = V_1;
if ((((int32_t)L_25) == ((int32_t)((int32_t)-1595207928))))
{
goto IL_01ea;
}
}
{
goto IL_0405;
}
IL_0109:
{
uint32_t L_26 = V_1;
if ((!(((uint32_t)L_26) <= ((uint32_t)((int32_t)-1172149291)))))
{
goto IL_0134;
}
}
{
uint32_t L_27 = V_1;
if ((((int32_t)L_27) == ((int32_t)((int32_t)-1497080443))))
{
goto IL_0253;
}
}
{
uint32_t L_28 = V_1;
if ((((int32_t)L_28) == ((int32_t)((int32_t)-1471413475))))
{
goto IL_0181;
}
}
{
uint32_t L_29 = V_1;
if ((((int32_t)L_29) == ((int32_t)((int32_t)-1172149291))))
{
goto IL_01ff;
}
}
{
goto IL_0405;
}
IL_0134:
{
uint32_t L_30 = V_1;
if ((((int32_t)L_30) == ((int32_t)((int32_t)-1024663725))))
{
goto IL_0229;
}
}
{
uint32_t L_31 = V_1;
if ((((int32_t)L_31) == ((int32_t)((int32_t)-730669991))))
{
goto IL_01ab;
}
}
{
uint32_t L_32 = V_1;
if ((((int32_t)L_32) == ((int32_t)((int32_t)-263295302))))
{
goto IL_02bc;
}
}
{
goto IL_0405;
}
IL_0157:
{
String_t* L_33 = V_0;
bool L_34;
L_34 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_33, _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490, NULL);
if (L_34)
{
goto IL_0310;
}
}
{
goto IL_0405;
}
IL_016c:
{
String_t* L_35 = V_0;
bool L_36;
L_36 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_35, _stringLiteralE234C34099947BE8BB6C958B450C81758FC6EC63, NULL);
if (L_36)
{
goto IL_031c;
}
}
{
goto IL_0405;
}
IL_0181:
{
String_t* L_37 = V_0;
bool L_38;
L_38 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_37, _stringLiteral38FB386B58970DA493E868CAC2AC6550E559B5D7, NULL);
if (L_38)
{
goto IL_0328;
}
}
{
goto IL_0405;
}
IL_0196:
{
String_t* L_39 = V_0;
bool L_40;
L_40 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_39, _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6, NULL);
if (L_40)
{
goto IL_0335;
}
}
{
goto IL_0405;
}
IL_01ab:
{
String_t* L_41 = V_0;
bool L_42;
L_42 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_41, _stringLiteral1D7B559D2443B7B91D8C57B59220774176D04300, NULL);
if (L_42)
{
goto IL_0342;
}
}
{
goto IL_0405;
}
IL_01c0:
{
String_t* L_43 = V_0;
bool L_44;
L_44 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_43, _stringLiteral51C6279E31F7483126B79E3000116001A915B690, NULL);
if (L_44)
{
goto IL_0356;
}
}
{
goto IL_0405;
}
IL_01d5:
{
String_t* L_45 = V_0;
bool L_46;
L_46 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_45, _stringLiteral56ED31BBF7FE6AF09919B65DEE19B95A754AA73D, NULL);
if (L_46)
{
goto IL_0371;
}
}
{
goto IL_0405;
}
IL_01ea:
{
String_t* L_47 = V_0;
bool L_48;
L_48 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_47, _stringLiteral007174B876FA7EECC4152046B9308966D3E2B5B8, NULL);
if (L_48)
{
goto IL_037d;
}
}
{
goto IL_0405;
}
IL_01ff:
{
String_t* L_49 = V_0;
bool L_50;
L_50 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_49, _stringLiteral115036F179EA48E7662F9BE55E0E00A42DDE6DA7, NULL);
if (L_50)
{
goto IL_0389;
}
}
{
goto IL_0405;
}
IL_0214:
{
String_t* L_51 = V_0;
bool L_52;
L_52 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_51, _stringLiteral0BA8CB3B900ECEF5E697192B8CDA6B626EB0CE72, NULL);
if (L_52)
{
goto IL_0395;
}
}
{
goto IL_0405;
}
IL_0229:
{
String_t* L_53 = V_0;
bool L_54;
L_54 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_53, _stringLiteralD890B2BC5E5200965CD02403ABB6C221A614A1B7, NULL);
if (L_54)
{
goto IL_03a1;
}
}
{
goto IL_0405;
}
IL_023e:
{
String_t* L_55 = V_0;
bool L_56;
L_56 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_55, _stringLiteralE1E5CE10BE86E259146E8ADE82FB423C65C3FFD7, NULL);
if (L_56)
{
goto IL_03ad;
}
}
{
goto IL_0405;
}
IL_0253:
{
String_t* L_57 = V_0;
bool L_58;
L_58 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_57, _stringLiteralE3DFC065B6A6D9931B797808DD066491AAB82B29, NULL);
if (L_58)
{
goto IL_03b9;
}
}
{
goto IL_0405;
}
IL_0268:
{
String_t* L_59 = V_0;
bool L_60;
L_60 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_59, _stringLiteral7C73C6FEDB24E2B76DB4F136D05437C41452BCA3, NULL);
if (L_60)
{
goto IL_03c5;
}
}
{
goto IL_0405;
}
IL_027d:
{
String_t* L_61 = V_0;
bool L_62;
L_62 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_61, _stringLiteral84E803D68FC3827ACA2D51AA33D8A230C466CC88, NULL);
if (L_62)
{
goto IL_03d1;
}
}
{
goto IL_0405;
}
IL_0292:
{
String_t* L_63 = V_0;
bool L_64;
L_64 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_63, _stringLiteral28B8B40ABFE525E876BDED46712D0F9BF69D09F7, NULL);
if (L_64)
{
goto IL_03dd;
}
}
{
goto IL_0405;
}
IL_02a7:
{
String_t* L_65 = V_0;
bool L_66;
L_66 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_65, _stringLiteral506DB52F56B75C81EC3FAF713D759D2452D9F932, NULL);
if (L_66)
{
goto IL_03e9;
}
}
{
goto IL_0405;
}
IL_02bc:
{
String_t* L_67 = V_0;
bool L_68;
L_68 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_67, _stringLiteralFB5F5BC179359BB02810BD7BD8F296B34A8C6EE8, NULL);
if (L_68)
{
goto IL_03f5;
}
}
{
goto IL_0405;
}
IL_02d1:
{
String_t* L_69 = V_0;
bool L_70;
L_70 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_69, _stringLiteral6BCD94865A7FBDD85C016B0A6A3B7B81A93F3CB9, NULL);
if (L_70)
{
goto IL_03f5;
}
}
{
goto IL_0405;
}
IL_02e6:
{
String_t* L_71 = V_0;
bool L_72;
L_72 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_71, _stringLiteral6C6E6128B9FCA118B8DAB0A8DCD3D012A7B4D437, NULL);
if (L_72)
{
goto IL_03fc;
}
}
{
goto IL_0405;
}
IL_02fb:
{
String_t* L_73 = V_0;
bool L_74;
L_74 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_73, _stringLiteral7BA557C60FBFACAA46AD1B56F1F3BD5FC6D77A8D, NULL);
if (L_74)
{
goto IL_0403;
}
}
{
goto IL_0405;
}
IL_0310:
{
String_t* L_75 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
bool L_76;
L_76 = XmlConvert_ToBoolean_mC9C05B76ECCD48E206BF6AD704A9742C88A6DBB4(L_75, NULL);
bool L_77 = L_76;
RuntimeObject* L_78 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_77);
return L_78;
}
IL_031c:
{
String_t* L_79 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
uint8_t L_80;
L_80 = XmlConvert_ToByte_m2E34F5DBC8CC707B29AB4A81D74776C98F38237C(L_79, NULL);
uint8_t L_81 = L_80;
RuntimeObject* L_82 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_81);
return L_82;
}
IL_0328:
{
String_t* L_83 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
int32_t L_84;
L_84 = XmlConvert_ToInt32_mDE7EE99061A69CCE5FB3C241348580413B782DAC(L_83, NULL);
Il2CppChar L_85 = ((Il2CppChar)((int32_t)(uint16_t)L_84));
RuntimeObject* L_86 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_85);
return L_86;
}
IL_0335:
{
String_t* L_87 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_88;
L_88 = XmlConvert_ToDateTime_m7107F1C9F62C00C17BD6338F49B5C7FE7CA1FD16(L_87, 3, NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_89 = L_88;
RuntimeObject* L_90 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_89);
return L_90;
}
IL_0342:
{
String_t* L_91 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_92;
L_92 = XmlConvert_ToDateTime_mD576D186EE4174348CEE99F8FC8FB4B438405BBA(L_91, NULL);
V_2 = L_92;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_93;
L_93 = DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D((&V_2), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_94 = L_93;
RuntimeObject* L_95 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_94);
return L_95;
}
IL_0356:
{
String_t* L_96 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = ((XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_StaticFields*)il2cpp_codegen_static_fields_for(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var))->___allTimeFormats_0;
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_98;
L_98 = DateTimeFormatInfo_get_InvariantInfo_m38B65CBFD59AB5EB343F15AEF9A6B7DB3683625B(NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_99;
L_99 = DateTime_ParseExact_m6187A243D56D5B9C9A0165E156B510395702D1F5(L_96, L_97, L_98, ((int32_t)139), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_100 = L_99;
RuntimeObject* L_101 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_100);
return L_101;
}
IL_0371:
{
String_t* L_102 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_103;
L_103 = XmlConvert_ToDecimal_mF207176DE0C5A80122854CAC9C2155F7DD6435CF(L_102, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_104 = L_103;
RuntimeObject* L_105 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_104);
return L_105;
}
IL_037d:
{
String_t* L_106 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
double L_107;
L_107 = XmlConvert_ToDouble_m1103CDF418E58863D866DF2156731EDC5392F96F(L_106, NULL);
double L_108 = L_107;
RuntimeObject* L_109 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_108);
return L_109;
}
IL_0389:
{
String_t* L_110 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
int16_t L_111;
L_111 = XmlConvert_ToInt16_m181D12069AB83A8C4E54FB9E9D95800C5C9C2380(L_110, NULL);
int16_t L_112 = L_111;
RuntimeObject* L_113 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_112);
return L_113;
}
IL_0395:
{
String_t* L_114 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
int32_t L_115;
L_115 = XmlConvert_ToInt32_mDE7EE99061A69CCE5FB3C241348580413B782DAC(L_114, NULL);
int32_t L_116 = L_115;
RuntimeObject* L_117 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_116);
return L_117;
}
IL_03a1:
{
String_t* L_118 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
int64_t L_119;
L_119 = XmlConvert_ToInt64_m2CF984027A0976837779877B75DC706078E21085(L_118, NULL);
int64_t L_120 = L_119;
RuntimeObject* L_121 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_120);
return L_121;
}
IL_03ad:
{
String_t* L_122 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
int8_t L_123;
L_123 = XmlConvert_ToSByte_m016312ECA2028FDF641F77EA959E948206EFA724(L_122, NULL);
int8_t L_124 = L_123;
RuntimeObject* L_125 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_124);
return L_125;
}
IL_03b9:
{
String_t* L_126 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
float L_127;
L_127 = XmlConvert_ToSingle_m8AC367272E8941669A57D02186398DD44E795003(L_126, NULL);
float L_128 = L_127;
RuntimeObject* L_129 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_128);
return L_129;
}
IL_03c5:
{
String_t* L_130 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
uint16_t L_131;
L_131 = XmlConvert_ToUInt16_m38684EA1B03F1990C215D648E9872AEB51C3B25C(L_130, NULL);
uint16_t L_132 = L_131;
RuntimeObject* L_133 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_132);
return L_133;
}
IL_03d1:
{
String_t* L_134 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
uint32_t L_135;
L_135 = XmlConvert_ToUInt32_mA32F8206F0D506F6C6AE32F38E564BF0BD0F6253(L_134, NULL);
uint32_t L_136 = L_135;
RuntimeObject* L_137 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_136);
return L_137;
}
IL_03dd:
{
String_t* L_138 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
uint64_t L_139;
L_139 = XmlConvert_ToUInt64_mC4B96AE0BE289EDC44D372826497E19555AA38A4(L_138, NULL);
uint64_t L_140 = L_139;
RuntimeObject* L_141 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_140);
return L_141;
}
IL_03e9:
{
String_t* L_142 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
Guid_t L_143;
L_143 = XmlConvert_ToGuid_m38706674F6E400E1864A7F52E39CD539305D77F6(L_142, NULL);
Guid_t L_144 = L_143;
RuntimeObject* L_145 = Box(Guid_t_il2cpp_TypeInfo_var, &L_144);
return L_145;
}
IL_03f5:
{
String_t* L_146 = ___value1;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_147;
L_147 = Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1(L_146, NULL);
return (RuntimeObject*)L_147;
}
IL_03fc:
{
String_t* L_148 = ___value1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_149;
L_149 = XmlConvert_FromBinHexString_mCEECD04A59A5B24E7831182C035B8807493F2D22(L_148, NULL);
return (RuntimeObject*)L_149;
}
IL_0403:
{
String_t* L_150 = ___value1;
return L_150;
}
IL_0405:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_151 = ___type0;
NullCheck(L_151);
Type_t* L_152;
L_152 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_151, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_153;
L_153 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_152, (Type_t*)NULL, NULL);
if (!L_153)
{
goto IL_0421;
}
}
{
String_t* L_154 = ___value1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_155 = ___type0;
NullCheck(L_155);
Type_t* L_156;
L_156 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_155, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
RuntimeObject* L_157;
L_157 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_154, L_156, (RuntimeObject*)NULL, NULL);
return L_157;
}
IL_0421:
{
String_t* L_158 = ___value1;
return L_158;
}
}
// System.Void System.Xml.Serialization.XmlCustomFormatter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCustomFormatter__cctor_m2A2BB3FD1600C23EE9E526B68CD2E65F8219AE72 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral06B9DFA12BDAA9D4A99EBF38FF26F14CB054DB63);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A0AA3281AD8097F34172BB119D920D00EF23FF8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32C160F8BF4BD5741D98F55E5487C9CD4ED0A921);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41B29E6818EB3DC63FDFF520DBC2B07B4616C31D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral43D4BC32C912978CB5A42000324BB5E01F316AC5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4437BD97E9EF1504EFFC424F3AF22F53BAE124F4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44A2C30EE3C713B4D21FA53CE82508AA974EF69F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral536AD1D6D09E3FF60B110BCF7C61CAC2A6B0D397);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5AC99274726A9DE2BFDE72AF9A09B4090D70A00D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5AFD3918EA9B0319000EB4A5665DDEB07CCB249B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral60A8E46FB58B32469B01DE3ACE927FE91B27EC52);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6FE1D10402FA73D38B1019624B3D2A5B5C867A30);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A0A2392ACF5A7B95F7BEF7E2031663D5C54B568);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral804227437FFBF6A9357C617E09C9B6C0EEBC5105);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D16E9432C04457309BE5660A7FAA2D0E26E3A7E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD6C3F7BBA285DE996C4023ED62F90C544C0C113);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1F08D0314C64CDEC75E61CB4671CE182F8F39A5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF2C12D438B63BDDB45563C56D85460A0AC2B6DF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE86D98C6DCF741AC261234D4DD6564807FFD6604);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF055DA8792043562266B190C75E998854771F7DE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4A51C3F560CFFF758004A896D0F296062D4D2D8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFADD687304F8552C5DEE5C6D3CBD807002BF3720);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC344454A143AB042DC5757AA44FB10C745C1E4D);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral60A8E46FB58B32469B01DE3ACE927FE91B27EC52);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral60A8E46FB58B32469B01DE3ACE927FE91B27EC52);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteralB1F08D0314C64CDEC75E61CB4671CE182F8F39A5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralB1F08D0314C64CDEC75E61CB4671CE182F8F39A5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteralE86D98C6DCF741AC261234D4DD6564807FFD6604);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralE86D98C6DCF741AC261234D4DD6564807FFD6604);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteral06B9DFA12BDAA9D4A99EBF38FF26F14CB054DB63);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral06B9DFA12BDAA9D4A99EBF38FF26F14CB054DB63);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteral536AD1D6D09E3FF60B110BCF7C61CAC2A6B0D397);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral536AD1D6D09E3FF60B110BCF7C61CAC2A6B0D397);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral43D4BC32C912978CB5A42000324BB5E01F316AC5);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral43D4BC32C912978CB5A42000324BB5E01F316AC5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, _stringLiteral44A2C30EE3C713B4D21FA53CE82508AA974EF69F);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral44A2C30EE3C713B4D21FA53CE82508AA974EF69F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral8D16E9432C04457309BE5660A7FAA2D0E26E3A7E);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral8D16E9432C04457309BE5660A7FAA2D0E26E3A7E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteral4437BD97E9EF1504EFFC424F3AF22F53BAE124F4);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral4437BD97E9EF1504EFFC424F3AF22F53BAE124F4);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteralAD6C3F7BBA285DE996C4023ED62F90C544C0C113);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteralAD6C3F7BBA285DE996C4023ED62F90C544C0C113);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteralFC344454A143AB042DC5757AA44FB10C745C1E4D);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteralFC344454A143AB042DC5757AA44FB10C745C1E4D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteralF4A51C3F560CFFF758004A896D0F296062D4D2D8);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteralF4A51C3F560CFFF758004A896D0F296062D4D2D8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, _stringLiteral1A0AA3281AD8097F34172BB119D920D00EF23FF8);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral1A0AA3281AD8097F34172BB119D920D00EF23FF8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_14;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, _stringLiteral6FE1D10402FA73D38B1019624B3D2A5B5C867A30);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral6FE1D10402FA73D38B1019624B3D2A5B5C867A30);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteral5AC99274726A9DE2BFDE72AF9A09B4090D70A00D);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteral5AC99274726A9DE2BFDE72AF9A09B4090D70A00D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteralDF2C12D438B63BDDB45563C56D85460A0AC2B6DF);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteralDF2C12D438B63BDDB45563C56D85460A0AC2B6DF);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = L_17;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteralFADD687304F8552C5DEE5C6D3CBD807002BF3720);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (String_t*)_stringLiteralFADD687304F8552C5DEE5C6D3CBD807002BF3720);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteral41B29E6818EB3DC63FDFF520DBC2B07B4616C31D);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (String_t*)_stringLiteral41B29E6818EB3DC63FDFF520DBC2B07B4616C31D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = L_19;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, _stringLiteral5AFD3918EA9B0319000EB4A5665DDEB07CCB249B);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (String_t*)_stringLiteral5AFD3918EA9B0319000EB4A5665DDEB07CCB249B);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = L_20;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteralF055DA8792043562266B190C75E998854771F7DE);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (String_t*)_stringLiteralF055DA8792043562266B190C75E998854771F7DE);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22 = L_21;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, _stringLiteral804227437FFBF6A9357C617E09C9B6C0EEBC5105);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (String_t*)_stringLiteral804227437FFBF6A9357C617E09C9B6C0EEBC5105);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral32C160F8BF4BD5741D98F55E5487C9CD4ED0A921);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (String_t*)_stringLiteral32C160F8BF4BD5741D98F55E5487C9CD4ED0A921);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = L_23;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, _stringLiteral7A0A2392ACF5A7B95F7BEF7E2031663D5C54B568);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (String_t*)_stringLiteral7A0A2392ACF5A7B95F7BEF7E2031663D5C54B568);
((XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_StaticFields*)il2cpp_codegen_static_fields_for(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var))->___allTimeFormats_0 = L_24;
Il2CppCodeGenWriteBarrier((void**)(&((XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_StaticFields*)il2cpp_codegen_static_fields_for(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var))->___allTimeFormats_0), (void*)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.Serialization.XmlElementAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttribute__ctor_mDDADAAD04CDE2A8EA714357DF5E42A9B76C9822D (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, String_t* ___elementName0, const RuntimeMethod* method)
{
{
__this->___order_6 = (-1);
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
String_t* L_0 = ___elementName0;
__this->___elementName_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elementName_1), (void*)L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttribute__ctor_m922E7D34E93F4105165AE89660751F73A20742B6 (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, String_t* ___elementName0, Type_t* ___type1, const RuntimeMethod* method)
{
{
__this->___order_6 = (-1);
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
String_t* L_0 = ___elementName0;
__this->___elementName_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elementName_1), (void*)L_0);
Type_t* L_1 = ___type1;
__this->___type_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___type_5), (void*)L_1);
return;
}
}
// System.String System.Xml.Serialization.XmlElementAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_DataType_mC74327AED7D2D68D57E769EDB5125BDE0D0A6ABF (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __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->___dataType_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___dataType_0;
return L_2;
}
}
// System.String System.Xml.Serialization.XmlElementAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_ElementName_mFD5C95EC3061DC2A2D88E0EACC2DDFFA91C76F6F (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __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->___elementName_1;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___elementName_1;
return L_2;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlElementAttribute::get_Form()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElementAttribute_get_Form_mAB6C265C412AD6BA37FF7802EB207C726F3ADADC (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_2;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlElementAttribute::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_Namespace_m79825FA7B795B8D0FF3E71637AEB426DC3AFB1FA (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlElementAttribute::get_IsNullable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElementAttribute_get_IsNullable_mC31D59FDBE93193FDF0409AC0DC191E8B11A387F (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_4;
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlElementAttribute::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElementAttribute_get_Order_mCF42C8462D6BAE16562CD7E16E56DD5BBD56A34F (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___order_6;
return L_0;
}
}
// System.Type System.Xml.Serialization.XmlElementAttribute::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlElementAttribute_get_Type_m3B355841D7F13F4CD84F8C3ED4D28917BB170CCB (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_5;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlElementAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttribute_AddKeyHash_m0107CE4587A6C7922A47FCD9151D320FDEDDB43D (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84A1329FBF8622CAEBD57D1EB5B21C601AD7C870);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral84A1329FBF8622CAEBD57D1EB5B21C601AD7C870, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___ns_3;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
String_t* L_5 = __this->___elementName_1;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
int32_t* L_7 = (&__this->___form_2);
Il2CppFakeBox<int32_t> L_8(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, L_7);
String_t* L_9;
L_9 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_8), NULL);
V_0 = 0;
Il2CppFakeBox<int32_t> L_10(XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B_il2cpp_TypeInfo_var, (&V_0));
String_t* L_11;
L_11 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_10), NULL);
KeyHelper_AddField_m121B48D3252D16160844C6731FF6FB43B18425E1(L_6, 3, L_9, L_11, NULL);
StringBuilder_t* L_12 = ___sb0;
String_t* L_13 = __this->___dataType_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_12, 4, L_13, NULL);
StringBuilder_t* L_14 = ___sb0;
Type_t* L_15 = __this->___type_5;
KeyHelper_AddField_m017BF19230CC3E3D4ABCCE764A6D36E8A46C89EC(L_14, 5, L_15, NULL);
StringBuilder_t* L_16 = ___sb0;
bool L_17 = __this->___isNullable_4;
KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061(L_16, 6, L_17, NULL);
StringBuilder_t* L_18 = ___sb0;
NullCheck(L_18);
StringBuilder_t* L_19;
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_18, ((int32_t)124), 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.Serialization.XmlElementAttribute System.Xml.Serialization.XmlElementAttributes::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* XmlElementAttributes_get_Item_m724D3FD8DE8930D19D825A2B81348C3EAE41630D (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8(__this, NULL);
int32_t L_1 = ___index0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
return ((XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5*)CastclassClass((RuntimeObject*)L_2, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Xml.Serialization.XmlElementAttributes::Add(System.Xml.Serialization.XmlElementAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElementAttributes_Add_mFAF753CA050A16F260EAA885AD4A565B96DB4C40 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* ___attribute0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CollectionBase_get_List_m0862A9A7D875A18C50A0F914C95C22A397DF13D8(__this, NULL);
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_1 = ___attribute0;
NullCheck(L_0);
int32_t L_2;
L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlElementAttributes::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttributes_AddKeyHash_mD9A6FA25DFBA51026A175EBD0E1770261C926437 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A6CE6FF125004EAF524C0442EB1278CD1CA4F7D);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(__this, NULL);
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
StringBuilder_t* L_1 = ___sb0;
NullCheck(L_1);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, _stringLiteral7A6CE6FF125004EAF524C0442EB1278CD1CA4F7D, NULL);
V_0 = 0;
goto IL_002a;
}
IL_0019:
{
int32_t L_3 = V_0;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_4;
L_4 = XmlElementAttributes_get_Item_m724D3FD8DE8930D19D825A2B81348C3EAE41630D(__this, L_3, NULL);
StringBuilder_t* L_5 = ___sb0;
NullCheck(L_4);
XmlElementAttribute_AddKeyHash_m0107CE4587A6C7922A47FCD9151D320FDEDDB43D(L_4, L_5, NULL);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
}
IL_002a:
{
int32_t L_7 = V_0;
int32_t L_8;
L_8 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(__this, NULL);
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0019;
}
}
{
StringBuilder_t* L_9 = ___sb0;
NullCheck(L_9);
StringBuilder_t* L_10;
L_10 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)124), NULL);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlElementAttributes::get_Order()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElementAttributes_get_Order_mAE0BF907973526BBAF7AAF9CACD9CDD665624215 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
{
RuntimeObject* L_0;
L_0 = CollectionBase_GetEnumerator_m8121D67DEBB0009A93BFEBB1DA46BA8A671FD862(__this, NULL);
V_0 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0031:
{// begin finally (depth: 1)
{
RuntimeObject* L_1 = V_0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_3;
if (!L_2)
{
goto IL_0041;
}
}
{
RuntimeObject* L_3 = V_3;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0041:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0027_1;
}
IL_0009_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_4);
V_1 = ((XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5*)CastclassClass((RuntimeObject*)L_5, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var));
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_6 = V_1;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlElementAttribute_get_Order_mCF42C8462D6BAE16562CD7E16E56DD5BBD56A34F_inline(L_6, NULL);
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0027_1;
}
}
{
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = XmlElementAttribute_get_Order_mCF42C8462D6BAE16562CD7E16E56DD5BBD56A34F_inline(L_8, NULL);
V_2 = L_9;
goto IL_0044;
}
IL_0027_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0009_1;
}
}
{
goto IL_0042;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0042:
{
return (-1);
}
IL_0044:
{
int32_t L_12 = V_2;
return L_12;
}
}
// System.Void System.Xml.Serialization.XmlElementAttributes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttributes__ctor_mF9ECB9E0E902251B37757FC133AB4607BCAF8962 (XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* __this, const RuntimeMethod* method)
{
{
CollectionBase__ctor_m9AB03A7692AA8F78FA5519ACA74FF3FA2F9520BC(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlEnumAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEnumAttribute__ctor_m8A6E7F96ED9724DAE5E7AEB9D422CA32E141AADB (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
String_t* L_0 = ___name0;
__this->___name_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_0), (void*)L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlEnumAttribute::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEnumAttribute_get_Name_m13FF8A329D3569F4C785968B3928A1554EC9CCF3 (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_0;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlEnumAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEnumAttribute_AddKeyHash_mBD6CCFBA2AF5A0E9FA46F35AF30E1DFF8CE2217C (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral596FAE423911F69DCD2CF3EBBA9D04DB79824F57);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral596FAE423911F69DCD2CF3EBBA9D04DB79824F57, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___name_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
NullCheck(L_4);
StringBuilder_t* L_5;
L_5 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_4, ((int32_t)124), 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.XmlIgnoreAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlIgnoreAttribute__ctor_m864B47EB1DF49D8D8324BD2A6D67381A9DC8DA80 (XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F* __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type System.Xml.Serialization.XmlIncludeAttribute::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlIncludeAttribute_get_Type_m933A769AE46F8B8FE3612605D6B0E890AE3A1EDD (XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_0;
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.Serialization.XmlMapping::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping__ctor_mC78EC821A5F29E9EFEE0DE8BDB285ED6A5EFE164 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, String_t* ___elementName0, String_t* ___ns1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___elementName0;
__this->____elementName_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____elementName_4), (void*)L_0);
String_t* L_1 = ___ns1;
__this->____namespace_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_5), (void*)L_1);
return;
}
}
// System.String System.Xml.Serialization.XmlMapping::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____elementName_4;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlMapping::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____namespace_5;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::SetKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping_SetKey_m29AA9DBD54FBFC2C50A282C1D8C33547CD6D7686 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, String_t* ___key0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___key0;
__this->___key_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___key_6), (void*)L_0);
return;
}
}
// System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::get_ObjectMap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_0 = __this->___map_0;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_ObjectMap(System.Xml.Serialization.ObjectMap)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping_set_ObjectMap_m34272FA1B72AD9AE95E70C84665290EA6C0C0FCD (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* ___value0, const RuntimeMethod* method)
{
{
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_0 = ___value0;
__this->___map_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___map_0), (void*)L_0);
return;
}
}
// System.Collections.ArrayList System.Xml.Serialization.XmlMapping::get_RelatedMaps()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___relatedMaps_1;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_RelatedMaps(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping_set_RelatedMaps_m6A89B4318BA4BA04099D938C36CA3A83AAC3BC44 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___value0, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ___value0;
__this->___relatedMaps_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___relatedMaps_1), (void*)L_0);
return;
}
}
// System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___format_2;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_Format(System.Xml.Serialization.SerializationFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping_set_Format_m84E84DA7E6927678C90D903E2A8599E6BF6748B9 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___format_2 = L_0;
return;
}
}
// System.Xml.Serialization.SerializationSource System.Xml.Serialization.XmlMapping::get_Source()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* XmlMapping_get_Source_mE7270AE0C3619E1C39600FDE01BC069D94BB6652 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* L_0 = __this->___source_3;
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.Serialization.ObjectMap::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMap__ctor_mE344582A0192332702FFC03592ECA4CB356D2E41 (ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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.Serialization.XmlMembersMapping::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlMembersMapping_get_Count_mDAFF3965B76D19DE0EFAE018FEE1B429419855A7 (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method)
{
{
XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF* L_0 = __this->____mapping_8;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
// System.Boolean System.Xml.Serialization.XmlMembersMapping::get_HasWrapperElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5 (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____hasWrapperElement_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.Void System.Xml.Serialization.XmlNamespaceDeclarationsAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceDeclarationsAttribute__ctor_m6180E74BABC68197EB16611BF9457858EB530AEB (XmlNamespaceDeclarationsAttribute_tF44BF59DA1B26CFB59F57F54C8B61AA370CDAF5C* __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlReflectionImporter::.ctor(System.Xml.Serialization.XmlAttributeOverrides,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter__ctor_mF3C2C417DAF876C4EFE9C4F415FAF171D6B7A142 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___attributeOverrides0, String_t* ___defaultNamespace1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_0 = (ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB*)il2cpp_codegen_object_new(ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
NullCheck(L_0);
ReflectionHelper__ctor_m8FD2C662187A6CCCA9BB61F4D6A9827EFC18C3FF(L_0, NULL);
__this->___helper_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___helper_3), (void*)L_0);
__this->___arrayChoiceCount_4 = 1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_1);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_1, NULL);
__this->___relatedMaps_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___relatedMaps_5), (void*)L_1);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_2 = ___defaultNamespace1;
if (L_2)
{
goto IL_0033;
}
}
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___initialDefaultNamespace_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___initialDefaultNamespace_0), (void*)L_3);
goto IL_003a;
}
IL_0033:
{
String_t* L_4 = ___defaultNamespace1;
__this->___initialDefaultNamespace_0 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___initialDefaultNamespace_0), (void*)L_4);
}
IL_003a:
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_5 = ___attributeOverrides0;
if (L_5)
{
goto IL_0049;
}
}
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_6 = (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60*)il2cpp_codegen_object_new(XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlAttributeOverrides__ctor_m37774F812F38A06B484C026945A873EEC5C5A78C(L_6, NULL);
__this->___attributeOverrides_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributeOverrides_1), (void*)L_6);
return;
}
IL_0049:
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_7 = ___attributeOverrides0;
__this->___attributeOverrides_1 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributeOverrides_1), (void*)L_7);
return;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___type0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1;
L_1 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_0, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, (String_t*)NULL, NULL);
return L_1;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m9682FD802D4138CDD616855551EB57D7FA3FF84C (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, String_t* ___defaultNamespace1, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___type0;
String_t* L_1 = ___defaultNamespace1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_2;
L_2 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_0, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_1, NULL);
return L_2;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, (Type_t*)NULL, NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D_RuntimeMethod_var)));
}
IL_0014:
{
Type_t* L_3 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL);
bool L_6;
L_6 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_3, L_5, NULL);
if (!L_6)
{
goto IL_0041;
}
}
{
Type_t* L_7 = ___type0;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_7);
String_t* L_9;
L_9 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral118E38B2D412E6F22C505D9D88DD635BB1155008)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF12B28CE864CCAE0D46FEC6689C6AE0CD61061EF)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_10 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_10);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D_RuntimeMethod_var)));
}
IL_0041:
{
Type_t* L_11 = ___type0;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_12;
L_12 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_11, NULL);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_13 = ___root1;
String_t* L_14 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15;
L_15 = XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A(__this, L_12, L_13, L_14, NULL);
return L_15;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, 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*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_0 = NULL;
int32_t V_1 = 0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF9E48D89B0F95FD7743676A1FD7D2BAF3E506F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A_RuntimeMethod_var)));
}
IL_000e:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___typeData0;
NullCheck(L_2);
Type_t* L_3;
L_3 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_3, (Type_t*)NULL, NULL);
if (!L_4)
{
goto IL_0027;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral873BA9CAE8EF9B2148F5C38D4124955263A836E1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A_RuntimeMethod_var)));
}
IL_0027:
{
String_t* L_6 = ___defaultNamespace2;
if (L_6)
{
goto IL_0032;
}
}
{
String_t* L_7 = __this->___initialDefaultNamespace_0;
___defaultNamespace2 = L_7;
}
IL_0032:
{
String_t* L_8 = ___defaultNamespace2;
if (L_8)
{
goto IL_003c;
}
}
{
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___defaultNamespace2 = L_9;
}
IL_003c:
{
}
try
{// begin try (depth: 1)
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = ___typeData0;
NullCheck(L_10);
int32_t L_11;
L_11 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_10, NULL);
V_1 = L_11;
int32_t L_12 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, 1)))
{
case 0:
{
goto IL_008d_1;
}
case 1:
{
goto IL_0099_1;
}
case 2:
{
goto IL_0073_1;
}
case 3:
{
goto IL_0066_1;
}
case 4:
{
goto IL_00a5_1;
}
case 5:
{
goto IL_0081_1;
}
}
}
{
goto IL_00b1_1;
}
IL_0066_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_13 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_14 = ___root1;
String_t* L_15 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16;
L_16 = XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC(__this, L_13, L_14, L_15, (bool)0, NULL);
V_0 = L_16;
goto IL_00d1_1;
}
IL_0073_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_18 = ___root1;
String_t* L_19 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20;
L_20 = XmlReflectionImporter_ImportListMapping_mB880ED974E84B7B9A2B588B3BF2CCC52EDF67739(__this, L_17, L_18, L_19, (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)NULL, 0, NULL);
V_0 = L_20;
goto IL_00d1_1;
}
IL_0081_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_21 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_22 = ___root1;
String_t* L_23 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24;
L_24 = XmlReflectionImporter_ImportXmlNodeMapping_mC19FEDCE22F79CFBC05DA7540F9FD77F7BDBDCBF(__this, L_21, L_22, L_23, NULL);
V_0 = L_24;
goto IL_00d1_1;
}
IL_008d_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_25 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_26 = ___root1;
String_t* L_27 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_28;
L_28 = XmlReflectionImporter_ImportPrimitiveMapping_m835E44D65873D999F2B6C847769442DB164AC6A5(__this, L_25, L_26, L_27, NULL);
V_0 = L_28;
goto IL_00d1_1;
}
IL_0099_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_29 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_30 = ___root1;
String_t* L_31 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_32;
L_32 = XmlReflectionImporter_ImportEnumMapping_m0B068134E99537E6B81FE5459AE245F08429EDEA(__this, L_29, L_30, L_31, NULL);
V_0 = L_32;
goto IL_00d1_1;
}
IL_00a5_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_33 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_34 = ___root1;
String_t* L_35 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_36;
L_36 = XmlReflectionImporter_ImportXmlSerializableMapping_mBD9C080184E58C2498B8E40D43583816EAAF7974(__this, L_33, L_34, L_35, NULL);
V_0 = L_36;
goto IL_00d1_1;
}
IL_00b1_1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_37 = ___typeData0;
NullCheck(L_37);
Type_t* L_38;
L_38 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_37, NULL);
NullCheck(L_38);
String_t* L_39;
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_38);
String_t* L_40;
L_40 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49AE794C00022ECA141068DEA9531BF6E0D342B7)), L_39, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAA4FDC6A5B67345B552422EDD8D4B812536A0575)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_41 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_41);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_41, L_40, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A_RuntimeMethod_var)));
}
IL_00d1_1:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_42 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_43 = ___typeData0;
NullCheck(L_43);
Type_t* L_44;
L_44 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_43, NULL);
NullCheck(L_44);
String_t* L_45;
L_45 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_44);
NullCheck(L_42);
XmlMapping_SetKey_m29AA9DBD54FBFC2C50A282C1D8C33547CD6D7686_inline(L_42, L_45, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_46 = V_0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_47 = __this->___relatedMaps_5;
NullCheck(L_46);
XmlMapping_set_RelatedMaps_m6A89B4318BA4BA04099D938C36CA3A83AAC3BC44_inline(L_46, L_47, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_48 = V_0;
NullCheck(L_48);
XmlMapping_set_Format_m84E84DA7E6927678C90D903E2A8599E6BF6748B9_inline(L_48, 1, NULL);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_49 = __this->___includedTypes_2;
if (!L_49)
{
goto IL_0118_1;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_50 = __this->___includedTypes_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_52;
L_52 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_51, NULL);
NullCheck(L_50);
RuntimeArray* L_53;
L_53 = VirtualFuncInvoker1< RuntimeArray*, Type_t* >::Invoke(47 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_50, L_52);
}
IL_0118_1:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_54 = V_0;
V_2 = L_54;
goto IL_013e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_011c;
}
throw e;
}
CATCH_011c:
{// begin catch(System.InvalidOperationException)
V_3 = ((InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_55;
L_55 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_56 = ___typeData0;
NullCheck(L_56);
Type_t* L_57;
L_57 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_56, NULL);
NullCheck(L_57);
String_t* L_58;
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_57);
String_t* L_59;
L_59 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_55, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9A181C52772E2BE53A280EA09B2A3C3BAC1681E5)), L_58, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_60 = V_3;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_61 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_61);
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(L_61, L_59, L_60, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTypeMapping_m081D9DAE809FA220D314842C6881DF186D7B1E1A_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_013e:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_62 = V_2;
return L_62;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::CreateTypeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultXmlType2, String_t* ___defaultNamespace3, 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*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
bool V_4 = false;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* V_5 = NULL;
bool V_6 = false;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_7 = NULL;
int32_t V_8 = 0;
String_t* G_B29_0 = NULL;
String_t* G_B27_0 = NULL;
String_t* G_B28_0 = NULL;
String_t* G_B31_0 = NULL;
String_t* G_B30_0 = NULL;
String_t* G_B39_0 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* G_B39_1 = NULL;
String_t* G_B39_2 = NULL;
String_t* G_B39_3 = NULL;
String_t* G_B38_0 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* G_B38_1 = NULL;
String_t* G_B38_2 = NULL;
String_t* G_B38_3 = NULL;
String_t* G_B40_0 = NULL;
String_t* G_B40_1 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* G_B40_2 = NULL;
String_t* G_B40_3 = NULL;
String_t* G_B40_4 = NULL;
{
String_t* L_0 = ___defaultNamespace3;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
V_1 = (String_t*)NULL;
V_2 = (String_t*)NULL;
V_4 = (bool)1;
V_5 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___typeData0;
bool L_3;
L_3 = XmlReflectionImporter_CanBeNull_m52BC441CF224DCDF490BEE6ED280AB778BFFC3A6(__this, L_2, NULL);
V_6 = L_3;
String_t* L_4 = ___defaultXmlType2;
if (L_4)
{
goto IL_0029;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___typeData0;
NullCheck(L_5);
String_t* L_6;
L_6 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_5, NULL);
___defaultXmlType2 = L_6;
}
IL_0029:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7 = ___typeData0;
NullCheck(L_7);
bool L_8;
L_8 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_7, NULL);
if (L_8)
{
goto IL_006f;
}
}
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_9 = __this->___attributeOverrides_1;
if (!L_9)
{
goto IL_004c;
}
}
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_10 = __this->___attributeOverrides_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11 = ___typeData0;
NullCheck(L_11);
Type_t* L_12;
L_12 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_11, NULL);
NullCheck(L_10);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_13;
L_13 = XmlAttributeOverrides_get_Item_m2FAD5994E54196E78D169E8CCAB3D71E817A1025(L_10, L_12, NULL);
V_5 = L_13;
}
IL_004c:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_14 = V_5;
if (!L_14)
{
goto IL_006f;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_15 = ___typeData0;
NullCheck(L_15);
int32_t L_16;
L_16 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_15, NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)1))))
{
goto IL_006f;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17 = ___typeData0;
NullCheck(L_17);
String_t* L_18;
L_18 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_17, NULL);
String_t* L_19;
L_19 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral432809284A61C8EDD9D90D5ABBBAFC0B4DBC7FB7)), L_18, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_20 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_20);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_20, L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E_RuntimeMethod_var)));
}
IL_006f:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_21 = V_5;
if (L_21)
{
goto IL_0080;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22 = ___typeData0;
NullCheck(L_22);
Type_t* L_23;
L_23 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_22, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_24 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)il2cpp_codegen_object_new(XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
NullCheck(L_24);
XmlAttributes__ctor_mFEEAECF61BFB18BAA8D5767AF38A2D51D7CBC15F(L_24, L_23, NULL);
V_5 = L_24;
}
IL_0080:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_25 = V_5;
NullCheck(L_25);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_26;
L_26 = XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC_inline(L_25, NULL);
if (!L_26)
{
goto IL_0095;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_27 = ___root1;
if (L_27)
{
goto IL_0095;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_28 = V_5;
NullCheck(L_28);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_29;
L_29 = XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC_inline(L_28, NULL);
___root1 = L_29;
}
IL_0095:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_30 = V_5;
NullCheck(L_30);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_31;
L_31 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_30, NULL);
if (!L_31)
{
goto IL_0102;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_32 = V_5;
NullCheck(L_32);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_33;
L_33 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_32, NULL);
NullCheck(L_33);
String_t* L_34;
L_34 = XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline(L_33, NULL);
if (!L_34)
{
goto IL_00bb;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_35 = V_5;
NullCheck(L_35);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_36;
L_36 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_35, NULL);
NullCheck(L_36);
String_t* L_37;
L_37 = XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline(L_36, NULL);
V_2 = L_37;
V_0 = (bool)1;
}
IL_00bb:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_38 = V_5;
NullCheck(L_38);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_39;
L_39 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_38, NULL);
NullCheck(L_39);
String_t* L_40;
L_40 = XmlTypeAttribute_get_TypeName_mB06CCEC7168EF5AF9B5286049A3E0571CAFDAD42(L_39, NULL);
if (!L_40)
{
goto IL_00f4;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_41 = V_5;
NullCheck(L_41);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_42;
L_42 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_41, NULL);
NullCheck(L_42);
String_t* L_43;
L_43 = XmlTypeAttribute_get_TypeName_mB06CCEC7168EF5AF9B5286049A3E0571CAFDAD42(L_42, NULL);
String_t* L_44 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_45;
L_45 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_43, L_44, NULL);
if (!L_45)
{
goto IL_00f4;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_46 = V_5;
NullCheck(L_46);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_47;
L_47 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_46, NULL);
NullCheck(L_47);
String_t* L_48;
L_48 = XmlTypeAttribute_get_TypeName_mB06CCEC7168EF5AF9B5286049A3E0571CAFDAD42(L_47, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_49;
L_49 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_48, NULL);
___defaultXmlType2 = L_49;
}
IL_00f4:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_50 = V_5;
NullCheck(L_50);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_51;
L_51 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_50, NULL);
NullCheck(L_51);
bool L_52;
L_52 = XmlTypeAttribute_get_IncludeInSchema_mDC85FE2BB6FE9BE2A457394CEEF91341CAA84DA3_inline(L_51, NULL);
V_4 = L_52;
}
IL_0102:
{
String_t* L_53 = ___defaultXmlType2;
V_3 = L_53;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_54 = ___root1;
if (!L_54)
{
goto IL_0139;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_55 = ___root1;
NullCheck(L_55);
String_t* L_56;
L_56 = XmlRootAttribute_get_ElementName_m8E9F810E8C3AEA05914EF8AEA47DCC31EDD7B2AE(L_55, NULL);
NullCheck(L_56);
int32_t L_57;
L_57 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_56, NULL);
if (!L_57)
{
goto IL_0120;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_58 = ___root1;
NullCheck(L_58);
String_t* L_59;
L_59 = XmlRootAttribute_get_ElementName_m8E9F810E8C3AEA05914EF8AEA47DCC31EDD7B2AE(L_58, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_60;
L_60 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_59, NULL);
V_3 = L_60;
}
IL_0120:
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_61 = ___root1;
NullCheck(L_61);
String_t* L_62;
L_62 = XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline(L_61, NULL);
if (!L_62)
{
goto IL_0131;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_63 = ___root1;
NullCheck(L_63);
String_t* L_64;
L_64 = XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline(L_63, NULL);
V_1 = L_64;
V_0 = (bool)1;
}
IL_0131:
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_65 = ___root1;
NullCheck(L_65);
bool L_66;
L_66 = XmlRootAttribute_get_IsNullable_m2838215306230F5E93695672074B66ACC39E0092_inline(L_65, NULL);
V_6 = L_66;
}
IL_0139:
{
String_t* L_67 = V_1;
String_t* L_68 = L_67;
G_B27_0 = L_68;
if (L_68)
{
G_B29_0 = L_68;
goto IL_0149;
}
}
{
String_t* L_69 = ___defaultNamespace3;
String_t* L_70 = L_69;
G_B28_0 = L_70;
if (L_70)
{
G_B29_0 = L_70;
goto IL_0149;
}
}
{
String_t* L_71 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B29_0 = L_71;
}
IL_0149:
{
V_1 = G_B29_0;
String_t* L_72 = V_2;
String_t* L_73 = L_72;
G_B30_0 = L_73;
if (L_73)
{
G_B31_0 = L_73;
goto IL_0150;
}
}
{
String_t* L_74 = V_1;
G_B31_0 = L_74;
}
IL_0150:
{
V_2 = G_B31_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_75 = ___typeData0;
NullCheck(L_75);
int32_t L_76;
L_76 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_75, NULL);
V_8 = L_76;
int32_t L_77 = V_8;
if ((((int32_t)L_77) == ((int32_t)1)))
{
goto IL_0172;
}
}
{
int32_t L_78 = V_8;
if ((!(((uint32_t)L_78) == ((uint32_t)5))))
{
goto IL_019a;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_79 = ___root1;
String_t* L_80 = V_3;
String_t* L_81 = V_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_82 = ___typeData0;
String_t* L_83 = ___defaultXmlType2;
String_t* L_84 = V_2;
XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* L_85 = (XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7*)il2cpp_codegen_object_new(XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7_il2cpp_TypeInfo_var);
NullCheck(L_85);
XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2(L_85, L_79, L_80, L_81, L_82, L_83, L_84, NULL);
V_7 = L_85;
goto IL_01ac;
}
IL_0172:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_86 = ___typeData0;
NullCheck(L_86);
bool L_87;
L_87 = TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A(L_86, NULL);
if (L_87)
{
goto IL_018c;
}
}
{
String_t* L_88 = V_3;
String_t* L_89 = V_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_90 = ___typeData0;
String_t* L_91 = ___defaultXmlType2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_92 = (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)il2cpp_codegen_object_new(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
NullCheck(L_92);
XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558(L_92, L_88, L_89, L_90, L_91, _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407, NULL);
V_7 = L_92;
goto IL_01ac;
}
IL_018c:
{
String_t* L_93 = V_3;
String_t* L_94 = V_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_95 = ___typeData0;
String_t* L_96 = ___defaultXmlType2;
String_t* L_97 = V_2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_98 = (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)il2cpp_codegen_object_new(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
NullCheck(L_98);
XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558(L_98, L_93, L_94, L_95, L_96, L_97, NULL);
V_7 = L_98;
goto IL_01ac;
}
IL_019a:
{
String_t* L_99 = V_3;
String_t* L_100 = V_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_101 = ___typeData0;
String_t* L_102 = ___defaultXmlType2;
bool L_103 = V_0;
G_B38_0 = L_102;
G_B38_1 = L_101;
G_B38_2 = L_100;
G_B38_3 = L_99;
if (L_103)
{
G_B39_0 = L_102;
G_B39_1 = L_101;
G_B39_2 = L_100;
G_B39_3 = L_99;
goto IL_01a4;
}
}
{
G_B40_0 = ((String_t*)(NULL));
G_B40_1 = G_B38_0;
G_B40_2 = G_B38_1;
G_B40_3 = G_B38_2;
G_B40_4 = G_B38_3;
goto IL_01a5;
}
IL_01a4:
{
String_t* L_104 = V_2;
G_B40_0 = L_104;
G_B40_1 = G_B39_0;
G_B40_2 = G_B39_1;
G_B40_3 = G_B39_2;
G_B40_4 = G_B39_3;
}
IL_01a5:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_105 = (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)il2cpp_codegen_object_new(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
NullCheck(L_105);
XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558(L_105, G_B40_4, G_B40_3, G_B40_2, G_B40_1, G_B40_0, NULL);
V_7 = L_105;
}
IL_01ac:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_106 = V_7;
bool L_107 = V_4;
NullCheck(L_106);
XmlTypeMapping_set_IncludeInSchema_m4ADFB54087375F1E855F955A23FD6A75499C95CB_inline(L_106, L_107, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_108 = V_7;
bool L_109 = V_6;
NullCheck(L_108);
XmlTypeMapping_set_IsNullable_mD892626D9838297535D63A2CE20F0F0E93B0E06F_inline(L_108, L_109, NULL);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_110 = __this->___relatedMaps_5;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_111 = V_7;
NullCheck(L_110);
int32_t L_112;
L_112 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_110, L_111);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_113 = V_7;
return L_113;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportClassMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportClassMapping_m435E0FBB161DB459B4E0C4FFB73916C45D5EED0D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, bool ___isBaseType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_0 = NULL;
{
Type_t* L_0 = ___type0;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_0, NULL);
V_0 = L_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = V_0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_3 = ___root1;
String_t* L_4 = ___defaultNamespace2;
bool L_5 = ___isBaseType3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6;
L_6 = XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC(__this, L_2, L_3, L_4, L_5, NULL);
return L_6;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportClassMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, bool ___isBaseType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_mEAA5A22918AD0DC18FCF48568E89C0F5794B105A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_0_0_0_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*)&U3CU3Ec_U3CImportClassMappingU3Eb__28_0_m7BA8969084E3BC672F0D242519C60B3BC8204B2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* V_2 = NULL;
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* V_3 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_4;
memset((&V_4), 0, sizeof(V_4));
Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A V_5;
memset((&V_5), 0, sizeof(V_5));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_6;
memset((&V_6), 0, sizeof(V_6));
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_7;
memset((&V_7), 0, sizeof(V_7));
bool V_8 = false;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* V_9 = NULL;
String_t* V_10 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_11 = NULL;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_12 = NULL;
Exception_t* V_13 = NULL;
RuntimeObject* V_14 = NULL;
Type_t* V_15 = NULL;
RuntimeObject* V_16 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_17 = NULL;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* V_18 = NULL;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_19 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* G_B19_0 = NULL;
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* G_B19_1 = NULL;
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* G_B18_0 = NULL;
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* G_B18_1 = NULL;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
bool L_2 = __this->___allowPrivateTypes_6;
if (L_2)
{
goto IL_001a;
}
}
{
bool L_3 = ___isBaseType3;
if (L_3)
{
goto IL_001a;
}
}
{
Type_t* L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m8DB0250A0957686514A12FAF12AD4AC695F4BE25(L_4, (bool)0, NULL);
}
IL_001a:
{
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_5 = __this->___helper_3;
Type_t* L_6 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_8 = ___root1;
String_t* L_9 = ___defaultNamespace2;
String_t* L_10;
L_10 = XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C(__this, L_7, L_8, L_9, NULL);
NullCheck(L_5);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11;
L_11 = ReflectionHelper_GetRegisteredClrType_m05E15F35772167A902933F5688840FADE08C74AF(L_5, L_6, L_10, NULL);
V_1 = L_11;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_12 = V_1;
if (!L_12)
{
goto IL_0035;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = V_1;
return L_13;
}
IL_0035:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_15 = ___root1;
String_t* L_16 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17;
L_17 = XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E(__this, L_14, L_15, (String_t*)NULL, L_16, NULL);
V_1 = L_17;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_18 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_19 = V_1;
Type_t* L_20 = V_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_21 = V_1;
NullCheck(L_21);
String_t* L_22;
L_22 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_21, NULL);
NullCheck(L_18);
ReflectionHelper_RegisterClrType_mD0C72D14AAB753E89AF6E0B99BC9F53FD8ED1188(L_18, L_19, L_20, L_22, NULL);
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_23 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24 = V_1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_25 = V_1;
NullCheck(L_25);
String_t* L_26;
L_26 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_25, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_27 = V_1;
NullCheck(L_27);
String_t* L_28;
L_28 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_27, NULL);
NullCheck(L_23);
ReflectionHelper_RegisterSchemaType_m579F388E056C327FC96BFCDF5E0CB4F8122FFF1D(L_23, L_24, L_26, L_28, NULL);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_29 = (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)il2cpp_codegen_object_new(ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var);
NullCheck(L_29);
ClassMap__ctor_m2E0CDD6C951F89A117B800D1EFA07A15B61D32F6(L_29, NULL);
V_2 = L_29;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_30 = V_1;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_31 = V_2;
NullCheck(L_30);
XmlMapping_set_ObjectMap_m34272FA1B72AD9AE95E70C84665290EA6C0C0FCD_inline(L_30, L_31, NULL);
Type_t* L_32 = V_0;
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_33;
L_33 = XmlReflectionImporter_GetReflectionMembers_mD6792F16E5A5CB03415A976ED3EAD616E5DA9256(__this, L_32, NULL);
V_3 = L_33;
il2cpp_codegen_initobj((&V_4), sizeof(Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01));
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_34 = V_3;
NullCheck(L_34);
Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A L_35;
L_35 = List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC(L_34, List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC_RuntimeMethod_var);
V_5 = L_35;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0114:
{// begin finally (depth: 1)
Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C((&V_5), Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0109_1;
}
IL_0092_1:
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_36;
L_36 = Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_inline((&V_5), Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_RuntimeMethod_var);
NullCheck(L_36);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_37;
L_37 = XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952(L_36, NULL);
NullCheck(L_37);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_38;
L_38 = XmlAttributes_get_Order_mFDA027D8E65B6FA40F5D935825673C832309FF28(L_37, NULL);
V_6 = L_38;
bool L_39;
L_39 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&V_4), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
if (L_39)
{
goto IL_00cd_1;
}
}
{
bool L_40;
L_40 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_6), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_40)
{
goto IL_0109_1;
}
}
{
int32_t L_41;
L_41 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&V_6), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_42;
memset((&L_42), 0, sizeof(L_42));
Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_42), (bool)((((int32_t)((((int32_t)L_41) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0), /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
V_4 = L_42;
goto IL_0109_1;
}
IL_00cd_1:
{
bool L_43;
L_43 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_6), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_43)
{
goto IL_0109_1;
}
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_44 = V_4;
V_7 = L_44;
int32_t L_45;
L_45 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&V_6), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_8 = (bool)((((int32_t)((((int32_t)L_45) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_46;
L_46 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_7), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
bool L_47 = V_8;
bool L_48;
L_48 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&V_7), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
if (((int32_t)(((((int32_t)L_46) == ((int32_t)L_47))? 1 : 0)&(int32_t)L_48)))
{
goto IL_0109_1;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_49 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_49);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_49, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42073B4C2D04446C6E19D4601BE7F290195813C4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_49, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC_RuntimeMethod_var)));
}
IL_0109_1:
{
bool L_50;
L_50 = Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610((&V_5), Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610_RuntimeMethod_var);
if (L_50)
{
goto IL_0092_1;
}
}
{
goto IL_0122;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0122:
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_51 = V_4;
V_7 = L_51;
V_8 = (bool)1;
bool L_52;
L_52 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_7), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
bool L_53 = V_8;
bool L_54;
L_54 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&V_7), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
if (!((int32_t)(((((int32_t)L_52) == ((int32_t)L_53))? 1 : 0)&(int32_t)L_54)))
{
goto IL_0163;
}
}
{
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_55 = V_3;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var);
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* L_56 = ((U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var))->___U3CU3E9__28_0_1;
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* L_57 = L_56;
G_B18_0 = L_57;
G_B18_1 = L_55;
if (L_57)
{
G_B19_0 = L_57;
G_B19_1 = L_55;
goto IL_015e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var);
U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81* L_58 = ((U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* L_59 = (Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED*)il2cpp_codegen_object_new(Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED_il2cpp_TypeInfo_var);
NullCheck(L_59);
Comparison_1__ctor_mF7A2F27418691688E0C1F25DFC4B3A68DA36E5A6(L_59, L_58, (intptr_t)((void*)U3CU3Ec_U3CImportClassMappingU3Eb__28_0_m7BA8969084E3BC672F0D242519C60B3BC8204B2D_RuntimeMethod_var), NULL);
Comparison_1_tD5FD2097BD5BC359CEADD4E997824D7A80DAC3ED* L_60 = L_59;
((U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var))->___U3CU3E9__28_0_1 = L_60;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var))->___U3CU3E9__28_0_1), (void*)L_60);
G_B19_0 = L_60;
G_B19_1 = G_B18_1;
}
IL_015e:
{
NullCheck(G_B19_1);
List_1_Sort_mEAA5A22918AD0DC18FCF48568E89C0F5794B105A(G_B19_1, G_B19_0, List_1_Sort_mEAA5A22918AD0DC18FCF48568E89C0F5794B105A_RuntimeMethod_var);
}
IL_0163:
{
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_61 = V_3;
NullCheck(L_61);
Enumerator_tC60126DAC7C21C3268F8444A555270DCD3F8CB3A L_62;
L_62 = List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC(L_61, List_1_GetEnumerator_m921F9E417EFD8F903D71509F8EFC4C4566D76CAC_RuntimeMethod_var);
V_5 = L_62;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0222:
{// begin finally (depth: 1)
Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C((&V_5), Enumerator_Dispose_mD5F9D6967D1A793EC5B859797AF46CA0638E673C_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0214_1;
}
IL_0170_1:
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_63;
L_63 = Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_inline((&V_5), Enumerator_get_Current_m9B13FBB007BA67B906DE032E50FEC11C7652193A_RuntimeMethod_var);
V_9 = L_63;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_64 = V_1;
NullCheck(L_64);
String_t* L_65;
L_65 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_64, NULL);
V_10 = L_65;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_66 = V_9;
NullCheck(L_66);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_67;
L_67 = XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952(L_66, NULL);
NullCheck(L_67);
bool L_68;
L_68 = XmlAttributes_get_XmlIgnore_m817F5C7648E0CADEBE452A1EF3E59A0D07A80627_inline(L_67, NULL);
if (L_68)
{
goto IL_0214_1;
}
}
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_69 = V_9;
NullCheck(L_69);
Type_t* L_70;
L_70 = XmlReflectionMember_get_DeclaringType_mA84E638B63CD926ED1DB32628B7747DE0BA7F355_inline(L_69, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_71;
L_71 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_70, (Type_t*)NULL, NULL);
if (!L_71)
{
goto IL_01d4_1;
}
}
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_72 = V_9;
NullCheck(L_72);
Type_t* L_73;
L_73 = XmlReflectionMember_get_DeclaringType_mA84E638B63CD926ED1DB32628B7747DE0BA7F355_inline(L_72, NULL);
Type_t* L_74 = V_0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_75;
L_75 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_73, L_74, NULL);
if (!L_75)
{
goto IL_01d4_1;
}
}
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_76 = V_9;
NullCheck(L_76);
Type_t* L_77;
L_77 = XmlReflectionMember_get_DeclaringType_mA84E638B63CD926ED1DB32628B7747DE0BA7F355_inline(L_76, NULL);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_78 = ___root1;
String_t* L_79 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_80;
L_80 = XmlReflectionImporter_ImportClassMapping_m435E0FBB161DB459B4E0C4FFB73916C45D5EED0D(__this, L_77, L_78, L_79, (bool)1, NULL);
V_11 = L_80;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_81 = V_11;
NullCheck(L_81);
bool L_82;
L_82 = XmlTypeMapping_get_HasXmlTypeNamespace_m461935579477604F7ECB9D989B49EF4621DF3FF8(L_81, NULL);
if (!L_82)
{
goto IL_01d4_1;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_83 = V_11;
NullCheck(L_83);
String_t* L_84;
L_84 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_83, NULL);
V_10 = L_84;
}
IL_01d4_1:
{
}
try
{// begin try (depth: 2)
Type_t* L_85 = V_0;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_86 = V_9;
String_t* L_87 = V_10;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_88;
L_88 = XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D(__this, L_85, L_86, L_87, NULL);
V_12 = L_88;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_89 = V_12;
Type_t* L_90 = V_0;
NullCheck(L_89);
XmlTypeMapMember_CheckOptionalValueType_mC3A9B15424B4E2F537CAD6602EA32522C47FC36B(L_89, L_90, NULL);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_91 = V_2;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_92 = V_12;
NullCheck(L_91);
ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B(L_91, L_92, NULL);
goto IL_0214_1;
}// end try (depth: 2)
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_01f4_1;
}
throw e;
}
CATCH_01f4_1:
{// begin catch(System.Exception)
V_13 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_93;
L_93 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_94 = V_9;
NullCheck(L_94);
String_t* L_95;
L_95 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_94, NULL);
String_t* L_96;
L_96 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_93, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A151D6090743D9E886008285DE3A3FB22BC228F)), L_95, NULL);
Exception_t* L_97 = V_13;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_98 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_98);
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(L_98, L_96, L_97, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_98, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_0214_1:
{
bool L_99;
L_99 = Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610((&V_5), Enumerator_MoveNext_m1056299E91A99CDB7E024E6CE4FAEDD876131610_RuntimeMethod_var);
if (L_99)
{
goto IL_0170_1;
}
}
{
goto IL_0230;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0230:
{
Type_t* L_100 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_101 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_102;
L_102 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_101, NULL);
bool L_103;
L_103 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_100, L_102, NULL);
if (!L_103)
{
goto IL_029c;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_104 = __this->___includedTypes_2;
if (!L_104)
{
goto IL_029c;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_105 = __this->___includedTypes_2;
NullCheck(L_105);
RuntimeObject* L_106;
L_106 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_105);
V_14 = L_106;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0287:
{// begin finally (depth: 1)
{
RuntimeObject* L_107 = V_14;
V_16 = ((RuntimeObject*)IsInst((RuntimeObject*)L_107, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_108 = V_16;
if (!L_108)
{
goto IL_029b;
}
}
{
RuntimeObject* L_109 = V_16;
NullCheck(L_109);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_109);
}
IL_029b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_027c_1;
}
IL_0259_1:
{
RuntimeObject* L_110 = V_14;
NullCheck(L_110);
RuntimeObject* L_111;
L_111 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_110);
V_15 = ((Type_t*)CastclassClass((RuntimeObject*)L_111, Type_t_il2cpp_TypeInfo_var));
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_112 = V_1;
NullCheck(L_112);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_113;
L_113 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_112, NULL);
Type_t* L_114 = V_15;
String_t* L_115 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_116;
L_116 = XmlReflectionImporter_ImportTypeMapping_m9682FD802D4138CDD616855551EB57D7FA3FF84C(__this, L_114, L_115, NULL);
NullCheck(L_113);
int32_t L_117;
L_117 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_113, L_116);
}
IL_027c_1:
{
RuntimeObject* L_118 = V_14;
NullCheck(L_118);
bool L_119;
L_119 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_118);
if (L_119)
{
goto IL_0259_1;
}
}
{
goto IL_029c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_029c:
{
Type_t* L_120 = V_0;
NullCheck(L_120);
Type_t* L_121;
L_121 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_120);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_122;
L_122 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_121, (Type_t*)NULL, NULL);
if (!L_122)
{
goto IL_034e;
}
}
{
Type_t* L_123 = V_0;
NullCheck(L_123);
Type_t* L_124;
L_124 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_123);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_125 = ___root1;
String_t* L_126 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_127;
L_127 = XmlReflectionImporter_ImportClassMapping_m435E0FBB161DB459B4E0C4FFB73916C45D5EED0D(__this, L_124, L_125, L_126, (bool)1, NULL);
V_17 = L_127;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_128 = V_17;
NullCheck(L_128);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_129;
L_129 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_128, NULL);
V_18 = ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)IsInstClass((RuntimeObject*)L_129, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var));
Type_t* L_130 = V_0;
NullCheck(L_130);
Type_t* L_131;
L_131 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_130);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_132 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_133;
L_133 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_132, NULL);
bool L_134;
L_134 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_131, L_133, NULL);
if (!L_134)
{
goto IL_02fb;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_135 = V_1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_136 = V_17;
NullCheck(L_135);
XmlTypeMapping_set_BaseMap_m1B6EC933148E6ED405775C6A56CF888DF489988F_inline(L_135, L_136, NULL);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_137 = V_18;
NullCheck(L_137);
bool L_138;
L_138 = ClassMap_get_HasSimpleContent_m7023F99D0994EB07A18F31EC2FFF7CEC4FA38960(L_137, NULL);
if (L_138)
{
goto IL_02fb;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_139 = V_2;
NullCheck(L_139);
ClassMap_SetCanBeSimpleType_mEFA2779827B16C4BACF378B6536121C5FE1AE74C_inline(L_139, (bool)0, NULL);
}
IL_02fb:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_140 = V_17;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_141 = V_1;
XmlReflectionImporter_RegisterDerivedMap_m6ACF611372A2C13FFDCE8865E267D47079A36EAA(__this, L_140, L_141, NULL);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_142 = V_18;
NullCheck(L_142);
bool L_143;
L_143 = ClassMap_get_HasSimpleContent_m7023F99D0994EB07A18F31EC2FFF7CEC4FA38960(L_142, NULL);
if (!L_143)
{
goto IL_034e;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_144 = V_2;
NullCheck(L_144);
RuntimeObject* L_145;
L_145 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_144, NULL);
if (!L_145)
{
goto IL_034e;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_146 = V_2;
NullCheck(L_146);
RuntimeObject* L_147;
L_147 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_146, NULL);
NullCheck(L_147);
int32_t L_148;
L_148 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_147);
if ((((int32_t)L_148) == ((int32_t)1)))
{
goto IL_034e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var)));
String_t* L_149 = ((XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var))))->___errSimple_7;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_150 = V_1;
NullCheck(L_150);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_151;
L_151 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_150, NULL);
NullCheck(L_151);
String_t* L_152;
L_152 = TypeData_get_TypeName_mC7AF987BA3129B6648CE999111BE0E739E5A25A8_inline(L_151, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_153 = V_1;
NullCheck(L_153);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_154;
L_154 = XmlTypeMapping_get_BaseMap_m4596D5703D08B93CE429A7C62CEB9AA91506B32D_inline(L_153, NULL);
NullCheck(L_154);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_155;
L_155 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_154, NULL);
NullCheck(L_155);
String_t* L_156;
L_156 = TypeData_get_TypeName_mC7AF987BA3129B6648CE999111BE0E739E5A25A8_inline(L_155, NULL);
String_t* L_157;
L_157 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(L_149, L_152, L_156, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_158 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_158);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_158, L_157, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_158, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC_RuntimeMethod_var)));
}
IL_034e:
{
Type_t* L_159 = V_0;
String_t* L_160 = ___defaultNamespace2;
XmlReflectionImporter_ImportIncludedTypes_m14EFED9CB15D6C7C5F828BE68F77E59D0710EF3E(__this, L_159, L_160, NULL);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_161 = V_2;
NullCheck(L_161);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_162;
L_162 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_161, NULL);
if (!L_162)
{
goto IL_0419;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_163 = V_2;
NullCheck(L_163);
bool L_164;
L_164 = ClassMap_get_HasSimpleContent_m7023F99D0994EB07A18F31EC2FFF7CEC4FA38960(L_163, NULL);
if (L_164)
{
goto IL_0419;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_165 = V_2;
NullCheck(L_165);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_166;
L_166 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_165, NULL);
V_19 = L_166;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_167 = V_19;
NullCheck(L_167);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_168;
L_168 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_167, NULL);
NullCheck(L_168);
Type_t* L_169;
L_169 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_168, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_170 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_171;
L_171 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_170, NULL);
bool L_172;
L_172 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_169, L_171, NULL);
if (!L_172)
{
goto IL_0419;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_173 = V_19;
NullCheck(L_173);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_174;
L_174 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_173, NULL);
NullCheck(L_174);
Type_t* L_175;
L_175 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_174, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_176 = { reinterpret_cast<intptr_t> (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_177;
L_177 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_176, NULL);
bool L_178;
L_178 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_175, L_177, NULL);
if (!L_178)
{
goto IL_0419;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_179 = V_19;
NullCheck(L_179);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_180;
L_180 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_179, NULL);
NullCheck(L_180);
Type_t* L_181;
L_181 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_180, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_182 = { reinterpret_cast<intptr_t> (XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_183;
L_183 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_182, NULL);
bool L_184;
L_184 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_181, L_183, NULL);
if (!L_184)
{
goto IL_0419;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_185 = V_19;
NullCheck(L_185);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_186;
L_186 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_185, NULL);
NullCheck(L_186);
Type_t* L_187;
L_187 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_186, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_188 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_189;
L_189 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_188, NULL);
bool L_190;
L_190 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_187, L_189, NULL);
if (!L_190)
{
goto IL_0419;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var)));
String_t* L_191 = ((XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var))))->___errSimple2_8;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_192 = V_1;
NullCheck(L_192);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_193;
L_193 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_192, NULL);
NullCheck(L_193);
String_t* L_194;
L_194 = TypeData_get_TypeName_mC7AF987BA3129B6648CE999111BE0E739E5A25A8_inline(L_193, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_195 = V_19;
NullCheck(L_195);
String_t* L_196;
L_196 = XmlTypeMapMember_get_Name_mCF37113EDBC93BBAE3E38DDA503BF83C752287F9_inline(L_195, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_197 = V_19;
NullCheck(L_197);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_198;
L_198 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_197, NULL);
NullCheck(L_198);
String_t* L_199;
L_199 = TypeData_get_TypeName_mC7AF987BA3129B6648CE999111BE0E739E5A25A8_inline(L_198, NULL);
String_t* L_200;
L_200 = String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A(L_191, L_194, L_196, L_199, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_201 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_201);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_201, L_200, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_201, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportClassMapping_mE428971015FDEB313F3252FF1BD02C717D9938DC_RuntimeMethod_var)));
}
IL_0419:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_202 = V_1;
return L_202;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::RegisterDerivedMap(System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_RegisterDerivedMap_m6ACF611372A2C13FFDCE8865E267D47079A36EAA (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___map0, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___derivedMap1, 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);
s_Il2CppMethodInitialized = true;
}
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_0 = NULL;
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___map0;
NullCheck(L_0);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1;
L_1 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_0, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_2 = ___derivedMap1;
NullCheck(L_1);
int32_t L_3;
L_3 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_1, L_2);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_4 = ___map0;
NullCheck(L_4);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5;
L_5 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_4, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6 = ___derivedMap1;
NullCheck(L_6);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7;
L_7 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_6, NULL);
NullCheck(L_5);
VirtualActionInvoker1< RuntimeObject* >::Invoke(30 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_5, L_7);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8 = ___map0;
NullCheck(L_8);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9;
L_9 = XmlTypeMapping_get_BaseMap_m4596D5703D08B93CE429A7C62CEB9AA91506B32D_inline(L_8, NULL);
if (!L_9)
{
goto IL_0034;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = ___map0;
NullCheck(L_10);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11;
L_11 = XmlTypeMapping_get_BaseMap_m4596D5703D08B93CE429A7C62CEB9AA91506B32D_inline(L_10, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_12 = ___derivedMap1;
XmlReflectionImporter_RegisterDerivedMap_m6ACF611372A2C13FFDCE8865E267D47079A36EAA(__this, L_11, L_12, NULL);
return;
}
IL_0034:
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_14;
L_14 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_13, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15;
L_15 = XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18(__this, L_14, NULL);
V_0 = L_15;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = V_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = ___map0;
if ((((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_16) == ((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_17)))
{
goto IL_0056;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_0;
NullCheck(L_18);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_19;
L_19 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_18, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = ___derivedMap1;
NullCheck(L_19);
int32_t L_21;
L_21 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_19, L_20);
}
IL_0056:
{
return;
}
}
// System.String System.Xml.Serialization.XmlReflectionImporter::GetTypeNamespace(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* V_1 = NULL;
{
V_0 = (String_t*)NULL;
V_1 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
bool L_1;
L_1 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_0, NULL);
if (L_1)
{
goto IL_0026;
}
}
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_2 = __this->___attributeOverrides_1;
if (!L_2)
{
goto IL_0026;
}
}
{
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_3 = __this->___attributeOverrides_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = ___typeData0;
NullCheck(L_4);
Type_t* L_5;
L_5 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_4, NULL);
NullCheck(L_3);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_6;
L_6 = XmlAttributeOverrides_get_Item_m2FAD5994E54196E78D169E8CCAB3D71E817A1025(L_3, L_5, NULL);
V_1 = L_6;
}
IL_0026:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_7 = V_1;
if (L_7)
{
goto IL_0035;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_8 = ___typeData0;
NullCheck(L_8);
Type_t* L_9;
L_9 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_8, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_10 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)il2cpp_codegen_object_new(XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
NullCheck(L_10);
XmlAttributes__ctor_mFEEAECF61BFB18BAA8D5767AF38A2D51D7CBC15F(L_10, L_9, NULL);
V_1 = L_10;
}
IL_0035:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_11 = V_1;
NullCheck(L_11);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_12;
L_12 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_11, NULL);
if (!L_12)
{
goto IL_0071;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_13 = V_1;
NullCheck(L_13);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_14;
L_14 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_13, NULL);
NullCheck(L_14);
String_t* L_15;
L_15 = XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline(L_14, NULL);
if (!L_15)
{
goto IL_0071;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_16 = V_1;
NullCheck(L_16);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_17;
L_17 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_16, NULL);
NullCheck(L_17);
String_t* L_18;
L_18 = XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline(L_17, NULL);
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
if (!L_19)
{
goto IL_0071;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_20 = ___typeData0;
NullCheck(L_20);
int32_t L_21;
L_21 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_20, NULL);
if ((((int32_t)L_21) == ((int32_t)2)))
{
goto IL_0071;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_22 = V_1;
NullCheck(L_22);
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_23;
L_23 = XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline(L_22, NULL);
NullCheck(L_23);
String_t* L_24;
L_24 = XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline(L_23, NULL);
V_0 = L_24;
}
IL_0071:
{
String_t* L_25 = V_0;
if (!L_25)
{
goto IL_007e;
}
}
{
String_t* L_26 = V_0;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
if (!L_27)
{
goto IL_007e;
}
}
{
String_t* L_28 = V_0;
return L_28;
}
IL_007e:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_29 = V_1;
NullCheck(L_29);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_30;
L_30 = XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC_inline(L_29, NULL);
if (!L_30)
{
goto IL_0091;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_31 = ___root1;
if (L_31)
{
goto IL_0091;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_32 = V_1;
NullCheck(L_32);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_33;
L_33 = XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC_inline(L_32, NULL);
___root1 = L_33;
}
IL_0091:
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_34 = ___root1;
if (!L_34)
{
goto IL_00b0;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_35 = ___root1;
NullCheck(L_35);
String_t* L_36;
L_36 = XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline(L_35, NULL);
if (!L_36)
{
goto IL_00b0;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_37 = ___root1;
NullCheck(L_37);
String_t* L_38;
L_38 = XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline(L_37, NULL);
NullCheck(L_38);
int32_t L_39;
L_39 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_38, NULL);
if (!L_39)
{
goto IL_00b0;
}
}
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_40 = ___root1;
NullCheck(L_40);
String_t* L_41;
L_41 = XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline(L_40, NULL);
return L_41;
}
IL_00b0:
{
String_t* L_42 = ___defaultNamespace2;
if (L_42)
{
goto IL_00b9;
}
}
{
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_00b9:
{
String_t* L_43 = ___defaultNamespace2;
return L_43;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportListMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String,System.Xml.Serialization.XmlAttributes,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportListMapping_m2DE4BB63B5D578F38690F0CECD77C0E87268CEFC (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, int32_t ___nestingLevel4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_0 = NULL;
{
Type_t* L_0 = ___type0;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_0, NULL);
V_0 = L_1;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = V_0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_3 = ___root1;
String_t* L_4 = ___defaultNamespace2;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_5 = ___atts3;
int32_t L_6 = ___nestingLevel4;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_7;
L_7 = XmlReflectionImporter_ImportListMapping_mB880ED974E84B7B9A2B588B3BF2CCC52EDF67739(__this, L_2, L_3, L_4, L_5, L_6, NULL);
return L_7;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportListMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.Xml.Serialization.XmlAttributes,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportListMapping_mB880ED974E84B7B9A2B588B3BF2CCC52EDF67739 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, int32_t ___nestingLevel4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB8B7FF6EA48766107079374A4B073225864B5550);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* V_1 = NULL;
Type_t* V_2 = NULL;
bool V_3 = false;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* V_4 = NULL;
String_t* V_5 = NULL;
int32_t V_6 = 0;
String_t* V_7 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_8 = NULL;
XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5* V_9 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_10 = NULL;
RuntimeObject* V_11 = NULL;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* V_12 = NULL;
Type_t* V_13 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_14 = NULL;
RuntimeObject* V_15 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_16 = NULL;
int32_t V_17 = 0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_18 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_19 = NULL;
int32_t V_20 = 0;
Type_t* V_21 = NULL;
int32_t G_B8_0 = 0;
Type_t* G_B17_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B19_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B18_0 = NULL;
String_t* G_B20_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B20_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B26_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B25_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B27_0 = NULL;
int32_t G_B28_0 = 0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B28_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B53_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B52_0 = NULL;
String_t* G_B54_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B54_1 = NULL;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_2 = (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)il2cpp_codegen_object_new(ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var);
NullCheck(L_2);
ListMap__ctor_m89E81F66CB6B669B50E293853AAF98AD4DED0F67(L_2, NULL);
V_1 = L_2;
bool L_3 = __this->___allowPrivateTypes_6;
if (L_3)
{
goto IL_001c;
}
}
{
Type_t* L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m8DB0250A0957686514A12FAF12AD4AC695F4BE25(L_4, (bool)1, NULL);
}
IL_001c:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_5 = ___atts3;
if (L_5)
{
goto IL_0027;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_6 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)il2cpp_codegen_object_new(XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlAttributes__ctor_mA77FF59E5F2D6C3DAE3695F3A11F61B6DE8E6494(L_6, NULL);
___atts3 = L_6;
}
IL_0027:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7 = ___typeData0;
NullCheck(L_7);
Type_t* L_8;
L_8 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_7, NULL);
V_2 = L_8;
Type_t* L_9 = V_0;
NullCheck(L_9);
bool L_10;
L_10 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_9, NULL);
if (!L_10)
{
goto IL_004c;
}
}
{
Type_t* L_11 = V_2;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_12;
L_12 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_11, NULL);
NullCheck(L_12);
int32_t L_13;
L_13 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_12, NULL);
if ((!(((uint32_t)L_13) == ((uint32_t)3))))
{
goto IL_004c;
}
}
{
Type_t* L_14 = V_2;
NullCheck(L_14);
bool L_15;
L_15 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_14, NULL);
G_B8_0 = ((int32_t)(L_15));
goto IL_004d;
}
IL_004c:
{
G_B8_0 = 0;
}
IL_004d:
{
V_3 = (bool)G_B8_0;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_16 = (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78*)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
NullCheck(L_16);
XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B(L_16, NULL);
V_4 = L_16;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_17 = ___atts3;
NullCheck(L_17);
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_18;
L_18 = XmlAttributes_get_XmlArrayItems_mA3EA68D61FCFD9DBAD4175F48035F95AC10EDB6E_inline(L_17, NULL);
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = CollectionBase_GetEnumerator_m8121D67DEBB0009A93BFEBB1DA46BA8A671FD862(L_18, NULL);
V_11 = L_19;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0211:
{// begin finally (depth: 1)
{
RuntimeObject* L_20 = V_11;
V_15 = ((RuntimeObject*)IsInst((RuntimeObject*)L_20, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_21 = V_15;
if (!L_21)
{
goto IL_0225;
}
}
{
RuntimeObject* L_22 = V_15;
NullCheck(L_22);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_22);
}
IL_0225:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0203_1;
}
IL_0068_1:
{
RuntimeObject* L_23 = V_11;
NullCheck(L_23);
RuntimeObject* L_24;
L_24 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
V_12 = ((XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40*)CastclassClass((RuntimeObject*)L_24, XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40_il2cpp_TypeInfo_var));
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_25 = V_12;
NullCheck(L_25);
String_t* L_26;
L_26 = XmlArrayItemAttribute_get_Namespace_m18BA85AB457B0ED70ABDA1C89B32A10BA24D0113_inline(L_25, NULL);
if (!L_26)
{
goto IL_0094_1;
}
}
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_27 = V_12;
NullCheck(L_27);
int32_t L_28;
L_28 = XmlArrayItemAttribute_get_Form_mBBFA635F531B819D8E43AFF6110670FB383C1F33_inline(L_27, NULL);
if ((!(((uint32_t)L_28) == ((uint32_t)2))))
{
goto IL_0094_1;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_29 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_29);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral444C6FD23DF88A83A6776F970B2AA77934FFF506)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportListMapping_mB880ED974E84B7B9A2B588B3BF2CCC52EDF67739_RuntimeMethod_var)));
}
IL_0094_1:
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_30 = V_12;
NullCheck(L_30);
int32_t L_31;
L_31 = XmlArrayItemAttribute_get_NestingLevel_mE927341768913F399DAB59E37BB38EB4B5CF33ED_inline(L_30, NULL);
int32_t L_32 = ___nestingLevel4;
if ((!(((uint32_t)L_31) == ((uint32_t)L_32))))
{
goto IL_0203_1;
}
}
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_33 = V_12;
NullCheck(L_33);
Type_t* L_34;
L_34 = XmlArrayItemAttribute_get_Type_m80FA2D88365496E4C5090375F0E014976B6B7417_inline(L_33, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_35;
L_35 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_34, (Type_t*)NULL, NULL);
if (L_35)
{
goto IL_00b4_1;
}
}
{
Type_t* L_36 = V_2;
G_B17_0 = L_36;
goto IL_00bb_1;
}
IL_00b4_1:
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_37 = V_12;
NullCheck(L_37);
Type_t* L_38;
L_38 = XmlArrayItemAttribute_get_Type_m80FA2D88365496E4C5090375F0E014976B6B7417_inline(L_37, NULL);
G_B17_0 = L_38;
}
IL_00bb_1:
{
V_13 = G_B17_0;
Type_t* L_39 = V_13;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_40 = V_12;
NullCheck(L_40);
String_t* L_41;
L_41 = XmlArrayItemAttribute_get_DataType_m781844E00CC1400EE1F3960B9D8367FC06C5B1C9(L_40, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_42;
L_42 = TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8(L_39, L_41, (bool)0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_43 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_43);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_43, (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)NULL, L_42, NULL);
V_14 = L_43;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_44 = V_14;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_45 = V_12;
NullCheck(L_45);
String_t* L_46;
L_46 = XmlArrayItemAttribute_get_Namespace_m18BA85AB457B0ED70ABDA1C89B32A10BA24D0113_inline(L_45, NULL);
G_B18_0 = L_44;
if (L_46)
{
G_B19_0 = L_44;
goto IL_00e2_1;
}
}
{
String_t* L_47 = ___defaultNamespace2;
G_B20_0 = L_47;
G_B20_1 = G_B18_0;
goto IL_00e9_1;
}
IL_00e2_1:
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_48 = V_12;
NullCheck(L_48);
String_t* L_49;
L_49 = XmlArrayItemAttribute_get_Namespace_m18BA85AB457B0ED70ABDA1C89B32A10BA24D0113_inline(L_48, NULL);
G_B20_0 = L_49;
G_B20_1 = G_B19_0;
}
IL_00e9_1:
{
NullCheck(G_B20_1);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(G_B20_1, G_B20_0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_50 = V_14;
NullCheck(L_50);
String_t* L_51;
L_51 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_50, NULL);
if (L_51)
{
goto IL_0103_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_52 = V_14;
NullCheck(L_52);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(L_52, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
}
IL_0103_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_53 = V_14;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_54 = V_12;
NullCheck(L_54);
int32_t L_55;
L_55 = XmlArrayItemAttribute_get_Form_mBBFA635F531B819D8E43AFF6110670FB383C1F33_inline(L_54, NULL);
NullCheck(L_53);
XmlTypeMapElementInfo_set_Form_m404075D5C7B4E4CE0EC5ED46881D4D84C73E0102_inline(L_53, L_55, NULL);
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_56 = V_12;
NullCheck(L_56);
int32_t L_57;
L_57 = XmlArrayItemAttribute_get_Form_mBBFA635F531B819D8E43AFF6110670FB383C1F33_inline(L_56, NULL);
if ((!(((uint32_t)L_57) == ((uint32_t)2))))
{
goto IL_0127_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_58 = V_14;
String_t* L_59 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_58);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(L_58, L_59, NULL);
}
IL_0127_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_60 = V_14;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_61 = V_12;
NullCheck(L_61);
bool L_62;
L_62 = XmlArrayItemAttribute_get_IsNullableSpecified_mDC4FABB753BA60A10CEED9BDD82011C47E14B4F0_inline(L_61, NULL);
G_B25_0 = L_60;
if (!L_62)
{
G_B26_0 = L_60;
goto IL_013b_1;
}
}
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_63 = V_12;
NullCheck(L_63);
bool L_64;
L_64 = XmlArrayItemAttribute_get_IsNullable_mC7A6E27D7259FF7DD81A2C575EBD4578651857D8_inline(L_63, NULL);
G_B26_0 = G_B25_0;
if (!L_64)
{
G_B27_0 = G_B25_0;
goto IL_014a_1;
}
}
IL_013b_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_65 = V_14;
NullCheck(L_65);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_66;
L_66 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_65, NULL);
bool L_67;
L_67 = XmlReflectionImporter_CanBeNull_m52BC441CF224DCDF490BEE6ED280AB778BFFC3A6(__this, L_66, NULL);
G_B28_0 = ((int32_t)(L_67));
G_B28_1 = G_B26_0;
goto IL_014b_1;
}
IL_014a_1:
{
G_B28_0 = 0;
G_B28_1 = G_B27_0;
}
IL_014b_1:
{
NullCheck(G_B28_1);
XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F_inline(G_B28_1, (bool)G_B28_0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_68 = V_14;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_69 = V_12;
NullCheck(L_69);
int32_t L_70;
L_70 = XmlArrayItemAttribute_get_NestingLevel_mE927341768913F399DAB59E37BB38EB4B5CF33ED_inline(L_69, NULL);
NullCheck(L_68);
XmlTypeMapElementInfo_set_NestingLevel_m104B8F548E5E7B0982E55AFA8900F9BB4E0E1A35_inline(L_68, L_70, NULL);
bool L_71 = V_3;
if (!L_71)
{
goto IL_0180_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_72 = V_14;
Type_t* L_73 = V_13;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_74 = V_14;
NullCheck(L_74);
String_t* L_75;
L_75 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_74, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_76 = ___atts3;
int32_t L_77 = ___nestingLevel4;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_78;
L_78 = XmlReflectionImporter_ImportListMapping_m2DE4BB63B5D578F38690F0CECD77C0E87268CEFC(__this, L_73, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_75, L_76, ((int32_t)il2cpp_codegen_add(L_77, 1)), NULL);
NullCheck(L_72);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_72, L_78, NULL);
goto IL_01a5_1;
}
IL_0180_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_79 = V_14;
NullCheck(L_79);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_80;
L_80 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_79, NULL);
NullCheck(L_80);
bool L_81;
L_81 = TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749(L_80, NULL);
if (!L_81)
{
goto IL_01a5_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_82 = V_14;
Type_t* L_83 = V_13;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_84 = V_14;
NullCheck(L_84);
String_t* L_85;
L_85 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_84, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_86;
L_86 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_83, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_85, NULL);
NullCheck(L_82);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_82, L_86, NULL);
}
IL_01a5_1:
{
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_87 = V_12;
NullCheck(L_87);
String_t* L_88;
L_88 = XmlArrayItemAttribute_get_ElementName_m2882B401E27852A6CC2129A6B0CBD8DAE7EE6677(L_87, NULL);
NullCheck(L_88);
int32_t L_89;
L_89 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_88, NULL);
if (!L_89)
{
goto IL_01c8_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_90 = V_14;
XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* L_91 = V_12;
NullCheck(L_91);
String_t* L_92;
L_92 = XmlArrayItemAttribute_get_ElementName_m2882B401E27852A6CC2129A6B0CBD8DAE7EE6677(L_91, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_93;
L_93 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_92, NULL);
NullCheck(L_90);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_90, L_93, NULL);
goto IL_01f9_1;
}
IL_01c8_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_94 = V_14;
NullCheck(L_94);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_95;
L_95 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_94, NULL);
if (!L_95)
{
goto IL_01e6_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_96 = V_14;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_97 = V_14;
NullCheck(L_97);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_98;
L_98 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_97, NULL);
NullCheck(L_98);
String_t* L_99;
L_99 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_98, NULL);
NullCheck(L_96);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_96, L_99, NULL);
goto IL_01f9_1;
}
IL_01e6_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_100 = V_14;
Type_t* L_101 = V_13;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_102;
L_102 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_101, NULL);
NullCheck(L_102);
String_t* L_103;
L_103 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_102, NULL);
NullCheck(L_100);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_100, L_103, NULL);
}
IL_01f9_1:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_104 = V_4;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_105 = V_14;
NullCheck(L_104);
int32_t L_106;
L_106 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_104, L_105);
}
IL_0203_1:
{
RuntimeObject* L_107 = V_11;
NullCheck(L_107);
bool L_108;
L_108 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_107);
if (L_108)
{
goto IL_0068_1;
}
}
{
goto IL_0226;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0226:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_109 = V_4;
NullCheck(L_109);
int32_t L_110;
L_110 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_109);
if (L_110)
{
goto IL_02d9;
}
}
{
Type_t* L_111 = V_2;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_112;
L_112 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_111, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_113 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_113);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_113, (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)NULL, L_112, NULL);
V_16 = L_113;
bool L_114 = V_3;
if (!L_114)
{
goto IL_025b;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_115 = V_16;
Type_t* L_116 = V_2;
String_t* L_117 = ___defaultNamespace2;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_118 = ___atts3;
int32_t L_119 = ___nestingLevel4;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_120;
L_120 = XmlReflectionImporter_ImportListMapping_m2DE4BB63B5D578F38690F0CECD77C0E87268CEFC(__this, L_116, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_117, L_118, ((int32_t)il2cpp_codegen_add(L_119, 1)), NULL);
NullCheck(L_115);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_115, L_120, NULL);
goto IL_0279;
}
IL_025b:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_121 = V_16;
NullCheck(L_121);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_122;
L_122 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_121, NULL);
NullCheck(L_122);
bool L_123;
L_123 = TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749(L_122, NULL);
if (!L_123)
{
goto IL_0279;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_124 = V_16;
Type_t* L_125 = V_2;
String_t* L_126 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_127;
L_127 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_125, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_126, NULL);
NullCheck(L_124);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_124, L_127, NULL);
}
IL_0279:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_128 = V_16;
NullCheck(L_128);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_129;
L_129 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_128, NULL);
if (!L_129)
{
goto IL_0297;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_130 = V_16;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_131 = V_16;
NullCheck(L_131);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_132;
L_132 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_131, NULL);
NullCheck(L_132);
String_t* L_133;
L_133 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_132, NULL);
NullCheck(L_130);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_130, L_133, NULL);
goto IL_02a9;
}
IL_0297:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_134 = V_16;
Type_t* L_135 = V_2;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_136;
L_136 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_135, NULL);
NullCheck(L_136);
String_t* L_137;
L_137 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_136, NULL);
NullCheck(L_134);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_134, L_137, NULL);
}
IL_02a9:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_138 = V_16;
String_t* L_139 = ___defaultNamespace2;
G_B52_0 = L_138;
if (L_139)
{
G_B53_0 = L_138;
goto IL_02b5;
}
}
{
G_B54_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B54_1 = G_B52_0;
goto IL_02b6;
}
IL_02b5:
{
String_t* L_140 = ___defaultNamespace2;
G_B54_0 = L_140;
G_B54_1 = G_B53_0;
}
IL_02b6:
{
NullCheck(G_B54_1);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(G_B54_1, G_B54_0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_141 = V_16;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_142 = V_16;
NullCheck(L_142);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_143;
L_143 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_142, NULL);
bool L_144;
L_144 = XmlReflectionImporter_CanBeNull_m52BC441CF224DCDF490BEE6ED280AB778BFFC3A6(__this, L_143, NULL);
NullCheck(L_141);
XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F_inline(L_141, L_144, NULL);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_145 = V_4;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_146 = V_16;
NullCheck(L_145);
int32_t L_147;
L_147 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_145, L_146);
}
IL_02d9:
{
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_148 = V_1;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_149 = V_4;
NullCheck(L_148);
ListMap_set_ItemInfo_mD0E132CC2807675C9308B26F69EA38EC9EB3EF11_inline(L_148, L_149, NULL);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_150 = V_4;
NullCheck(L_150);
int32_t L_151;
L_151 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_150);
if ((((int32_t)L_151) <= ((int32_t)1)))
{
goto IL_0312;
}
}
{
int32_t L_152 = __this->___arrayChoiceCount_4;
V_17 = L_152;
int32_t L_153 = V_17;
__this->___arrayChoiceCount_4 = ((int32_t)il2cpp_codegen_add(L_153, 1));
String_t* L_154;
L_154 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_17), NULL);
String_t* L_155;
L_155 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralB8B7FF6EA48766107079374A4B073225864B5550, L_154, NULL);
V_5 = L_155;
goto IL_034d;
}
IL_0312:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_156 = V_4;
NullCheck(L_156);
RuntimeObject* L_157;
L_157 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_156, 0);
V_18 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_157, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_158 = V_18;
NullCheck(L_158);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_159;
L_159 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_158, NULL);
if (!L_159)
{
goto IL_033f;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_160 = V_18;
NullCheck(L_160);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_161;
L_161 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_160, NULL);
NullCheck(L_161);
String_t* L_162;
L_162 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_161, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
String_t* L_163;
L_163 = TypeTranslator_GetArrayName_m15F8FBB85322BBAAB490B5329FE61AE2204A356A(L_162, NULL);
V_5 = L_163;
goto IL_034d;
}
IL_033f:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_164 = V_18;
NullCheck(L_164);
String_t* L_165;
L_165 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_164, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
String_t* L_166;
L_166 = TypeTranslator_GetArrayName_m15F8FBB85322BBAAB490B5329FE61AE2204A356A(L_165, NULL);
V_5 = L_166;
}
IL_034d:
{
V_6 = 1;
String_t* L_167 = V_5;
V_7 = L_167;
}
IL_0354:
{
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_168 = __this->___helper_3;
String_t* L_169 = V_7;
String_t* L_170 = ___defaultNamespace2;
NullCheck(L_168);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_171;
L_171 = ReflectionHelper_GetRegisteredSchemaType_m7B43FB39F0723B94240F271D7ADDFCFF2EDF85D7(L_168, L_169, L_170, NULL);
V_19 = L_171;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_172 = V_19;
if (L_172)
{
goto IL_036d;
}
}
{
V_6 = (-1);
goto IL_03b1;
}
IL_036d:
{
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_173 = V_1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_174 = V_19;
NullCheck(L_174);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_175;
L_175 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_174, NULL);
NullCheck(L_173);
bool L_176;
L_176 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_173, L_175);
if (!L_176)
{
goto IL_0398;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_177 = ___typeData0;
NullCheck(L_177);
Type_t* L_178;
L_178 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_177, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_179 = V_19;
NullCheck(L_179);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_180;
L_180 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_179, NULL);
NullCheck(L_180);
Type_t* L_181;
L_181 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_180, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_182;
L_182 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_178, L_181, NULL);
if (!L_182)
{
goto IL_0398;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_183 = V_19;
return L_183;
}
IL_0398:
{
String_t* L_184 = V_5;
int32_t L_185 = V_6;
int32_t L_186 = L_185;
V_6 = ((int32_t)il2cpp_codegen_add(L_186, 1));
V_17 = L_186;
String_t* L_187;
L_187 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_17), NULL);
String_t* L_188;
L_188 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_184, L_187, NULL);
V_7 = L_188;
}
IL_03b1:
{
int32_t L_189 = V_6;
if ((!(((uint32_t)L_189) == ((uint32_t)(-1)))))
{
goto IL_0354;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_190 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_191 = ___root1;
String_t* L_192 = V_7;
String_t* L_193 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_194;
L_194 = XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E(__this, L_190, L_191, L_192, L_193, NULL);
V_8 = L_194;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_195 = V_8;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_196 = V_1;
NullCheck(L_195);
XmlMapping_set_ObjectMap_m34272FA1B72AD9AE95E70C84665290EA6C0C0FCD_inline(L_195, L_196, NULL);
Type_t* L_197 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_198 = { reinterpret_cast<intptr_t> (XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_199;
L_199 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_198, NULL);
NullCheck(L_197);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_200;
L_200 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_197, L_199, (bool)0);
V_9 = ((XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5*)Castclass((RuntimeObject*)L_200, XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_201 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t* L_202;
L_202 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_201, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_203;
L_203 = XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18(__this, L_202, NULL);
V_10 = L_203;
V_20 = 0;
goto IL_0423;
}
IL_03fa:
{
XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5* L_204 = V_9;
int32_t L_205 = V_20;
NullCheck(L_204);
int32_t L_206 = L_205;
XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* L_207 = (L_204)->GetAt(static_cast<il2cpp_array_size_t>(L_206));
NullCheck(L_207);
Type_t* L_208;
L_208 = XmlIncludeAttribute_get_Type_m933A769AE46F8B8FE3612605D6B0E890AE3A1EDD_inline(L_207, NULL);
V_21 = L_208;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_209 = V_10;
NullCheck(L_209);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_210;
L_210 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_209, NULL);
Type_t* L_211 = V_21;
String_t* L_212 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_213;
L_213 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_211, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_212, NULL);
NullCheck(L_210);
int32_t L_214;
L_214 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_210, L_213);
int32_t L_215 = V_20;
V_20 = ((int32_t)il2cpp_codegen_add(L_215, 1));
}
IL_0423:
{
int32_t L_216 = V_20;
XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5* L_217 = V_9;
NullCheck(L_217);
if ((((int32_t)L_216) < ((int32_t)((int32_t)(((RuntimeArray*)L_217)->max_length)))))
{
goto IL_03fa;
}
}
{
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_218 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_219 = V_8;
String_t* L_220 = V_7;
String_t* L_221 = ___defaultNamespace2;
NullCheck(L_218);
ReflectionHelper_RegisterSchemaType_m579F388E056C327FC96BFCDF5E0CB4F8122FFF1D(L_218, L_219, L_220, L_221, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_222 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_223;
L_223 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_222, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_224;
L_224 = XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18(__this, L_223, NULL);
NullCheck(L_224);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_225;
L_225 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_224, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_226 = V_8;
NullCheck(L_225);
int32_t L_227;
L_227 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_225, L_226);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_228 = V_8;
return L_228;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportXmlNodeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportXmlNodeMapping_mC19FEDCE22F79CFBC05DA7540F9FD77F7BDBDCBF (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, 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);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_2 = __this->___helper_3;
Type_t* L_3 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_5 = ___root1;
String_t* L_6 = ___defaultNamespace2;
String_t* L_7;
L_7 = XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C(__this, L_4, L_5, L_6, NULL);
NullCheck(L_2);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8;
L_8 = ReflectionHelper_GetRegisteredClrType_m05E15F35772167A902933F5688840FADE08C74AF(L_2, L_3, L_7, NULL);
V_1 = L_8;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = V_1;
if (!L_9)
{
goto IL_0022;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_1;
return L_10;
}
IL_0022:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_12 = ___root1;
String_t* L_13 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14;
L_14 = XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E(__this, L_11, L_12, (String_t*)NULL, L_13, NULL);
V_1 = L_14;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_15 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = V_1;
Type_t* L_17 = V_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_1;
NullCheck(L_18);
String_t* L_19;
L_19 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_18, NULL);
NullCheck(L_15);
ReflectionHelper_RegisterClrType_mD0C72D14AAB753E89AF6E0B99BC9F53FD8ED1188(L_15, L_16, L_17, L_19, NULL);
Type_t* L_20 = V_0;
NullCheck(L_20);
Type_t* L_21;
L_21 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_20);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_22;
L_22 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_21, (Type_t*)NULL, NULL);
if (!L_22)
{
goto IL_0083;
}
}
{
Type_t* L_23 = V_0;
NullCheck(L_23);
Type_t* L_24;
L_24 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_23);
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_25 = ___root1;
String_t* L_26 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_27;
L_27 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_24, L_25, L_26, NULL);
V_2 = L_27;
Type_t* L_28 = V_0;
NullCheck(L_28);
Type_t* L_29;
L_29 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_28);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_31;
L_31 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_30, NULL);
bool L_32;
L_32 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_29, L_31, NULL);
if (!L_32)
{
goto IL_007b;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_33 = V_1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_34 = V_2;
NullCheck(L_33);
XmlTypeMapping_set_BaseMap_m1B6EC933148E6ED405775C6A56CF888DF489988F_inline(L_33, L_34, NULL);
}
IL_007b:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_35 = V_2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_36 = V_1;
XmlReflectionImporter_RegisterDerivedMap_m6ACF611372A2C13FFDCE8865E267D47079A36EAA(__this, L_35, L_36, NULL);
}
IL_0083:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_37 = V_1;
return L_37;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportPrimitiveMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportPrimitiveMapping_m835E44D65873D999F2B6C847769442DB164AC6A5 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method)
{
Type_t* V_0 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_2 = __this->___helper_3;
Type_t* L_3 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_5 = ___root1;
String_t* L_6 = ___defaultNamespace2;
String_t* L_7;
L_7 = XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C(__this, L_4, L_5, L_6, NULL);
NullCheck(L_2);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8;
L_8 = ReflectionHelper_GetRegisteredClrType_m05E15F35772167A902933F5688840FADE08C74AF(L_2, L_3, L_7, NULL);
V_1 = L_8;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = V_1;
if (!L_9)
{
goto IL_0022;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_1;
return L_10;
}
IL_0022:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_12 = ___root1;
String_t* L_13 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14;
L_14 = XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E(__this, L_11, L_12, (String_t*)NULL, L_13, NULL);
V_1 = L_14;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_15 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = V_1;
Type_t* L_17 = V_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_1;
NullCheck(L_18);
String_t* L_19;
L_19 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_18, NULL);
NullCheck(L_15);
ReflectionHelper_RegisterClrType_mD0C72D14AAB753E89AF6E0B99BC9F53FD8ED1188(L_15, L_16, L_17, L_19, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = V_1;
return L_20;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportEnumMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportEnumMapping_m0B068134E99537E6B81FE5459AE245F08429EDEA (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_2 = NULL;
bool V_3 = false;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_4 = NULL;
int32_t V_5 = 0;
String_t* V_6 = NULL;
FieldInfo_t* V_7 = NULL;
String_t* V_8 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_9 = NULL;
int64_t V_10 = 0;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_2 = __this->___helper_3;
Type_t* L_3 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_5 = ___root1;
String_t* L_6 = ___defaultNamespace2;
String_t* L_7;
L_7 = XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C(__this, L_4, L_5, L_6, NULL);
NullCheck(L_2);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8;
L_8 = ReflectionHelper_GetRegisteredClrType_m05E15F35772167A902933F5688840FADE08C74AF(L_2, L_3, L_7, NULL);
V_1 = L_8;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = V_1;
if (!L_9)
{
goto IL_0022;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_1;
return L_10;
}
IL_0022:
{
bool L_11 = __this->___allowPrivateTypes_6;
if (L_11)
{
goto IL_0031;
}
}
{
Type_t* L_12 = V_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m8DB0250A0957686514A12FAF12AD4AC695F4BE25(L_12, (bool)0, NULL);
}
IL_0031:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_13 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_14 = ___root1;
String_t* L_15 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16;
L_16 = XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E(__this, L_13, L_14, (String_t*)NULL, L_15, NULL);
V_1 = L_16;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = V_1;
NullCheck(L_17);
XmlTypeMapping_set_IsNullable_mD892626D9838297535D63A2CE20F0F0E93B0E06F_inline(L_17, (bool)0, NULL);
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_18 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_19 = V_1;
Type_t* L_20 = V_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_21 = V_1;
NullCheck(L_21);
String_t* L_22;
L_22 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_21, NULL);
NullCheck(L_18);
ReflectionHelper_RegisterClrType_mD0C72D14AAB753E89AF6E0B99BC9F53FD8ED1188(L_18, L_19, L_20, L_22, NULL);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_23 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_23);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_23, NULL);
V_2 = L_23;
Type_t* L_24 = V_0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25;
L_25 = Enum_GetNames_mA16B3D5DABC2AE21290B05053660F925DBFF6D94(L_24, NULL);
V_4 = L_25;
V_5 = 0;
goto IL_00f6;
}
IL_006c:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = V_4;
int32_t L_27 = V_5;
NullCheck(L_26);
int32_t L_28 = L_27;
String_t* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
V_6 = L_29;
Type_t* L_30 = V_0;
String_t* L_31 = V_6;
NullCheck(L_30);
FieldInfo_t* L_32;
L_32 = Type_GetField_m0BF55B1A27A1B6AB6D3477E7F9E1CF2A3451E1E0(L_30, L_31, NULL);
V_7 = L_32;
V_8 = (String_t*)NULL;
FieldInfo_t* L_33 = V_7;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (XmlIgnoreAttribute_tF75E291BD9B9092629821783096CBA98748F5C3F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_35;
L_35 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_34, NULL);
NullCheck(L_33);
bool L_36;
L_36 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_33, L_35, (bool)0);
if (L_36)
{
goto IL_00f0;
}
}
{
FieldInfo_t* L_37 = V_7;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast<intptr_t> (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_39;
L_39 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_38, NULL);
NullCheck(L_37);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40;
L_40 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_37, L_39, (bool)0);
V_9 = L_40;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = V_9;
NullCheck(L_41);
if (!(((RuntimeArray*)L_41)->max_length))
{
goto IL_00bd;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_42 = V_9;
NullCheck(L_42);
int32_t L_43 = 0;
RuntimeObject* L_44 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
NullCheck(((XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)CastclassClass((RuntimeObject*)L_44, XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var)));
String_t* L_45;
L_45 = XmlEnumAttribute_get_Name_m13FF8A329D3569F4C785968B3928A1554EC9CCF3_inline(((XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695*)CastclassClass((RuntimeObject*)L_44, XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695_il2cpp_TypeInfo_var)), NULL);
V_8 = L_45;
}
IL_00bd:
{
String_t* L_46 = V_8;
if (L_46)
{
goto IL_00c5;
}
}
{
String_t* L_47 = V_6;
V_8 = L_47;
}
IL_00c5:
{
FieldInfo_t* L_48 = V_7;
NullCheck(L_48);
RuntimeObject* L_49;
L_49 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_48, NULL);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_50;
L_50 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_49, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)));
int64_t L_51;
L_51 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_49, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_50);
V_10 = L_51;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_52 = V_2;
String_t* L_53 = V_8;
String_t* L_54 = V_6;
int64_t L_55 = V_10;
EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_56 = (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38*)il2cpp_codegen_object_new(EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38_il2cpp_TypeInfo_var);
NullCheck(L_56);
EnumMapMember__ctor_m706EC5F580B4D0A8E3470E22AF8B091AE551ABA1(L_56, L_53, L_54, L_55, NULL);
NullCheck(L_52);
int32_t L_57;
L_57 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_52, L_56);
}
IL_00f0:
{
int32_t L_58 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_58, 1));
}
IL_00f6:
{
int32_t L_59 = V_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = V_4;
NullCheck(L_60);
if ((((int32_t)L_59) < ((int32_t)((int32_t)(((RuntimeArray*)L_60)->max_length)))))
{
goto IL_006c;
}
}
{
Type_t* L_61 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_63;
L_63 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_62, NULL);
NullCheck(L_61);
bool L_64;
L_64 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_61, L_63, (bool)0);
V_3 = L_64;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_65 = V_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_66 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38_0_0_0_var) };
Type_t* L_68;
L_68 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_67, NULL);
NullCheck(L_66);
RuntimeArray* L_69;
L_69 = VirtualFuncInvoker1< RuntimeArray*, Type_t* >::Invoke(47 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_66, L_68);
bool L_70 = V_3;
EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* L_71 = (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)il2cpp_codegen_object_new(EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var);
NullCheck(L_71);
EnumMap__ctor_m8B507CB9A313B5FEC589E7C3F0A6B573D665768D(L_71, ((EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520*)Castclass((RuntimeObject*)L_69, EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520_il2cpp_TypeInfo_var)), L_70, NULL);
NullCheck(L_65);
XmlMapping_set_ObjectMap_m34272FA1B72AD9AE95E70C84665290EA6C0C0FCD_inline(L_65, L_71, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t* L_73;
L_73 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_72, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_74;
L_74 = XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18(__this, L_73, NULL);
NullCheck(L_74);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_75;
L_75 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_74, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_76 = V_1;
NullCheck(L_75);
int32_t L_77;
L_77 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_75, L_76);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_78 = V_1;
return L_78;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportXmlSerializableMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportXmlSerializableMapping_mBD9C080184E58C2498B8E40D43583816EAAF7974 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___root1, String_t* ___defaultNamespace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_2 = __this->___helper_3;
Type_t* L_3 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_5 = ___root1;
String_t* L_6 = ___defaultNamespace2;
String_t* L_7;
L_7 = XmlReflectionImporter_GetTypeNamespace_mB939AFFEB997286B64FC2182EB63366A84ED174C(__this, L_4, L_5, L_6, NULL);
NullCheck(L_2);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8;
L_8 = ReflectionHelper_GetRegisteredClrType_m05E15F35772167A902933F5688840FADE08C74AF(L_2, L_3, L_7, NULL);
V_1 = L_8;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = V_1;
if (!L_9)
{
goto IL_0022;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_1;
return L_10;
}
IL_0022:
{
bool L_11 = __this->___allowPrivateTypes_6;
if (L_11)
{
goto IL_0031;
}
}
{
Type_t* L_12 = V_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m8DB0250A0957686514A12FAF12AD4AC695F4BE25(L_12, (bool)0, NULL);
}
IL_0031:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_13 = ___typeData0;
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_14 = ___root1;
String_t* L_15 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16;
L_16 = XmlReflectionImporter_CreateTypeMapping_mB117C9730285B8B01522A727DD86C2CCC067E03E(__this, L_13, L_14, (String_t*)NULL, L_15, NULL);
V_1 = L_16;
ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* L_17 = __this->___helper_3;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_1;
Type_t* L_19 = V_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = V_1;
NullCheck(L_20);
String_t* L_21;
L_21 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_20, NULL);
NullCheck(L_17);
ReflectionHelper_RegisterClrType_mD0C72D14AAB753E89AF6E0B99BC9F53FD8ED1188(L_17, L_18, L_19, L_21, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_22 = V_1;
return L_22;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::ImportIncludedTypes(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_ImportIncludedTypes_m14EFED9CB15D6C7C5F828BE68F77E59D0710EF3E (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, String_t* ___defaultNamespace1, 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*)&XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5* V_0 = NULL;
int32_t V_1 = 0;
Type_t* V_2 = NULL;
{
Type_t* L_0 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
NullCheck(L_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3;
L_3 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_2, (bool)0);
V_0 = ((XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5*)Castclass((RuntimeObject*)L_3, XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_0032;
}
IL_001b:
{
XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
Type_t* L_8;
L_8 = XmlIncludeAttribute_get_Type_m933A769AE46F8B8FE3612605D6B0E890AE3A1EDD_inline(L_7, NULL);
V_2 = L_8;
Type_t* L_9 = V_2;
String_t* L_10 = ___defaultNamespace1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11;
L_11 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_9, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_10, NULL);
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0032:
{
int32_t L_13 = V_1;
XmlIncludeAttributeU5BU5D_tB14D4DE2406E794A5598000D735CBF472E429FF5* L_14 = V_0;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
{
goto IL_001b;
}
}
{
return;
}
}
// System.Collections.Generic.List`1<System.Xml.Serialization.XmlReflectionMember> System.Xml.Serialization.XmlReflectionImporter::GetReflectionMembers(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* XmlReflectionImporter_GetReflectionMembers_mD6792F16E5A5CB03415A976ED3EAD616E5DA9256 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4A66450CDA32222827A7E731E42D9B9D85CB8324_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_1 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_2 = NULL;
int32_t V_3 = 0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_4 = NULL;
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* V_8 = NULL;
int32_t V_9 = 0;
FieldInfo_t* V_10 = NULL;
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* V_11 = NULL;
PropertyInfo_t* V_12 = NULL;
RuntimeObject* V_13 = NULL;
Type_t* V_14 = NULL;
FieldInfo_t* V_15 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* V_16 = NULL;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* V_17 = NULL;
PropertyInfo_t* V_18 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* V_19 = NULL;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* V_20 = NULL;
RuntimeObject* V_21 = NULL;
{
Type_t* L_0 = ___type0;
V_0 = L_0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_1);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_1, NULL);
V_1 = L_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = V_1;
Type_t* L_3 = V_0;
NullCheck(L_2);
int32_t L_4;
L_4 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
goto IL_0021;
}
IL_0012:
{
Type_t* L_5 = V_0;
NullCheck(L_5);
Type_t* L_6;
L_6 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_5);
V_0 = L_6;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = V_1;
Type_t* L_8 = V_0;
NullCheck(L_7);
VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(39 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_7, 0, L_8);
}
IL_0021:
{
Type_t* L_9 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_11;
L_11 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_10, NULL);
bool L_12;
L_12 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_9, L_11, NULL);
if (L_12)
{
goto IL_0012;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_13);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_13, NULL);
V_2 = L_13;
Type_t* L_14 = ___type0;
NullCheck(L_14);
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_15;
L_15 = VirtualFuncInvoker1< FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8*, int32_t >::Invoke(89 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_14, ((int32_t)20));
V_0 = (Type_t*)NULL;
V_3 = 0;
V_8 = L_15;
V_9 = 0;
goto IL_007f;
}
IL_004c:
{
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_16 = V_8;
int32_t L_17 = V_9;
NullCheck(L_16);
int32_t L_18 = L_17;
FieldInfo_t* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_10 = L_19;
Type_t* L_20 = V_0;
FieldInfo_t* L_21 = V_10;
NullCheck(L_21);
Type_t* L_22;
L_22 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_21);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_23;
L_23 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_20, L_22, NULL);
if (!L_23)
{
goto IL_006c;
}
}
{
FieldInfo_t* L_24 = V_10;
NullCheck(L_24);
Type_t* L_25;
L_25 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_24);
V_0 = L_25;
V_3 = 0;
}
IL_006c:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = V_2;
int32_t L_27 = V_3;
int32_t L_28 = L_27;
V_3 = ((int32_t)il2cpp_codegen_add(L_28, 1));
FieldInfo_t* L_29 = V_10;
NullCheck(L_26);
VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(39 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_26, L_28, L_29);
int32_t L_30 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_007f:
{
int32_t L_31 = V_9;
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_32 = V_8;
NullCheck(L_32);
if ((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_004c;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_33 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_33);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_33, NULL);
V_4 = L_33;
Type_t* L_34 = ___type0;
NullCheck(L_34);
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_35;
L_35 = VirtualFuncInvoker1< PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7*, int32_t >::Invoke(111 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_34, ((int32_t)20));
V_0 = (Type_t*)NULL;
V_3 = 0;
V_11 = L_35;
V_9 = 0;
goto IL_00e8;
}
IL_00a1:
{
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_36 = V_11;
int32_t L_37 = V_9;
NullCheck(L_36);
int32_t L_38 = L_37;
PropertyInfo_t* L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
V_12 = L_39;
Type_t* L_40 = V_0;
PropertyInfo_t* L_41 = V_12;
NullCheck(L_41);
Type_t* L_42;
L_42 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_41);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_43;
L_43 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_40, L_42, NULL);
if (!L_43)
{
goto IL_00c1;
}
}
{
PropertyInfo_t* L_44 = V_12;
NullCheck(L_44);
Type_t* L_45;
L_45 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_44);
V_0 = L_45;
V_3 = 0;
}
IL_00c1:
{
PropertyInfo_t* L_46 = V_12;
NullCheck(L_46);
bool L_47;
L_47 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_46);
if (!L_47)
{
goto IL_00e2;
}
}
{
PropertyInfo_t* L_48 = V_12;
NullCheck(L_48);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_49;
L_49 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_48);
NullCheck(L_49);
if ((((RuntimeArray*)L_49)->max_length))
{
goto IL_00e2;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_50 = V_4;
int32_t L_51 = V_3;
int32_t L_52 = L_51;
V_3 = ((int32_t)il2cpp_codegen_add(L_52, 1));
PropertyInfo_t* L_53 = V_12;
NullCheck(L_50);
VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(39 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_50, L_52, L_53);
}
IL_00e2:
{
int32_t L_54 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_54, 1));
}
IL_00e8:
{
int32_t L_55 = V_9;
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_56 = V_11;
NullCheck(L_56);
if ((((int32_t)L_55) < ((int32_t)((int32_t)(((RuntimeArray*)L_56)->max_length)))))
{
goto IL_00a1;
}
}
{
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_57 = (List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472*)il2cpp_codegen_object_new(List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472_il2cpp_TypeInfo_var);
NullCheck(L_57);
List_1__ctor_m4A66450CDA32222827A7E731E42D9B9D85CB8324(L_57, List_1__ctor_m4A66450CDA32222827A7E731E42D9B9D85CB8324_RuntimeMethod_var);
V_5 = L_57;
V_6 = 0;
V_7 = 0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_58 = V_1;
NullCheck(L_58);
RuntimeObject* L_59;
L_59 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_58);
V_13 = L_59;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_02c4:
{// begin finally (depth: 1)
{
RuntimeObject* L_60 = V_13;
V_21 = ((RuntimeObject*)IsInst((RuntimeObject*)L_60, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_61 = V_21;
if (!L_61)
{
goto IL_02d8;
}
}
{
RuntimeObject* L_62 = V_21;
NullCheck(L_62);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_62);
}
IL_02d8:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_02b6_1;
}
IL_010a_1:
{
RuntimeObject* L_63 = V_13;
NullCheck(L_63);
RuntimeObject* L_64;
L_64 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_63);
V_14 = ((Type_t*)CastclassClass((RuntimeObject*)L_64, Type_t_il2cpp_TypeInfo_var));
goto IL_019e_1;
}
IL_011d_1:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_65 = V_2;
int32_t L_66 = V_6;
NullCheck(L_65);
RuntimeObject* L_67;
L_67 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_65, L_66);
V_15 = ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_67, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_68 = V_15;
NullCheck(L_68);
Type_t* L_69;
L_69 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_68);
Type_t* L_70 = V_14;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_71;
L_71 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_69, L_70, NULL);
if (!L_71)
{
goto IL_02a8_1;
}
}
{
int32_t L_72 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_72, 1));
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_73 = __this->___attributeOverrides_1;
Type_t* L_74 = ___type0;
FieldInfo_t* L_75 = V_15;
NullCheck(L_75);
String_t* L_76;
L_76 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_75);
NullCheck(L_73);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_77;
L_77 = XmlAttributeOverrides_get_Item_m8F3874210220952C0D1ED4D9D3D69513D1C96C6E(L_73, L_74, L_76, NULL);
V_16 = L_77;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_78 = V_16;
if (L_78)
{
goto IL_0167_1;
}
}
{
FieldInfo_t* L_79 = V_15;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_80 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)il2cpp_codegen_object_new(XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
NullCheck(L_80);
XmlAttributes__ctor_mFEEAECF61BFB18BAA8D5767AF38A2D51D7CBC15F(L_80, L_79, NULL);
V_16 = L_80;
}
IL_0167_1:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_81 = V_16;
NullCheck(L_81);
bool L_82;
L_82 = XmlAttributes_get_XmlIgnore_m817F5C7648E0CADEBE452A1EF3E59A0D07A80627_inline(L_81, NULL);
if (L_82)
{
goto IL_019e_1;
}
}
{
FieldInfo_t* L_83 = V_15;
NullCheck(L_83);
String_t* L_84;
L_84 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_83);
FieldInfo_t* L_85 = V_15;
NullCheck(L_85);
Type_t* L_86;
L_86 = VirtualFuncInvoker0< Type_t* >::Invoke(17 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_85);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_87 = V_16;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_88 = (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A*)il2cpp_codegen_object_new(XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A_il2cpp_TypeInfo_var);
NullCheck(L_88);
XmlReflectionMember__ctor_m7B83DEED7CE7FDD74528D8863C8243F70D6DE355(L_88, L_84, L_86, L_87, NULL);
V_17 = L_88;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_89 = V_17;
FieldInfo_t* L_90 = V_15;
NullCheck(L_90);
Type_t* L_91;
L_91 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_90);
NullCheck(L_89);
XmlReflectionMember_set_DeclaringType_m1FEBB9DF4BDFE905A76D4E297BE992C89B39B1A8_inline(L_89, L_91, NULL);
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_92 = V_5;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_93 = V_17;
NullCheck(L_92);
List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_inline(L_92, L_93, List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_RuntimeMethod_var);
}
IL_019e_1:
{
int32_t L_94 = V_6;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_95 = V_2;
NullCheck(L_95);
int32_t L_96;
L_96 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_95);
if ((((int32_t)L_94) < ((int32_t)L_96)))
{
goto IL_011d_1;
}
}
{
goto IL_02a8_1;
}
IL_01b0_1:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_97 = V_4;
int32_t L_98 = V_7;
NullCheck(L_97);
RuntimeObject* L_99;
L_99 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_97, L_98);
V_18 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_99, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_100 = V_18;
NullCheck(L_100);
Type_t* L_101;
L_101 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_100);
Type_t* L_102 = V_14;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_103;
L_103 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_101, L_102, NULL);
if (!L_103)
{
goto IL_02b6_1;
}
}
{
int32_t L_104 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_104, 1));
XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_105 = __this->___attributeOverrides_1;
Type_t* L_106 = ___type0;
PropertyInfo_t* L_107 = V_18;
NullCheck(L_107);
String_t* L_108;
L_108 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_107);
NullCheck(L_105);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_109;
L_109 = XmlAttributeOverrides_get_Item_m8F3874210220952C0D1ED4D9D3D69513D1C96C6E(L_105, L_106, L_108, NULL);
V_19 = L_109;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_110 = V_19;
if (L_110)
{
goto IL_01fb_1;
}
}
{
PropertyInfo_t* L_111 = V_18;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_112 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)il2cpp_codegen_object_new(XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
NullCheck(L_112);
XmlAttributes__ctor_mFEEAECF61BFB18BAA8D5767AF38A2D51D7CBC15F(L_112, L_111, NULL);
V_19 = L_112;
}
IL_01fb_1:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_113 = V_19;
NullCheck(L_113);
bool L_114;
L_114 = XmlAttributes_get_XmlIgnore_m817F5C7648E0CADEBE452A1EF3E59A0D07A80627_inline(L_113, NULL);
if (L_114)
{
goto IL_02a8_1;
}
}
{
PropertyInfo_t* L_115 = V_18;
NullCheck(L_115);
bool L_116;
L_116 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_115);
if (L_116)
{
goto IL_027a_1;
}
}
{
PropertyInfo_t* L_117 = V_18;
NullCheck(L_117);
Type_t* L_118;
L_118 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_117);
NullCheck(L_118);
bool L_119;
L_119 = Type_get_IsInterface_m484A7D9321E72758EABE7F36AE266EB0905957EC(L_118, NULL);
if (!L_119)
{
goto IL_0236_1;
}
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_120 = { reinterpret_cast<intptr_t> (IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_121;
L_121 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_120, NULL);
PropertyInfo_t* L_122 = V_18;
NullCheck(L_122);
Type_t* L_123;
L_123 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_122);
NullCheck(L_121);
bool L_124;
L_124 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_121, L_123);
if (L_124)
{
goto IL_02a8_1;
}
}
IL_0236_1:
{
PropertyInfo_t* L_125 = V_18;
NullCheck(L_125);
Type_t* L_126;
L_126 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_125);
NullCheck(L_126);
bool L_127;
L_127 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_126);
if (!L_127)
{
goto IL_0258_1;
}
}
{
PropertyInfo_t* L_128 = V_18;
NullCheck(L_128);
Type_t* L_129;
L_129 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_128);
il2cpp_codegen_runtime_class_init_inline(TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_il2cpp_TypeInfo_var);
Type_t* L_130;
L_130 = TypeData_GetGenericListItemType_m1ED288DADF0F3AC6BCCE64BFFC08407E3A216822(L_129, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_131;
L_131 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_130, (Type_t*)NULL, NULL);
if (L_131)
{
goto IL_02a8_1;
}
}
IL_0258_1:
{
PropertyInfo_t* L_132 = V_18;
NullCheck(L_132);
Type_t* L_133;
L_133 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_132);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_134;
L_134 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_133, NULL);
NullCheck(L_134);
int32_t L_135;
L_135 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_134, NULL);
if ((!(((uint32_t)L_135) == ((uint32_t)3))))
{
goto IL_02a8_1;
}
}
{
PropertyInfo_t* L_136 = V_18;
NullCheck(L_136);
Type_t* L_137;
L_137 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_136);
NullCheck(L_137);
bool L_138;
L_138 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_137, NULL);
if (L_138)
{
goto IL_02a8_1;
}
}
IL_027a_1:
{
PropertyInfo_t* L_139 = V_18;
NullCheck(L_139);
String_t* L_140;
L_140 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_139);
PropertyInfo_t* L_141 = V_18;
NullCheck(L_141);
Type_t* L_142;
L_142 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_141);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_143 = V_19;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_144 = (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A*)il2cpp_codegen_object_new(XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A_il2cpp_TypeInfo_var);
NullCheck(L_144);
XmlReflectionMember__ctor_m7B83DEED7CE7FDD74528D8863C8243F70D6DE355(L_144, L_140, L_142, L_143, NULL);
V_20 = L_144;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_145 = V_20;
PropertyInfo_t* L_146 = V_18;
NullCheck(L_146);
Type_t* L_147;
L_147 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_146);
NullCheck(L_145);
XmlReflectionMember_set_DeclaringType_m1FEBB9DF4BDFE905A76D4E297BE992C89B39B1A8_inline(L_145, L_147, NULL);
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_148 = V_5;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_149 = V_20;
NullCheck(L_148);
List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_inline(L_148, L_149, List_1_Add_mE42853650C380A1F9A8E4ABE752EA8050EF84C26_RuntimeMethod_var);
}
IL_02a8_1:
{
int32_t L_150 = V_7;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_151 = V_4;
NullCheck(L_151);
int32_t L_152;
L_152 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_151);
if ((((int32_t)L_150) < ((int32_t)L_152)))
{
goto IL_01b0_1;
}
}
IL_02b6_1:
{
RuntimeObject* L_153 = V_13;
NullCheck(L_153);
bool L_154;
L_154 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_153);
if (L_154)
{
goto IL_010a_1;
}
}
{
goto IL_02d9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_02d9:
{
List_1_t935DFC399F3035CE8ADB557E0DC325268F81E472* L_155 = V_5;
return L_155;
}
}
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlReflectionImporter::CreateMapMember(System.Type,System.Xml.Serialization.XmlReflectionMember,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___declaringType0, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___rmember1, String_t* ___defaultNamespace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A4DB5A48002D176FFD5642CCEECF519B68D44A0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA363E5B14212F70344F9E4B42F6140A092D0E343);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_0 = NULL;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* V_1 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_2 = NULL;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* V_3 = NULL;
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* V_4 = NULL;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* V_5 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_6 = NULL;
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* V_7 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B46_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B46_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B45_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B45_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B47_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B47_1 = NULL;
String_t* G_B48_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B48_1 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B48_2 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B50_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B50_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B49_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B49_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B51_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B51_1 = NULL;
String_t* G_B52_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B52_1 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B52_2 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B54_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B54_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B53_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B53_1 = NULL;
int32_t G_B55_0 = 0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B55_1 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B55_2 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B57_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B57_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B56_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B56_1 = NULL;
int32_t G_B58_0 = 0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B58_1 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B58_2 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B60_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B60_1 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B59_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B59_1 = NULL;
int32_t G_B61_0 = 0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B61_1 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B61_2 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B64_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B62_0 = NULL;
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* G_B63_0 = NULL;
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_0 = ___rmember1;
NullCheck(L_0);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_1;
L_1 = XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952(L_0, NULL);
V_1 = L_1;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_2 = ___rmember1;
NullCheck(L_2);
Type_t* L_3;
L_3 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4;
L_4 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_3, NULL);
V_2 = L_4;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_5 = V_1;
NullCheck(L_5);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_6;
L_6 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_5, NULL);
if (!L_6)
{
goto IL_0075;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_7 = V_1;
NullCheck(L_7);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_8;
L_8 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_7, NULL);
NullCheck(L_8);
String_t* L_9;
L_9 = XmlArrayAttribute_get_Namespace_m37B65FCCE7A60AEADBF394DB6210DA1CC8A91CF8_inline(L_8, NULL);
if (!L_9)
{
goto IL_0041;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_10 = V_1;
NullCheck(L_10);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_11;
L_11 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_10, NULL);
NullCheck(L_11);
int32_t L_12;
L_12 = XmlArrayAttribute_get_Form_mD5222A61AE3D5908142D9DBF1A5BE0986466F008_inline(L_11, NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_0041;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_13 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_13);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral349EE59EA43C1E5D49630218CC7F73B3AC055344)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var)));
}
IL_0041:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14 = V_2;
NullCheck(L_14);
int32_t L_15;
L_15 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_14, NULL);
if ((((int32_t)L_15) == ((int32_t)3)))
{
goto IL_0075;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_16 = V_2;
NullCheck(L_16);
int32_t L_17;
L_17 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_16, NULL);
if ((!(((uint32_t)L_17) == ((uint32_t)1))))
{
goto IL_006a;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_18 = V_2;
NullCheck(L_18);
Type_t* L_19;
L_19 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_18, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_21;
L_21 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_20, NULL);
bool L_22;
L_22 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_19, L_21, NULL);
if (L_22)
{
goto IL_0075;
}
}
IL_006a:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_23 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_23);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE25534321226D9693D71A59D74F97A2E7C087499)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var)));
}
IL_0075:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_24 = V_1;
NullCheck(L_24);
XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* L_25;
L_25 = XmlAttributes_get_XmlAnyAttribute_m3116C8A13795C5AEB267B6C78EE406EB7F1C79D7_inline(L_24, NULL);
if (!L_25)
{
goto IL_00c1;
}
}
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_26 = ___rmember1;
NullCheck(L_26);
Type_t* L_27;
L_27 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_26, NULL);
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_27);
bool L_29;
L_29 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_28, _stringLiteralA363E5B14212F70344F9E4B42F6140A092D0E343, NULL);
if (L_29)
{
goto IL_00ab;
}
}
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_30 = ___rmember1;
NullCheck(L_30);
Type_t* L_31;
L_31 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_30, NULL);
NullCheck(L_31);
String_t* L_32;
L_32 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_31);
bool L_33;
L_33 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_32, _stringLiteral7A4DB5A48002D176FFD5642CCEECF519B68D44A0, NULL);
if (!L_33)
{
goto IL_00b6;
}
}
IL_00ab:
{
XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_34 = (XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1*)il2cpp_codegen_object_new(XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var);
NullCheck(L_34);
XmlTypeMapMemberAnyAttribute__ctor_m55E6BD862DFD1709C359931225EFCC70AF9F8C35(L_34, NULL);
V_0 = L_34;
goto IL_0462;
}
IL_00b6:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_35 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_35);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4074375C28F170F48C088A574F61A1A98069292)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var)));
}
IL_00c1:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_36 = V_1;
NullCheck(L_36);
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_37;
L_37 = XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline(L_36, NULL);
if (!L_37)
{
goto IL_00f4;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_38 = V_1;
NullCheck(L_38);
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_39;
L_39 = XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline(L_38, NULL);
NullCheck(L_39);
int32_t L_40;
L_40 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_39, NULL);
if ((((int32_t)L_40) <= ((int32_t)0)))
{
goto IL_00f4;
}
}
{
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_41 = (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950*)il2cpp_codegen_object_new(XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var);
NullCheck(L_41);
XmlTypeMapMemberAnyElement__ctor_m66FD3FF1033A6C41F21CA1677897AA554794E750(L_41, NULL);
V_3 = L_41;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_42 = V_3;
String_t* L_43 = ___defaultNamespace2;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_44 = ___rmember1;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_45 = V_3;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_46 = V_1;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_47;
L_47 = XmlReflectionImporter_ImportAnyElementInfo_m26B24C22E7A373EF178E830CFF15E0E04EA0155A(__this, L_43, L_44, L_45, L_46, NULL);
NullCheck(L_42);
XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038_inline(L_42, L_47, NULL);
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_48 = V_3;
V_0 = L_48;
goto IL_0462;
}
IL_00f4:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_49 = V_1;
NullCheck(L_49);
bool L_50;
L_50 = XmlAttributes_get_Xmlns_m470230B52FC047B9820991B287C46CFACAACBB33_inline(L_49, NULL);
if (!L_50)
{
goto IL_0107;
}
}
{
XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_51 = (XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112*)il2cpp_codegen_object_new(XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var);
NullCheck(L_51);
XmlTypeMapMemberNamespaces__ctor_m655334756FB0C4721F7AB415FF4C7D25E2A7863B(L_51, NULL);
V_0 = L_51;
goto IL_0462;
}
IL_0107:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_52 = V_1;
NullCheck(L_52);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_53;
L_53 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_52, NULL);
if (!L_53)
{
goto IL_0248;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_54 = V_1;
NullCheck(L_54);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_55;
L_55 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_54, NULL);
if (!L_55)
{
goto IL_0133;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_56 = V_1;
NullCheck(L_56);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_57;
L_57 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_56, NULL);
NullCheck(L_57);
int32_t L_58;
L_58 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_57, NULL);
if ((((int32_t)L_58) <= ((int32_t)0)))
{
goto IL_0133;
}
}
{
Exception_t* L_59 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_59);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_59, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6319A0ADA278E8CB5B493B705A3E0FAA420303CC)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_59, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var)));
}
IL_0133:
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_60 = (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)il2cpp_codegen_object_new(XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var);
NullCheck(L_60);
XmlTypeMapMemberAttribute__ctor_m114811B0B3047CF56B5C834D9B72D64CE7DA45AD(L_60, NULL);
V_4 = L_60;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_61 = V_1;
NullCheck(L_61);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_62;
L_62 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_61, NULL);
NullCheck(L_62);
String_t* L_63;
L_63 = XmlAttributeAttribute_get_AttributeName_mD12BFE7D2970617D6BAEA2C7726BFCC1E78043B9(L_62, NULL);
NullCheck(L_63);
int32_t L_64;
L_64 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_63, NULL);
if (L_64)
{
goto IL_015b;
}
}
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_65 = V_4;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_66 = ___rmember1;
NullCheck(L_66);
String_t* L_67;
L_67 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_66, NULL);
NullCheck(L_65);
XmlTypeMapMemberAttribute_set_AttributeName_m9FA871900139C9A680D39F3FA1D64593EA0A8A37_inline(L_65, L_67, NULL);
goto IL_016d;
}
IL_015b:
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_68 = V_4;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_69 = V_1;
NullCheck(L_69);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_70;
L_70 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_69, NULL);
NullCheck(L_70);
String_t* L_71;
L_71 = XmlAttributeAttribute_get_AttributeName_mD12BFE7D2970617D6BAEA2C7726BFCC1E78043B9(L_70, NULL);
NullCheck(L_68);
XmlTypeMapMemberAttribute_set_AttributeName_m9FA871900139C9A680D39F3FA1D64593EA0A8A37_inline(L_68, L_71, NULL);
}
IL_016d:
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_72 = V_4;
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_73 = V_4;
NullCheck(L_73);
String_t* L_74;
L_74 = XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline(L_73, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_75;
L_75 = XmlConvert_EncodeName_m42879CBB7E33F534E7BA93890E4A830C5E5C6392(L_74, NULL);
NullCheck(L_72);
XmlTypeMapMemberAttribute_set_AttributeName_m9FA871900139C9A680D39F3FA1D64593EA0A8A37_inline(L_72, L_75, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_76 = V_2;
NullCheck(L_76);
bool L_77;
L_77 = TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749(L_76, NULL);
if (!L_77)
{
goto IL_019d;
}
}
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_78 = V_4;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_79 = V_2;
NullCheck(L_79);
Type_t* L_80;
L_80 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_79, NULL);
String_t* L_81 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_82;
L_82 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_80, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_81, NULL);
NullCheck(L_78);
XmlTypeMapMemberAttribute_set_MappedType_mA7E95DC2D885930465A715589EF224E64286F518_inline(L_78, L_82, NULL);
}
IL_019d:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_83 = V_1;
NullCheck(L_83);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_84;
L_84 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_83, NULL);
NullCheck(L_84);
String_t* L_85;
L_85 = XmlAttributeAttribute_get_Namespace_m66DDB72831548F3B23A4A68E11826303CEE42835_inline(L_84, NULL);
if (!L_85)
{
goto IL_01f2;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_86 = V_1;
NullCheck(L_86);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_87;
L_87 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_86, NULL);
NullCheck(L_87);
String_t* L_88;
L_88 = XmlAttributeAttribute_get_Namespace_m66DDB72831548F3B23A4A68E11826303CEE42835_inline(L_87, NULL);
String_t* L_89 = ___defaultNamespace2;
bool L_90;
L_90 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_88, L_89, NULL);
if (!L_90)
{
goto IL_01f2;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_91 = V_1;
NullCheck(L_91);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_92;
L_92 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_91, NULL);
NullCheck(L_92);
int32_t L_93;
L_93 = XmlAttributeAttribute_get_Form_m49A9D062DB2C8CED21041D3FBF941A7C3A4E06BD_inline(L_92, NULL);
if ((!(((uint32_t)L_93) == ((uint32_t)2))))
{
goto IL_01d6;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_94 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_94);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_94, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral60F85EA97812A18CDB5BD580B7A841E17A25A794)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_94, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var)));
}
IL_01d6:
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_95 = V_4;
NullCheck(L_95);
XmlTypeMapMemberAttribute_set_Form_m060BDBE9694B862C8E46DCEB5CAD8F6C52E9691B_inline(L_95, 1, NULL);
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_96 = V_4;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_97 = V_1;
NullCheck(L_97);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_98;
L_98 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_97, NULL);
NullCheck(L_98);
String_t* L_99;
L_99 = XmlAttributeAttribute_get_Namespace_m66DDB72831548F3B23A4A68E11826303CEE42835_inline(L_98, NULL);
NullCheck(L_96);
XmlTypeMapMemberAttribute_set_Namespace_m75CC38F536B9F3D71532845F4D741A6A37489277_inline(L_96, L_99, NULL);
goto IL_0228;
}
IL_01f2:
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_100 = V_4;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_101 = V_1;
NullCheck(L_101);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_102;
L_102 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_101, NULL);
NullCheck(L_102);
int32_t L_103;
L_103 = XmlAttributeAttribute_get_Form_m49A9D062DB2C8CED21041D3FBF941A7C3A4E06BD_inline(L_102, NULL);
NullCheck(L_100);
XmlTypeMapMemberAttribute_set_Form_m060BDBE9694B862C8E46DCEB5CAD8F6C52E9691B_inline(L_100, L_103, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_104 = V_1;
NullCheck(L_104);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_105;
L_105 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_104, NULL);
NullCheck(L_105);
int32_t L_106;
L_106 = XmlAttributeAttribute_get_Form_m49A9D062DB2C8CED21041D3FBF941A7C3A4E06BD_inline(L_105, NULL);
if ((!(((uint32_t)L_106) == ((uint32_t)1))))
{
goto IL_021c;
}
}
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_107 = V_4;
String_t* L_108 = ___defaultNamespace2;
NullCheck(L_107);
XmlTypeMapMemberAttribute_set_Namespace_m75CC38F536B9F3D71532845F4D741A6A37489277_inline(L_107, L_108, NULL);
goto IL_0228;
}
IL_021c:
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_109 = V_4;
NullCheck(L_109);
XmlTypeMapMemberAttribute_set_Namespace_m75CC38F536B9F3D71532845F4D741A6A37489277_inline(L_109, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
}
IL_0228:
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_110 = ___rmember1;
NullCheck(L_110);
Type_t* L_111;
L_111 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_110, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_112 = V_1;
NullCheck(L_112);
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_113;
L_113 = XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline(L_112, NULL);
NullCheck(L_113);
String_t* L_114;
L_114 = XmlAttributeAttribute_get_DataType_m0F9734D465582A44A3DF13505EBF817307233310(L_113, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_115;
L_115 = TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8(L_111, L_114, (bool)0, NULL);
V_2 = L_115;
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_116 = V_4;
V_0 = L_116;
goto IL_0462;
}
IL_0248:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_117 = V_2;
NullCheck(L_117);
int32_t L_118;
L_118 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_117, NULL);
if ((!(((uint32_t)L_118) == ((uint32_t)3))))
{
goto IL_0435;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_119 = V_1;
NullCheck(L_119);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_120;
L_120 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_119, NULL);
NullCheck(L_120);
int32_t L_121;
L_121 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_120, NULL);
if ((((int32_t)L_121) > ((int32_t)1)))
{
goto IL_0296;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_122 = V_1;
NullCheck(L_122);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_123;
L_123 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_122, NULL);
NullCheck(L_123);
int32_t L_124;
L_124 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_123, NULL);
if ((!(((uint32_t)L_124) == ((uint32_t)1))))
{
goto IL_028e;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_125 = V_1;
NullCheck(L_125);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_126;
L_126 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_125, NULL);
NullCheck(L_126);
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_127;
L_127 = XmlElementAttributes_get_Item_m724D3FD8DE8930D19D825A2B81348C3EAE41630D(L_126, 0, NULL);
NullCheck(L_127);
Type_t* L_128;
L_128 = XmlElementAttribute_get_Type_m3B355841D7F13F4CD84F8C3ED4D28917BB170CCB_inline(L_127, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_129 = V_2;
NullCheck(L_129);
Type_t* L_130;
L_130 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_129, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_131;
L_131 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_128, L_130, NULL);
if (L_131)
{
goto IL_0296;
}
}
IL_028e:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_132 = V_1;
NullCheck(L_132);
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_133;
L_133 = XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline(L_132, NULL);
if (!L_133)
{
goto IL_0312;
}
}
IL_0296:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_134 = V_1;
NullCheck(L_134);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_135;
L_135 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_134, NULL);
if (!L_135)
{
goto IL_02a9;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_136 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_136);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_136, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5607081EBC5A38ABEBFBF4E705DE9D9215154E72)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_136, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_CreateMapMember_m079162A1618129963465EF4D1B1F734F11AEF41D_RuntimeMethod_var)));
}
IL_02a9:
{
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_137 = (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)il2cpp_codegen_object_new(XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var);
NullCheck(L_137);
XmlTypeMapMemberFlatList__ctor_m184FE28F5A2FAA15F1BFBC27F3A2904497E4C8B7(L_137, NULL);
V_5 = L_137;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_138 = V_5;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_139 = (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)il2cpp_codegen_object_new(ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var);
NullCheck(L_139);
ListMap__ctor_m89E81F66CB6B669B50E293853AAF98AD4DED0F67(L_139, NULL);
NullCheck(L_138);
XmlTypeMapMemberFlatList_set_ListMap_mFEBE950843FA798DFC8628E296696296C953071E_inline(L_138, L_139, NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_140 = V_5;
NullCheck(L_140);
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_141;
L_141 = XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline(L_140, NULL);
Type_t* L_142 = ___declaringType0;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_143 = ___rmember1;
NullCheck(L_143);
String_t* L_144;
L_144 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_143, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_145;
L_145 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_144, NULL);
String_t* L_146 = ___defaultNamespace2;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_147 = V_2;
NullCheck(L_147);
Type_t* L_148;
L_148 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_147, NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_149 = V_5;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_150 = V_1;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_151;
L_151 = XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D(__this, L_142, L_145, L_146, L_148, L_149, L_150, NULL);
NullCheck(L_141);
ListMap_set_ItemInfo_mD0E132CC2807675C9308B26F69EA38EC9EB3EF11_inline(L_141, L_151, NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_152 = V_5;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_153 = V_5;
NullCheck(L_153);
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_154;
L_154 = XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline(L_153, NULL);
NullCheck(L_154);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_155;
L_155 = ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline(L_154, NULL);
NullCheck(L_152);
XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038_inline(L_152, L_155, NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_156 = V_5;
NullCheck(L_156);
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_157;
L_157 = XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline(L_156, NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_158 = V_5;
NullCheck(L_158);
String_t* L_159;
L_159 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_158, NULL);
NullCheck(L_157);
ListMap_set_ChoiceMember_m25EB1F93541895E0647E420B7BF9C8C7194621D6_inline(L_157, L_159, NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_160 = V_5;
V_0 = L_160;
goto IL_0462;
}
IL_0312:
{
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* L_161 = (XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E*)il2cpp_codegen_object_new(XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_il2cpp_TypeInfo_var);
NullCheck(L_161);
XmlTypeMapMemberList__ctor_mBD734CDCEE34AF3580EF194A4AB86CDBFD5F47D7(L_161, NULL);
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* L_162 = L_161;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_163 = (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78*)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
NullCheck(L_163);
XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B(L_163, NULL);
NullCheck(L_162);
XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038_inline(L_162, L_163, NULL);
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* L_164 = L_162;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_165 = V_2;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_166 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_166);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_166, L_164, L_165, NULL);
V_6 = L_166;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_167 = V_6;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_168 = V_1;
NullCheck(L_168);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_169;
L_169 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_168, NULL);
G_B45_0 = L_167;
G_B45_1 = L_164;
if (!L_169)
{
G_B46_0 = L_167;
G_B46_1 = L_164;
goto IL_0347;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_170 = V_1;
NullCheck(L_170);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_171;
L_171 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_170, NULL);
NullCheck(L_171);
String_t* L_172;
L_172 = XmlArrayAttribute_get_ElementName_mFDDFF359B711CC6348AD07853053BB37C405CDC2(L_171, NULL);
NullCheck(L_172);
int32_t L_173;
L_173 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_172, NULL);
G_B46_0 = G_B45_0;
G_B46_1 = G_B45_1;
if (L_173)
{
G_B47_0 = G_B45_0;
G_B47_1 = G_B45_1;
goto IL_034f;
}
}
IL_0347:
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_174 = ___rmember1;
NullCheck(L_174);
String_t* L_175;
L_175 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_174, NULL);
G_B48_0 = L_175;
G_B48_1 = G_B46_0;
G_B48_2 = G_B46_1;
goto IL_035a;
}
IL_034f:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_176 = V_1;
NullCheck(L_176);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_177;
L_177 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_176, NULL);
NullCheck(L_177);
String_t* L_178;
L_178 = XmlArrayAttribute_get_ElementName_mFDDFF359B711CC6348AD07853053BB37C405CDC2(L_177, NULL);
G_B48_0 = L_178;
G_B48_1 = G_B47_0;
G_B48_2 = G_B47_1;
}
IL_035a:
{
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_179;
L_179 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(G_B48_0, NULL);
NullCheck(G_B48_1);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(G_B48_1, L_179, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_180 = V_6;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_181 = V_1;
NullCheck(L_181);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_182;
L_182 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_181, NULL);
G_B49_0 = L_180;
G_B49_1 = G_B48_2;
if (!L_182)
{
G_B50_0 = L_180;
G_B50_1 = G_B48_2;
goto IL_037b;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_183 = V_1;
NullCheck(L_183);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_184;
L_184 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_183, NULL);
NullCheck(L_184);
String_t* L_185;
L_185 = XmlArrayAttribute_get_Namespace_m37B65FCCE7A60AEADBF394DB6210DA1CC8A91CF8_inline(L_184, NULL);
G_B50_0 = G_B49_0;
G_B50_1 = G_B49_1;
if (L_185)
{
G_B51_0 = G_B49_0;
G_B51_1 = G_B49_1;
goto IL_037e;
}
}
IL_037b:
{
String_t* L_186 = ___defaultNamespace2;
G_B52_0 = L_186;
G_B52_1 = G_B50_0;
G_B52_2 = G_B50_1;
goto IL_0389;
}
IL_037e:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_187 = V_1;
NullCheck(L_187);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_188;
L_188 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_187, NULL);
NullCheck(L_188);
String_t* L_189;
L_189 = XmlArrayAttribute_get_Namespace_m37B65FCCE7A60AEADBF394DB6210DA1CC8A91CF8_inline(L_188, NULL);
G_B52_0 = L_189;
G_B52_1 = G_B51_0;
G_B52_2 = G_B51_1;
}
IL_0389:
{
NullCheck(G_B52_1);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(G_B52_1, G_B52_0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_190 = V_6;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_191 = ___rmember1;
NullCheck(L_191);
Type_t* L_192;
L_192 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_191, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_193 = V_6;
NullCheck(L_193);
String_t* L_194;
L_194 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_193, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_195 = V_1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_196;
L_196 = XmlReflectionImporter_ImportListMapping_m2DE4BB63B5D578F38690F0CECD77C0E87268CEFC(__this, L_192, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_194, L_195, 0, NULL);
NullCheck(L_190);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_190, L_196, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_197 = V_6;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_198 = V_1;
NullCheck(L_198);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_199;
L_199 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_198, NULL);
G_B53_0 = L_197;
G_B53_1 = G_B52_2;
if (L_199)
{
G_B54_0 = L_197;
G_B54_1 = G_B52_2;
goto IL_03b8;
}
}
{
G_B55_0 = 0;
G_B55_1 = G_B53_0;
G_B55_2 = G_B53_1;
goto IL_03c3;
}
IL_03b8:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_200 = V_1;
NullCheck(L_200);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_201;
L_201 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_200, NULL);
NullCheck(L_201);
bool L_202;
L_202 = XmlArrayAttribute_get_IsNullable_m84FB7E08614BFAFE7C6D5B72F4E43CBA42583CFB_inline(L_201, NULL);
G_B55_0 = ((int32_t)(L_202));
G_B55_1 = G_B54_0;
G_B55_2 = G_B54_1;
}
IL_03c3:
{
NullCheck(G_B55_1);
XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F_inline(G_B55_1, (bool)G_B55_0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_203 = V_6;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_204 = V_1;
NullCheck(L_204);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_205;
L_205 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_204, NULL);
G_B56_0 = L_203;
G_B56_1 = G_B55_2;
if (L_205)
{
G_B57_0 = L_203;
G_B57_1 = G_B55_2;
goto IL_03d5;
}
}
{
G_B58_0 = 1;
G_B58_1 = G_B56_0;
G_B58_2 = G_B56_1;
goto IL_03e0;
}
IL_03d5:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_206 = V_1;
NullCheck(L_206);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_207;
L_207 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_206, NULL);
NullCheck(L_207);
int32_t L_208;
L_208 = XmlArrayAttribute_get_Form_mD5222A61AE3D5908142D9DBF1A5BE0986466F008_inline(L_207, NULL);
G_B58_0 = ((int32_t)(L_208));
G_B58_1 = G_B57_0;
G_B58_2 = G_B57_1;
}
IL_03e0:
{
NullCheck(G_B58_1);
XmlTypeMapElementInfo_set_Form_m404075D5C7B4E4CE0EC5ED46881D4D84C73E0102_inline(G_B58_1, G_B58_0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_209 = V_6;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_210 = V_1;
NullCheck(L_210);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_211;
L_211 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_210, NULL);
G_B59_0 = L_209;
G_B59_1 = G_B58_2;
if (L_211)
{
G_B60_0 = L_209;
G_B60_1 = G_B58_2;
goto IL_03f2;
}
}
{
G_B61_0 = (-1);
G_B61_1 = G_B59_0;
G_B61_2 = G_B59_1;
goto IL_03fd;
}
IL_03f2:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_212 = V_1;
NullCheck(L_212);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_213;
L_213 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_212, NULL);
NullCheck(L_213);
int32_t L_214;
L_214 = XmlArrayAttribute_get_Order_m82A05D0B48CDF77EEAC644B324916768C3DCC219_inline(L_213, NULL);
G_B61_0 = L_214;
G_B61_1 = G_B60_0;
G_B61_2 = G_B60_1;
}
IL_03fd:
{
NullCheck(G_B61_1);
XmlTypeMapElementInfo_set_ExplicitOrder_mD893A153D81289F4A8C4A429800FEDB81E3578B4_inline(G_B61_1, G_B61_0, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_215 = V_1;
NullCheck(L_215);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_216;
L_216 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_215, NULL);
G_B62_0 = G_B61_2;
if (!L_216)
{
G_B64_0 = G_B61_2;
goto IL_0424;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_217 = V_1;
NullCheck(L_217);
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_218;
L_218 = XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline(L_217, NULL);
NullCheck(L_218);
int32_t L_219;
L_219 = XmlArrayAttribute_get_Form_mD5222A61AE3D5908142D9DBF1A5BE0986466F008_inline(L_218, NULL);
G_B63_0 = G_B62_0;
if ((!(((uint32_t)L_219) == ((uint32_t)2))))
{
G_B64_0 = G_B62_0;
goto IL_0424;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_220 = V_6;
String_t* L_221 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_220);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(L_220, L_221, NULL);
G_B64_0 = G_B63_0;
}
IL_0424:
{
XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* L_222 = G_B64_0;
NullCheck(L_222);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_223;
L_223 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(L_222, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_224 = V_6;
NullCheck(L_223);
int32_t L_225;
L_225 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_223, L_224);
V_0 = L_222;
goto IL_0462;
}
IL_0435:
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_226 = (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)il2cpp_codegen_object_new(XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var);
NullCheck(L_226);
XmlTypeMapMemberElement__ctor_m1C521481C567615C591328B512832B144B153169(L_226, NULL);
V_7 = L_226;
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_227 = V_7;
Type_t* L_228 = ___declaringType0;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_229 = ___rmember1;
NullCheck(L_229);
String_t* L_230;
L_230 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_229, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_231;
L_231 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_230, NULL);
String_t* L_232 = ___defaultNamespace2;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_233 = ___rmember1;
NullCheck(L_233);
Type_t* L_234;
L_234 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_233, NULL);
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_235 = V_7;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_236 = V_1;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_237;
L_237 = XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D(__this, L_228, L_231, L_232, L_234, L_235, L_236, NULL);
NullCheck(L_227);
XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038_inline(L_227, L_237, NULL);
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_238 = V_7;
V_0 = L_238;
}
IL_0462:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_239 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_240 = V_2;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_241 = V_1;
NullCheck(L_241);
RuntimeObject* L_242;
L_242 = XmlAttributes_get_XmlDefaultValue_m24022111D30B964CF2DDE2EC6ACC870DB4BA7ED1_inline(L_241, NULL);
RuntimeObject* L_243;
L_243 = XmlReflectionImporter_GetDefaultValue_m9AC659BFACAF9F4E2ED88A32F9B0622C5FBACDA8(__this, L_240, L_242, NULL);
NullCheck(L_239);
XmlTypeMapMember_set_DefaultValue_m97AC90D89BFEE878DA9FE3150292AD6E69B6FA27_inline(L_239, L_243, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_244 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_245 = V_2;
NullCheck(L_244);
XmlTypeMapMember_set_TypeData_m9C4CAF5B4A21DE54C9DE9F90C1332BBDAA4A4B4C_inline(L_244, L_245, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_246 = V_0;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_247 = ___rmember1;
NullCheck(L_247);
String_t* L_248;
L_248 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_247, NULL);
NullCheck(L_246);
XmlTypeMapMember_set_Name_m388D6A30E3DD11FD6068A5D5C180110C327EFC08_inline(L_246, L_248, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_249 = V_0;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_250 = ___rmember1;
NullCheck(L_250);
bool L_251;
L_251 = XmlReflectionMember_get_IsReturnValue_m85EB9A5F4C984353A4BEA4A10D90BEB715158255_inline(L_250, NULL);
NullCheck(L_249);
XmlTypeMapMember_set_IsReturnValue_m8E27F10143941CADA16EEB3F2B81DCE9BB573AD1(L_249, L_251, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_252 = V_0;
return L_252;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlReflectionImporter::ImportElementInfo(System.Type,System.String,System.String,System.Type,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___cls0, String_t* ___defaultName1, String_t* ___defaultNamespace2, Type_t* ___defaultType3, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* ___member4, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
s_Il2CppMethodInitialized = true;
}
EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* V_0 = NULL;
Type_t* V_1 = NULL;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* V_2 = NULL;
bool V_3 = false;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_4 = NULL;
PropertyInfo_t* V_5 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_6 = NULL;
RuntimeObject* V_7 = NULL;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* V_8 = NULL;
Type_t* V_9 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_10 = NULL;
String_t* V_11 = NULL;
RuntimeObject* V_12 = NULL;
Type_t* G_B6_0 = NULL;
String_t* G_B6_1 = NULL;
String_t* G_B6_2 = NULL;
String_t* G_B6_3 = NULL;
Type_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
String_t* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
String_t* G_B7_0 = NULL;
String_t* G_B7_1 = NULL;
String_t* G_B7_2 = NULL;
String_t* G_B7_3 = NULL;
Type_t* G_B28_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B31_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B30_0 = NULL;
String_t* G_B32_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B32_1 = NULL;
{
V_0 = (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)NULL;
V_1 = (Type_t*)NULL;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78*)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B(L_0, NULL);
V_2 = L_0;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_1 = V_2;
Type_t* L_2 = ___defaultType3;
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_3 = ___member4;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_4 = ___atts5;
String_t* L_5 = ___defaultNamespace2;
XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599(__this, L_1, L_2, L_3, L_4, L_5, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_6 = ___atts5;
NullCheck(L_6);
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* L_7;
L_7 = XmlAttributes_get_XmlChoiceIdentifier_mA6096A2AFE2439889FA8F48E22AD7335C9B7EE45_inline(L_6, NULL);
if (!L_7)
{
goto IL_0136;
}
}
{
Type_t* L_8 = ___cls0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_8, (Type_t*)NULL, NULL);
if (!L_9)
{
goto IL_0038;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_10);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral96A17B8E6FD3FD5FF20EA64D3C41EA5A5DE70330)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_0038:
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_11 = ___member4;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_12 = ___atts5;
NullCheck(L_12);
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* L_13;
L_13 = XmlAttributes_get_XmlChoiceIdentifier_mA6096A2AFE2439889FA8F48E22AD7335C9B7EE45_inline(L_12, NULL);
NullCheck(L_13);
String_t* L_14;
L_14 = XmlChoiceIdentifierAttribute_get_MemberName_mFB0A7699A652AE5EEB3AF341F1EEE4C91B46EE9A(L_13, NULL);
NullCheck(L_11);
XmlTypeMapMemberElement_set_ChoiceMember_m8F271920DC329BABB1F6CC20C327EFABC5D5FAD4_inline(L_11, L_14, NULL);
Type_t* L_15 = ___cls0;
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_16 = ___member4;
NullCheck(L_16);
String_t* L_17;
L_17 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_16, NULL);
NullCheck(L_15);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_18;
L_18 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(91 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_15, L_17, ((int32_t)20));
V_4 = L_18;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_19 = V_4;
NullCheck(L_19);
if ((((RuntimeArray*)L_19)->max_length))
{
goto IL_008a;
}
}
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_20 = ___member4;
NullCheck(L_20);
String_t* L_21;
L_21 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_20, NULL);
Type_t* L_22 = ___cls0;
Type_t* L_23 = L_22;
G_B5_0 = L_23;
G_B5_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral96EC52420EC5AB3C6D55AE97C6E038E918ED0EC4));
G_B5_2 = L_21;
G_B5_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6099A97D6F389755E70DAD6DEFD4620F9AAFC7DB));
if (L_23)
{
G_B6_0 = L_23;
G_B6_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral96EC52420EC5AB3C6D55AE97C6E038E918ED0EC4));
G_B6_2 = L_21;
G_B6_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6099A97D6F389755E70DAD6DEFD4620F9AAFC7DB));
goto IL_007a;
}
}
{
G_B7_0 = ((String_t*)(NULL));
G_B7_1 = G_B5_1;
G_B7_2 = G_B5_2;
G_B7_3 = G_B5_3;
goto IL_007f;
}
IL_007a:
{
NullCheck(G_B6_0);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B6_0);
G_B7_0 = L_24;
G_B7_1 = G_B6_1;
G_B7_2 = G_B6_2;
G_B7_3 = G_B6_3;
}
IL_007f:
{
String_t* L_25;
L_25 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(G_B7_3, G_B7_2, G_B7_1, G_B7_0, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_26 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_26);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_26, L_25, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_008a:
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_27 = V_4;
NullCheck(L_27);
int32_t L_28 = 0;
MemberInfo_t* L_29 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_29, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_00d8;
}
}
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_30 = V_4;
NullCheck(L_30);
int32_t L_31 = 0;
MemberInfo_t* L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_5 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_32, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_33 = V_5;
NullCheck(L_33);
bool L_34;
L_34 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_33);
if (!L_34)
{
goto IL_00b2;
}
}
{
PropertyInfo_t* L_35 = V_5;
NullCheck(L_35);
bool L_36;
L_36 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_35);
if (L_36)
{
goto IL_00ce;
}
}
IL_00b2:
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_37 = ___member4;
NullCheck(L_37);
String_t* L_38;
L_38 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_37, NULL);
String_t* L_39;
L_39 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75DAA5C16AD22FC6CBDC55CD16AD259D5A8F883D)), L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral78B67CC5FE62A8456C7B569FBAC1CD4B1E7A9285)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_40 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_40);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_40, L_39, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_00ce:
{
PropertyInfo_t* L_41 = V_5;
NullCheck(L_41);
Type_t* L_42;
L_42 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_41);
V_1 = L_42;
goto IL_00e7;
}
IL_00d8:
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_43 = V_4;
NullCheck(L_43);
int32_t L_44 = 0;
MemberInfo_t* L_45 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_45, FieldInfo_t_il2cpp_TypeInfo_var)));
Type_t* L_46;
L_46 = VirtualFuncInvoker0< Type_t* >::Invoke(17 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_45, FieldInfo_t_il2cpp_TypeInfo_var)));
V_1 = L_46;
}
IL_00e7:
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_47 = ___member4;
Type_t* L_48 = V_1;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_49;
L_49 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_48, NULL);
NullCheck(L_47);
XmlTypeMapMemberElement_set_ChoiceTypeData_mC09197CF2429D39C3771B2E1903663FEE114877D_inline(L_47, L_49, NULL);
Type_t* L_50 = V_1;
NullCheck(L_50);
bool L_51;
L_51 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_50, NULL);
if (!L_51)
{
goto IL_0103;
}
}
{
Type_t* L_52 = V_1;
NullCheck(L_52);
Type_t* L_53;
L_53 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_52);
V_1 = L_53;
}
IL_0103:
{
Type_t* L_54 = V_1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_55;
L_55 = XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18(__this, L_54, NULL);
NullCheck(L_55);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_56;
L_56 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_55, NULL);
V_0 = ((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)IsInstClass((RuntimeObject*)L_56, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var));
EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* L_57 = V_0;
if (L_57)
{
goto IL_0136;
}
}
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_58 = V_4;
NullCheck(L_58);
int32_t L_59 = 0;
MemberInfo_t* L_60 = (L_58)->GetAt(static_cast<il2cpp_array_size_t>(L_59));
NullCheck(L_60);
String_t* L_61;
L_61 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_60);
String_t* L_62;
L_62 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral68D30E263818AD6C2D86F13DBA046121F5F7A1FD)), L_61, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral28A7AEA063C53E83EBAFBF65F33577542489AEA0)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_63 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_63);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_63, L_62, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_0136:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_64 = ___atts5;
NullCheck(L_64);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_65;
L_65 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_64, NULL);
NullCheck(L_65);
int32_t L_66;
L_66 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_65, NULL);
if (L_66)
{
goto IL_0194;
}
}
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_67 = V_2;
NullCheck(L_67);
int32_t L_68;
L_68 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_67);
if (L_68)
{
goto IL_0194;
}
}
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_69 = ___member4;
Type_t* L_70 = ___defaultType3;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_71;
L_71 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_70, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_72 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_72);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_72, L_69, L_71, NULL);
V_6 = L_72;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_73 = V_6;
String_t* L_74 = ___defaultName1;
NullCheck(L_73);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_73, L_74, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_75 = V_6;
String_t* L_76 = ___defaultNamespace2;
NullCheck(L_75);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(L_75, L_76, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_77 = V_6;
NullCheck(L_77);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_78;
L_78 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_77, NULL);
NullCheck(L_78);
bool L_79;
L_79 = TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749(L_78, NULL);
if (!L_79)
{
goto IL_018b;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_80 = V_6;
Type_t* L_81 = ___defaultType3;
String_t* L_82 = ___defaultNamespace2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_83;
L_83 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_81, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_82, NULL);
NullCheck(L_80);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_80, L_83, NULL);
}
IL_018b:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_84 = V_2;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_85 = V_6;
NullCheck(L_84);
int32_t L_86;
L_86 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_84, L_85);
}
IL_0194:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_87 = ___atts5;
NullCheck(L_87);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_88;
L_88 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_87, NULL);
NullCheck(L_88);
int32_t L_89;
L_89 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_88, NULL);
V_3 = (bool)((((int32_t)L_89) > ((int32_t)1))? 1 : 0);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_90 = ___atts5;
NullCheck(L_90);
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_91;
L_91 = XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline(L_90, NULL);
NullCheck(L_91);
RuntimeObject* L_92;
L_92 = CollectionBase_GetEnumerator_m8121D67DEBB0009A93BFEBB1DA46BA8A671FD862(L_91, NULL);
V_7 = L_92;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0423:
{// begin finally (depth: 1)
{
RuntimeObject* L_93 = V_7;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_93, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_94 = V_12;
if (!L_94)
{
goto IL_0437;
}
}
{
RuntimeObject* L_95 = V_12;
NullCheck(L_95);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_95);
}
IL_0437:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0415_1;
}
IL_01b7_1:
{
RuntimeObject* L_96 = V_7;
NullCheck(L_96);
RuntimeObject* L_97;
L_97 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_96);
V_8 = ((XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5*)CastclassClass((RuntimeObject*)L_97, XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5_il2cpp_TypeInfo_var));
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_98 = V_8;
NullCheck(L_98);
Type_t* L_99;
L_99 = XmlElementAttribute_get_Type_m3B355841D7F13F4CD84F8C3ED4D28917BB170CCB_inline(L_98, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_100;
L_100 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_99, (Type_t*)NULL, NULL);
if (L_100)
{
goto IL_01d8_1;
}
}
{
Type_t* L_101 = ___defaultType3;
G_B28_0 = L_101;
goto IL_01df_1;
}
IL_01d8_1:
{
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_102 = V_8;
NullCheck(L_102);
Type_t* L_103;
L_103 = XmlElementAttribute_get_Type_m3B355841D7F13F4CD84F8C3ED4D28917BB170CCB_inline(L_102, NULL);
G_B28_0 = L_103;
}
IL_01df_1:
{
V_9 = G_B28_0;
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_104 = ___member4;
Type_t* L_105 = V_9;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_106 = V_8;
NullCheck(L_106);
String_t* L_107;
L_107 = XmlElementAttribute_get_DataType_mC74327AED7D2D68D57E769EDB5125BDE0D0A6ABF(L_106, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_108;
L_108 = TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8(L_105, L_107, (bool)0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_109 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_109);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_109, L_104, L_108, NULL);
V_10 = L_109;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_110 = V_10;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_111 = V_8;
NullCheck(L_111);
int32_t L_112;
L_112 = XmlElementAttribute_get_Form_mAB6C265C412AD6BA37FF7802EB207C726F3ADADC_inline(L_111, NULL);
NullCheck(L_110);
XmlTypeMapElementInfo_set_Form_m404075D5C7B4E4CE0EC5ED46881D4D84C73E0102_inline(L_110, L_112, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_113 = V_10;
NullCheck(L_113);
int32_t L_114;
L_114 = XmlTypeMapElementInfo_get_Form_m6D632374F4C5C58870DFDB60928B518C216180FA_inline(L_113, NULL);
if ((((int32_t)L_114) == ((int32_t)2)))
{
goto IL_022b_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_115 = V_10;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_116 = V_8;
NullCheck(L_116);
String_t* L_117;
L_117 = XmlElementAttribute_get_Namespace_m79825FA7B795B8D0FF3E71637AEB426DC3AFB1FA_inline(L_116, NULL);
G_B30_0 = L_115;
if (L_117)
{
G_B31_0 = L_115;
goto IL_021f_1;
}
}
{
String_t* L_118 = ___defaultNamespace2;
G_B32_0 = L_118;
G_B32_1 = G_B30_0;
goto IL_0226_1;
}
IL_021f_1:
{
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_119 = V_8;
NullCheck(L_119);
String_t* L_120;
L_120 = XmlElementAttribute_get_Namespace_m79825FA7B795B8D0FF3E71637AEB426DC3AFB1FA_inline(L_119, NULL);
G_B32_0 = L_120;
G_B32_1 = G_B31_0;
}
IL_0226_1:
{
NullCheck(G_B32_1);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(G_B32_1, G_B32_0, NULL);
}
IL_022b_1:
{
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_121 = V_8;
NullCheck(L_121);
bool L_122;
L_122 = XmlElementAttribute_get_IsNullable_mC31D59FDBE93193FDF0409AC0DC191E8B11A387F_inline(L_121, NULL);
if (!L_122)
{
goto IL_024b_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_123 = V_10;
NullCheck(L_123);
bool L_124;
L_124 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_123, NULL);
if (L_124)
{
goto IL_024b_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_125 = V_10;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_126 = V_8;
NullCheck(L_126);
bool L_127;
L_127 = XmlElementAttribute_get_IsNullable_mC31D59FDBE93193FDF0409AC0DC191E8B11A387F_inline(L_126, NULL);
NullCheck(L_125);
XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F_inline(L_125, L_127, NULL);
}
IL_024b_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_128 = V_10;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_129 = V_8;
NullCheck(L_129);
int32_t L_130;
L_130 = XmlElementAttribute_get_Order_mCF42C8462D6BAE16562CD7E16E56DD5BBD56A34F_inline(L_129, NULL);
NullCheck(L_128);
XmlTypeMapElementInfo_set_ExplicitOrder_mD893A153D81289F4A8C4A429800FEDB81E3578B4_inline(L_128, L_130, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_131 = V_10;
NullCheck(L_131);
bool L_132;
L_132 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_131, NULL);
if (!L_132)
{
goto IL_02ac_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_133 = V_10;
NullCheck(L_133);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_134;
L_134 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_133, NULL);
NullCheck(L_134);
bool L_135;
L_135 = TypeData_get_IsNullable_m31728B62ACF57A01989472F565DAAC86DA179D07(L_134, NULL);
if (L_135)
{
goto IL_02ac_1;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_136 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_137 = L_136;
NullCheck(L_137);
ArrayElementTypeCheck (L_137, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF120BE9B6A9F4F9A2A60DDDE77756405E8C5111C)));
(L_137)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF120BE9B6A9F4F9A2A60DDDE77756405E8C5111C)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_138 = L_137;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_139 = V_10;
NullCheck(L_139);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_140;
L_140 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_139, NULL);
NullCheck(L_140);
String_t* L_141;
L_141 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_140, NULL);
NullCheck(L_138);
ArrayElementTypeCheck (L_138, L_141);
(L_138)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_141);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_142 = L_138;
NullCheck(L_142);
ArrayElementTypeCheck (L_142, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF2720902657F220A4255C591B7383B1661E21515)));
(L_142)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF2720902657F220A4255C591B7383B1661E21515)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_143 = L_142;
String_t* L_144 = ___defaultName1;
NullCheck(L_143);
ArrayElementTypeCheck (L_143, L_144);
(L_143)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_144);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_145 = L_143;
NullCheck(L_145);
ArrayElementTypeCheck (L_145, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)));
(L_145)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)));
String_t* L_146;
L_146 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_145, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_147 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_147);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_147, L_146, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_02ac_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_148 = V_10;
NullCheck(L_148);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_149;
L_149 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_148, NULL);
NullCheck(L_149);
bool L_150;
L_150 = TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749(L_149, NULL);
if (!L_150)
{
goto IL_0320_1;
}
}
{
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_151 = V_8;
NullCheck(L_151);
String_t* L_152;
L_152 = XmlElementAttribute_get_DataType_mC74327AED7D2D68D57E769EDB5125BDE0D0A6ABF(L_151, NULL);
NullCheck(L_152);
int32_t L_153;
L_153 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_152, NULL);
if (!L_153)
{
goto IL_0309_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_154;
L_154 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_155 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_156 = L_155;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_157 = V_8;
NullCheck(L_157);
String_t* L_158;
L_158 = XmlElementAttribute_get_DataType_mC74327AED7D2D68D57E769EDB5125BDE0D0A6ABF(L_157, NULL);
NullCheck(L_156);
ArrayElementTypeCheck (L_156, L_158);
(L_156)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_158);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_159 = L_156;
Type_t* L_160 = ___cls0;
NullCheck(L_160);
String_t* L_161;
L_161 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_160);
NullCheck(L_159);
ArrayElementTypeCheck (L_159, L_161);
(L_159)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_161);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_162 = L_159;
String_t* L_163 = ___defaultName1;
NullCheck(L_162);
ArrayElementTypeCheck (L_162, L_163);
(L_162)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_163);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_164 = L_162;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_165 = V_10;
NullCheck(L_165);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_166;
L_166 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_165, NULL);
NullCheck(L_166);
String_t* L_167;
L_167 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_166, NULL);
NullCheck(L_164);
ArrayElementTypeCheck (L_164, L_167);
(L_164)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_167);
String_t* L_168;
L_168 = String_Format_mBFACD7FE8657957CE3D5DA54D519AB418AF421E7(L_154, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A70DF0588442FC24870182C92EB1EE5A9326B19)), L_164, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_169 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_169);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_169, L_168, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_169, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_0309_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_170 = V_10;
Type_t* L_171 = V_9;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_172 = V_10;
NullCheck(L_172);
String_t* L_173;
L_173 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_172, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_174;
L_174 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_171, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_173, NULL);
NullCheck(L_170);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_170, L_174, NULL);
}
IL_0320_1:
{
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_175 = V_8;
NullCheck(L_175);
String_t* L_176;
L_176 = XmlElementAttribute_get_ElementName_mFD5C95EC3061DC2A2D88E0EACC2DDFFA91C76F6F(L_175, NULL);
NullCheck(L_176);
int32_t L_177;
L_177 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_176, NULL);
if (!L_177)
{
goto IL_0343_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_178 = V_10;
XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* L_179 = V_8;
NullCheck(L_179);
String_t* L_180;
L_180 = XmlElementAttribute_get_ElementName_mFD5C95EC3061DC2A2D88E0EACC2DDFFA91C76F6F(L_179, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_181;
L_181 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_180, NULL);
NullCheck(L_178);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_178, L_181, NULL);
goto IL_0381_1;
}
IL_0343_1:
{
bool L_182 = V_3;
if (!L_182)
{
goto IL_0379_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_183 = V_10;
NullCheck(L_183);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_184;
L_184 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_183, NULL);
if (!L_184)
{
goto IL_0364_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_185 = V_10;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_186 = V_10;
NullCheck(L_186);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_187;
L_187 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_186, NULL);
NullCheck(L_187);
String_t* L_188;
L_188 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_187, NULL);
NullCheck(L_185);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_185, L_188, NULL);
goto IL_0381_1;
}
IL_0364_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_189 = V_10;
Type_t* L_190 = V_9;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_191;
L_191 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_190, NULL);
NullCheck(L_191);
String_t* L_192;
L_192 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_191, NULL);
NullCheck(L_189);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_189, L_192, NULL);
goto IL_0381_1;
}
IL_0379_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_193 = V_10;
String_t* L_194 = ___defaultName1;
NullCheck(L_193);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_193, L_194, NULL);
}
IL_0381_1:
{
EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* L_195 = V_0;
if (!L_195)
{
goto IL_040c_1;
}
}
{
EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* L_196 = V_0;
Type_t* L_197 = V_1;
NullCheck(L_197);
String_t* L_198;
L_198 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_197);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_199 = V_10;
NullCheck(L_199);
String_t* L_200;
L_200 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_199, NULL);
NullCheck(L_196);
String_t* L_201;
L_201 = EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94(L_196, L_198, L_200, NULL);
V_11 = L_201;
String_t* L_202 = V_11;
if (L_202)
{
goto IL_03d4_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_203 = V_10;
NullCheck(L_203);
String_t* L_204;
L_204 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_203, NULL);
if (!L_204)
{
goto IL_03d4_1;
}
}
{
EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* L_205 = V_0;
Type_t* L_206 = V_1;
NullCheck(L_206);
String_t* L_207;
L_207 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_206);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_208 = V_10;
NullCheck(L_208);
String_t* L_209;
L_209 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_208, NULL);
NullCheck(L_209);
String_t* L_210;
L_210 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_209);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_211 = V_10;
NullCheck(L_211);
String_t* L_212;
L_212 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_211, NULL);
String_t* L_213;
L_213 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_210, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_212, NULL);
NullCheck(L_205);
String_t* L_214;
L_214 = EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94(L_205, L_207, L_213, NULL);
V_11 = L_214;
}
IL_03d4_1:
{
String_t* L_215 = V_11;
if (L_215)
{
goto IL_03fc_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_216;
L_216 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_217 = V_1;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_218 = V_10;
NullCheck(L_218);
String_t* L_219;
L_219 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_218, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_220 = V_10;
NullCheck(L_220);
String_t* L_221;
L_221 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_220, NULL);
String_t* L_222;
L_222 = String_Format_m47B2846E44214E013BF3069B0F9015AD223FF16E(L_216, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F8F57CB4EFADE4F9EB4B28556590324C8D0B936)), L_217, L_219, L_221, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_223 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_223);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_223, L_222, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_223, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportElementInfo_m1343282D0C9BF75E4F7CCF7B3020BD15F50C361D_RuntimeMethod_var)));
}
IL_03fc_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_224 = V_10;
Type_t* L_225 = V_1;
String_t* L_226 = V_11;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_227;
L_227 = Enum_Parse_m1ABE53499F05D295104BDE57EE12376CF4513585(L_225, L_226, (bool)0, NULL);
NullCheck(L_224);
XmlTypeMapElementInfo_set_ChoiceValue_m51083B31BC4A97D6C58F2A8FA96355BED2E37AAB_inline(L_224, L_227, NULL);
}
IL_040c_1:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_228 = V_2;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_229 = V_10;
NullCheck(L_228);
int32_t L_230;
L_230 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_228, L_229);
}
IL_0415_1:
{
RuntimeObject* L_231 = V_7;
NullCheck(L_231);
bool L_232;
L_232 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_231);
if (L_232)
{
goto IL_01b7_1;
}
}
{
goto IL_0438;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0438:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_233 = V_2;
return L_233;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlReflectionImporter::ImportAnyElementInfo(System.String,System.Xml.Serialization.XmlReflectionMember,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlReflectionImporter_ImportAnyElementInfo_m26B24C22E7A373EF178E830CFF15E0E04EA0155A (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, String_t* ___defaultNamespace0, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___rmember1, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* ___member2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* V_0 = NULL;
RuntimeObject* V_1 = NULL;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* V_2 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_3 = NULL;
RuntimeObject* V_4 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B5_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B4_0 = NULL;
String_t* G_B6_0 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* G_B6_1 = NULL;
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78*)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B(L_0, NULL);
V_0 = L_0;
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_1 = V_0;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_2 = ___rmember1;
NullCheck(L_2);
Type_t* L_3;
L_3 = XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline(L_2, NULL);
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_4 = ___member2;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_5 = ___atts3;
String_t* L_6 = ___defaultNamespace0;
XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599(__this, L_1, L_3, L_4, L_5, L_6, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_7 = ___atts3;
NullCheck(L_7);
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_8;
L_8 = XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline(L_7, NULL);
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = CollectionBase_GetEnumerator_m8121D67DEBB0009A93BFEBB1DA46BA8A671FD862(L_8, NULL);
V_1 = L_9;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00f8:
{// begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_11 = V_4;
if (!L_11)
{
goto IL_010b;
}
}
{
RuntimeObject* L_12 = V_4;
NullCheck(L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_12);
}
IL_010b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00eb_1;
}
IL_0029_1:
{
RuntimeObject* L_13 = V_1;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
V_2 = ((XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB*)CastclassClass((RuntimeObject*)L_14, XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_15 = ___member2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_17;
L_17 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_16, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_18;
L_18 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_17, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_19 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_19);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_19, L_15, L_18, NULL);
V_3 = L_19;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_20 = V_2;
NullCheck(L_20);
String_t* L_21;
L_21 = XmlAnyElementAttribute_get_Name_m4A874C74BA795155B3B95CD2A423E1C8A0CAE8F0(L_20, NULL);
NullCheck(L_21);
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL);
if (!L_22)
{
goto IL_0086_1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_23 = V_3;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_24 = V_2;
NullCheck(L_24);
String_t* L_25;
L_25 = XmlAnyElementAttribute_get_Name_m4A874C74BA795155B3B95CD2A423E1C8A0CAE8F0(L_24, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_26;
L_26 = XmlConvert_EncodeLocalName_m7E371CA110F27018553704A8E9518C89BBEF0435(L_25, NULL);
NullCheck(L_23);
XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(L_23, L_26, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_27 = V_3;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_28 = V_2;
NullCheck(L_28);
String_t* L_29;
L_29 = XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6_inline(L_28, NULL);
G_B4_0 = L_27;
if (L_29)
{
G_B5_0 = L_27;
goto IL_0079_1;
}
}
{
G_B6_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B6_1 = G_B4_0;
goto IL_007f_1;
}
IL_0079_1:
{
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_30 = V_2;
NullCheck(L_30);
String_t* L_31;
L_31 = XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6_inline(L_30, NULL);
G_B6_0 = L_31;
G_B6_1 = G_B5_0;
}
IL_007f_1:
{
NullCheck(G_B6_1);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(G_B6_1, G_B6_0, NULL);
goto IL_00d7_1;
}
IL_0086_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_32 = V_3;
NullCheck(L_32);
XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m9C07E7FD57FE290F705A2EC1EF3F4F3C36AB1DDD(L_32, (bool)1, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_33 = V_3;
String_t* L_34 = ___defaultNamespace0;
NullCheck(L_33);
XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(L_33, L_34, NULL);
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_35 = V_2;
NullCheck(L_35);
String_t* L_36;
L_36 = XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6_inline(L_35, NULL);
if (!L_36)
{
goto IL_00d7_1;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_37 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = L_37;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD8CC2C551FD45E2551022E478C520A80DD62DDA)));
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD8CC2C551FD45E2551022E478C520A80DD62DDA)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = L_38;
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_40 = ___rmember1;
NullCheck(L_40);
String_t* L_41;
L_41 = XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline(L_40, NULL);
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_41);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_41);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_42 = L_39;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D9C559B36F71C5AB37A696ECC383A0346BC96E)));
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D9C559B36F71C5AB37A696ECC383A0346BC96E)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_43 = L_42;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_44 = V_2;
NullCheck(L_44);
String_t* L_45;
L_45 = XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6_inline(L_44, NULL);
NullCheck(L_43);
ArrayElementTypeCheck (L_43, L_45);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_45);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = L_43;
NullCheck(L_46);
ArrayElementTypeCheck (L_46, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC0D69EE876D7C5C122F135FF788193F3718C6584)));
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC0D69EE876D7C5C122F135FF788193F3718C6584)));
String_t* L_47;
L_47 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_46, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_48 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_48);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_48, L_47, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportAnyElementInfo_m26B24C22E7A373EF178E830CFF15E0E04EA0155A_RuntimeMethod_var)));
}
IL_00d7_1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_49 = V_3;
XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* L_50 = V_2;
NullCheck(L_50);
int32_t L_51;
L_51 = XmlAnyElementAttribute_get_Order_m2CCED3AB699ADBDE0F16C41EB0EFE8921DF4BA6A_inline(L_50, NULL);
NullCheck(L_49);
XmlTypeMapElementInfo_set_ExplicitOrder_mD893A153D81289F4A8C4A429800FEDB81E3578B4_inline(L_49, L_51, NULL);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_52 = V_0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_53 = V_3;
NullCheck(L_52);
int32_t L_54;
L_54 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_52, L_53);
}
IL_00eb_1:
{
RuntimeObject* L_55 = V_1;
NullCheck(L_55);
bool L_56;
L_56 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_55);
if (L_56)
{
goto IL_0029_1;
}
}
{
goto IL_010c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_010c:
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_57 = V_0;
return L_57;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::ImportTextElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList,System.Type,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___list0, Type_t* ___defaultType1, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* ___member2, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___atts3, String_t* ___defaultNamespace4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_0 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_1 = NULL;
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_0 = ___atts3;
NullCheck(L_0);
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_1;
L_1 = XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline(L_0, NULL);
if (!L_1)
{
goto IL_012e;
}
}
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_2 = ___member2;
NullCheck(L_2);
XmlTypeMapMemberElement_set_IsXmlTextCollector_m3825384EFF73E2990FD5746E45CE7AF2D69B456B_inline(L_2, (bool)1, NULL);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_3 = ___atts3;
NullCheck(L_3);
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_4;
L_4 = XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline(L_3, NULL);
NullCheck(L_4);
Type_t* L_5;
L_5 = XmlTextAttribute_get_Type_m6D956F711B1336CEAE650DDC4A35A9899CEF9861_inline(L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_6;
L_6 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_5, (Type_t*)NULL, NULL);
if (!L_6)
{
goto IL_006d;
}
}
{
Type_t* L_7 = ___defaultType1;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_8;
L_8 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_7, NULL);
V_1 = L_8;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_9 = V_1;
NullCheck(L_9);
int32_t L_10;
L_10 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_9, NULL);
if ((((int32_t)L_10) == ((int32_t)1)))
{
goto IL_0040;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11 = V_1;
NullCheck(L_11);
int32_t L_12;
L_12 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_11, NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_005f;
}
}
IL_0040:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_13 = ___atts3;
NullCheck(L_13);
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_14;
L_14 = XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline(L_13, NULL);
NullCheck(L_14);
Type_t* L_15;
L_15 = XmlTextAttribute_get_Type_m6D956F711B1336CEAE650DDC4A35A9899CEF9861_inline(L_14, NULL);
Type_t* L_16 = ___defaultType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_17;
L_17 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_15, L_16, NULL);
if (!L_17)
{
goto IL_005f;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_18 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_18);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9D585EFA72289B5EB83C4E729C8843ADEA8F08D2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599_RuntimeMethod_var)));
}
IL_005f:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_19 = ___atts3;
NullCheck(L_19);
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_20;
L_20 = XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline(L_19, NULL);
NullCheck(L_20);
Type_t* L_21;
L_21 = XmlTextAttribute_get_Type_m6D956F711B1336CEAE650DDC4A35A9899CEF9861_inline(L_20, NULL);
___defaultType1 = L_21;
}
IL_006d:
{
Type_t* L_22 = ___defaultType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_24;
L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL);
bool L_25;
L_25 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_22, L_24, NULL);
if (!L_25)
{
goto IL_008b;
}
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_27;
L_27 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_26, NULL);
___defaultType1 = L_27;
}
IL_008b:
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_28 = ___member2;
Type_t* L_29 = ___defaultType1;
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_30 = ___atts3;
NullCheck(L_30);
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_31;
L_31 = XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline(L_30, NULL);
NullCheck(L_31);
String_t* L_32;
L_32 = XmlTextAttribute_get_DataType_m6B266372322103E2D735DC26D210652ECD475B07(L_31, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_33;
L_33 = TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8(L_29, L_32, (bool)0, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_34 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
NullCheck(L_34);
XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D(L_34, L_28, L_33, NULL);
V_0 = L_34;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_35 = V_0;
NullCheck(L_35);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_36;
L_36 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_35, NULL);
NullCheck(L_36);
int32_t L_37;
L_37 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_36, NULL);
if ((((int32_t)L_37) == ((int32_t)1)))
{
goto IL_00fb;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_38 = V_0;
NullCheck(L_38);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_39;
L_39 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_38, NULL);
NullCheck(L_39);
int32_t L_40;
L_40 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_39, NULL);
if ((((int32_t)L_40) == ((int32_t)2)))
{
goto IL_00fb;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_41 = V_0;
NullCheck(L_41);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_42;
L_42 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_41, NULL);
NullCheck(L_42);
int32_t L_43;
L_43 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_42, NULL);
if ((((int32_t)L_43) == ((int32_t)6)))
{
goto IL_00fb;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_44 = V_0;
NullCheck(L_44);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_45;
L_45 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_44, NULL);
NullCheck(L_45);
int32_t L_46;
L_46 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_45, NULL);
if ((!(((uint32_t)L_46) == ((uint32_t)3))))
{
goto IL_00f0;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_47 = V_0;
NullCheck(L_47);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_48;
L_48 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_47, NULL);
NullCheck(L_48);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_49;
L_49 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_48, NULL);
NullCheck(L_49);
int32_t L_50;
L_50 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_49, NULL);
if ((((int32_t)L_50) == ((int32_t)6)))
{
goto IL_00fb;
}
}
IL_00f0:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_51 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_51);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_51, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B2BA46FD695B79CF60BB6970762E6C1E761E71)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_ImportTextElementInfo_m95E321788636ECB35EED75B9983452E4025D0599_RuntimeMethod_var)));
}
IL_00fb:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_52 = V_0;
NullCheck(L_52);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_53;
L_53 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_52, NULL);
NullCheck(L_53);
bool L_54;
L_54 = TypeData_get_IsComplexType_m13C3810EB4DD4C512B9A472A24D12BFE443FF749(L_53, NULL);
if (!L_54)
{
goto IL_0118;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_55 = V_0;
Type_t* L_56 = ___defaultType1;
String_t* L_57 = ___defaultNamespace4;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_58;
L_58 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(__this, L_56, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, L_57, NULL);
NullCheck(L_55);
XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline(L_55, L_58, NULL);
}
IL_0118:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_59 = V_0;
NullCheck(L_59);
XmlTypeMapElementInfo_set_IsTextElement_mCE031A8FDAFEACF48094CCDF5C90BBB2A64E2655(L_59, (bool)1, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_60 = V_0;
NullCheck(L_60);
XmlTypeMapElementInfo_set_WrappedElement_m45FA9CFAFC7B8EB395F59D7832542F3410089195_inline(L_60, (bool)0, NULL);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_61 = ___list0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_62 = V_0;
NullCheck(L_61);
int32_t L_63;
L_63 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_61, L_62);
}
IL_012e:
{
return;
}
}
// System.Boolean System.Xml.Serialization.XmlReflectionImporter::CanBeNull(System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReflectionImporter_CanBeNull_m52BC441CF224DCDF490BEE6ED280AB778BFFC3A6 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___type0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_1, NULL);
if (!L_2)
{
goto IL_0014;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = ___type0;
NullCheck(L_3);
bool L_4;
L_4 = TypeData_get_IsNullable_m31728B62ACF57A01989472F565DAAC86DA179D07(L_3, NULL);
return L_4;
}
IL_0014:
{
return (bool)1;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::IncludeType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_IncludeType_mE13BACE7F8651EA6C6C9B8C8D8257D27CEE9D1BD (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
Type_t* L_0 = ___type0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, (Type_t*)NULL, NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_IncludeType_mE13BACE7F8651EA6C6C9B8C8D8257D27CEE9D1BD_RuntimeMethod_var)));
}
IL_0014:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->___includedTypes_2;
if (L_3)
{
goto IL_0027;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_4);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_4, NULL);
__this->___includedTypes_2 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___includedTypes_2), (void*)L_4);
}
IL_0027:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->___includedTypes_2;
Type_t* L_6 = ___type0;
NullCheck(L_5);
bool L_7;
L_7 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(33 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_5, L_6);
if (L_7)
{
goto IL_0042;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = __this->___includedTypes_2;
Type_t* L_9 = ___type0;
NullCheck(L_8);
int32_t L_10;
L_10 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, L_9);
}
IL_0042:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_11 = __this->___relatedMaps_5;
NullCheck(L_11);
int32_t L_12;
L_12 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_11);
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_00be;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = __this->___relatedMaps_5;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Object System.Collections.ArrayList::Clone() */, L_13);
NullCheck(((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_14, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)));
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_14, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)));
V_0 = L_15;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ad:
{// begin finally (depth: 1)
{
RuntimeObject* L_16 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_2;
if (!L_17)
{
goto IL_00bd;
}
}
{
RuntimeObject* L_18 = V_2;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_18);
}
IL_00bd:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00a3_1;
}
IL_0068_1:
{
RuntimeObject* L_19 = V_0;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19);
V_1 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_20, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var));
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_21 = V_1;
NullCheck(L_21);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22;
L_22 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_21, NULL);
NullCheck(L_22);
Type_t* L_23;
L_23 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_22, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_25;
L_25 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_24, NULL);
bool L_26;
L_26 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_23, L_25, NULL);
if (!L_26)
{
goto IL_00a3_1;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_27 = V_1;
NullCheck(L_27);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_28;
L_28 = XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline(L_27, NULL);
Type_t* L_29 = ___type0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_30;
L_30 = XmlReflectionImporter_ImportTypeMapping_m3AE556A476B6CA920DE1BDDEB20F261A351A7B18(__this, L_29, NULL);
NullCheck(L_28);
int32_t L_31;
L_31 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_28, L_30);
}
IL_00a3_1:
{
RuntimeObject* L_32 = V_0;
NullCheck(L_32);
bool L_33;
L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_0068_1;
}
}
{
goto IL_00be;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00be:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlReflectionImporter::GetDefaultValue(System.Xml.Serialization.TypeData,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReflectionImporter_GetDefaultValue_m9AC659BFACAF9F4E2ED88A32F9B0622C5FBACDA8 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData0, RuntimeObject* ___defaultValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___defaultValue1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1)))
{
goto IL_0011;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___typeData0;
NullCheck(L_2);
int32_t L_3;
L_3 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_0013;
}
}
IL_0011:
{
RuntimeObject* L_4 = ___defaultValue1;
return L_4;
}
IL_0013:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___typeData0;
NullCheck(L_5);
Type_t* L_6;
L_6 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_5, NULL);
RuntimeObject* L_7 = ___defaultValue1;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
String_t* L_8;
L_8 = Enum_Format_m123C334AE1E6D7DA980E55F737754DE1E0EA09DD(L_6, L_7, _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_9 = ___typeData0;
NullCheck(L_9);
Type_t* L_10;
L_10 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_9, NULL);
RuntimeObject* L_11 = ___defaultValue1;
String_t* L_12;
L_12 = Enum_Format_m123C334AE1E6D7DA980E55F737754DE1E0EA09DD(L_10, L_11, _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, NULL);
V_0 = L_12;
String_t* L_13 = V_0;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_13, NULL);
if (!L_14)
{
goto IL_005f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_15;
L_15 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
RuntimeObject* L_16 = ___defaultValue1;
RuntimeObject* L_17 = ___defaultValue1;
NullCheck(L_17);
Type_t* L_18;
L_18 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_17, NULL);
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_18);
String_t* L_20;
L_20 = String_Format_m69D52D3917F3D1BAC76B506B9BAA68A41B483DEF(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D4C268C4423C754CBC1834659DBB0EE8FE916F8)), L_16, L_19, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_21 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_21);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReflectionImporter_GetDefaultValue_m9AC659BFACAF9F4E2ED88A32F9B0622C5FBACDA8_RuntimeMethod_var)));
}
IL_005f:
{
RuntimeObject* L_22 = ___defaultValue1;
return L_22;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter__cctor_m2E5E1A325B812FDDFC8A05F7543BC37758FDC3FC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31133B72BD99652557120522D697E07A71CF3DA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral560C311BA606901B751369745841EC8F31B5FD8F);
s_Il2CppMethodInitialized = true;
}
{
((XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields*)il2cpp_codegen_static_fields_for(XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var))->___errSimple_7 = _stringLiteral31133B72BD99652557120522D697E07A71CF3DA6;
Il2CppCodeGenWriteBarrier((void**)(&((XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields*)il2cpp_codegen_static_fields_for(XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var))->___errSimple_7), (void*)_stringLiteral31133B72BD99652557120522D697E07A71CF3DA6);
((XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields*)il2cpp_codegen_static_fields_for(XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var))->___errSimple2_8 = _stringLiteral560C311BA606901B751369745841EC8F31B5FD8F;
Il2CppCodeGenWriteBarrier((void**)(&((XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields*)il2cpp_codegen_static_fields_for(XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var))->___errSimple2_8), (void*)_stringLiteral560C311BA606901B751369745841EC8F31B5FD8F);
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.XmlReflectionImporter/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m573E613F3F2C09AF4342B3254FD4E798D2D7B6B2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81* L_0 = (U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81*)il2cpp_codegen_object_new(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_mA058BD654206592CBA4FF6B46AC6A8419DE0632E(L_0, NULL);
((U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA058BD654206592CBA4FF6B46AC6A8419DE0632E (U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlReflectionImporter/<>c::<ImportClassMapping>b__28_0(System.Xml.Serialization.XmlReflectionMember,System.Xml.Serialization.XmlReflectionMember)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CImportClassMappingU3Eb__28_0_m7BA8969084E3BC672F0D242519C60B3BC8204B2D (U3CU3Ec_tA49B5EA98D805D188FFC338455BCAECCDFF18E81* __this, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___m10, XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* ___m21, const RuntimeMethod* method)
{
{
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_0 = ___m10;
NullCheck(L_0);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_1;
L_1 = XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = XmlAttributes_get_SortableOrder_m3D4F7E08FCA0AF6985B0C5BED981BE036E03B687(L_1, NULL);
XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* L_3 = ___m21;
NullCheck(L_3);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_4;
L_4 = XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952(L_3, NULL);
NullCheck(L_4);
int32_t L_5;
L_5 = XmlAttributes_get_SortableOrder_m3D4F7E08FCA0AF6985B0C5BED981BE036E03B687(L_4, NULL);
return ((int32_t)il2cpp_codegen_subtract(L_2, 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.Void System.Xml.Serialization.XmlReflectionMember::.ctor(System.String,System.Type,System.Xml.Serialization.XmlAttributes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionMember__ctor_m7B83DEED7CE7FDD74528D8863C8243F70D6DE355 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, String_t* ___name0, Type_t* ___type1, XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* ___attributes2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___name0;
__this->___memberName_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___memberName_1), (void*)L_0);
Type_t* L_1 = ___type1;
__this->___memberType_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___memberType_2), (void*)L_1);
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_2 = ___attributes2;
__this->___xmlAttributes_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAttributes_3), (void*)L_2);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlReflectionMember::get_IsReturnValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReflectionMember_get_IsReturnValue_m85EB9A5F4C984353A4BEA4A10D90BEB715158255 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isReturnValue_0;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlReflectionMember::get_MemberName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___memberName_1;
return L_0;
}
}
// System.Type System.Xml.Serialization.XmlReflectionMember::get_MemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___memberType_2;
return L_0;
}
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlReflectionMember::get_XmlAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* XmlReflectionMember_get_XmlAttributes_mCC188BF7A0827BC124D67F7BB86D6CC34F806952 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_0 = __this->___xmlAttributes_3;
if (L_0)
{
goto IL_0013;
}
}
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_1 = (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739*)il2cpp_codegen_object_new(XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlAttributes__ctor_mA77FF59E5F2D6C3DAE3695F3A11F61B6DE8E6494(L_1, NULL);
__this->___xmlAttributes_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlAttributes_3), (void*)L_1);
}
IL_0013:
{
XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* L_2 = __this->___xmlAttributes_3;
return L_2;
}
}
// System.Type System.Xml.Serialization.XmlReflectionMember::get_DeclaringType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlReflectionMember_get_DeclaringType_mA84E638B63CD926ED1DB32628B7747DE0BA7F355 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___declaringType_4;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlReflectionMember::set_DeclaringType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionMember_set_DeclaringType_m1FEBB9DF4BDFE905A76D4E297BE992C89B39B1A8 (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___declaringType_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___declaringType_4), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlRootAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute__ctor_m37C0A178607923B5D34C4EC93DDF82D0E0E2A275 (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method)
{
{
__this->___isNullable_2 = (bool)1;
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute__ctor_m67B2E5D1DC3607ADFE62AD1DDA134C671BD23A9E (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, String_t* ___elementName0, const RuntimeMethod* method)
{
{
__this->___isNullable_2 = (bool)1;
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
String_t* L_0 = ___elementName0;
__this->___elementName_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elementName_1), (void*)L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlRootAttribute::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_DataType_m0614427324F92ABB8600ABE88E6292BD9F0822CD (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __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->___dataType_0;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___dataType_0;
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::set_DataType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute_set_DataType_mACFE660505CAD266C51350ED30EE5778C86BF2F5 (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___dataType_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___dataType_0), (void*)L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlRootAttribute::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_ElementName_m8E9F810E8C3AEA05914EF8AEA47DCC31EDD7B2AE (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __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->___elementName_1;
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_1;
}
IL_000e:
{
String_t* L_2 = __this->___elementName_1;
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::set_ElementName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute_set_ElementName_m3396738CAA5D858DF09A4A8A75D99B5CAA0BE2D5 (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___elementName_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elementName_1), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlRootAttribute::get_IsNullable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlRootAttribute_get_IsNullable_m2838215306230F5E93695672074B66ACC39E0092 (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_2;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::set_IsNullable(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute_set_IsNullable_m553B38D07E1FE0E2654B6CF57B90D459AA553E12 (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___isNullable_2 = L_0;
return;
}
}
// System.String System.Xml.Serialization.XmlRootAttribute::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4 (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::set_Namespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute_set_Namespace_mAB74858C97531E3ACA6755E9B9C2AFA4C4BF9A8C (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___ns_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ns_3), (void*)L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::AddKeyHash(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRootAttribute_AddKeyHash_m0CE50F6D4C7EFAE326DF317DABC543E85307463A (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3DD5AA2217C1BCE14B3CC8D0E8A2EC46E4F098E);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t* L_0 = ___sb0;
NullCheck(L_0);
StringBuilder_t* L_1;
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteralB3DD5AA2217C1BCE14B3CC8D0E8A2EC46E4F098E, NULL);
StringBuilder_t* L_2 = ___sb0;
String_t* L_3 = __this->___ns_3;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_2, 1, L_3, NULL);
StringBuilder_t* L_4 = ___sb0;
String_t* L_5 = __this->___elementName_1;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_4, 2, L_5, NULL);
StringBuilder_t* L_6 = ___sb0;
String_t* L_7 = __this->___dataType_0;
KeyHelper_AddField_m7FBCB60FFE5B03A61F8FAE2B24D09CD420CD8AC8(L_6, 3, L_7, NULL);
StringBuilder_t* L_8 = ___sb0;
bool L_9 = __this->___isNullable_2;
KeyHelper_AddField_m05DAFC613D00E974A5636802A18C481C54822061(L_8, 4, L_9, NULL);
StringBuilder_t* L_10 = ___sb0;
NullCheck(L_10);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_10, ((int32_t)124), 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.XmlSchemaProviderAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaProviderAttribute__ctor_mB072D2FE2A73FFC761AEFC0DEA5439446FD68AC2 (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, String_t* ___methodName0, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
String_t* L_0 = ___methodName0;
__this->____methodName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____methodName_0), (void*)L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlSchemaProviderAttribute::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSchemaProviderAttribute_get_MethodName_mC1499496A0CFF04AD9F315ABB8D3709508EBF23A (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____methodName_0;
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlSchemaProviderAttribute::get_IsAny()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSchemaProviderAttribute_get_IsAny_mEEC8E5450FC08174F878AE52B6DD1DB1E1E03014 (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____isAny_1;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSchemaProviderAttribute::set_IsAny(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaProviderAttribute_set_IsAny_mB887DF2421FEE1351AD0DDD7915CBB03434578E7 (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->____isAny_1 = L_0;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Multicast(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* currentDelegate = reinterpret_cast<XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___collection0, ___collectionItems1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Open(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___collection0, ___collectionItems1, method);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Closed(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___collection0, ___collectionItems1, method);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenStaticInvoker(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___collection0, ___collectionItems1);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_ClosedStaticInvoker(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___collection0, ___collectionItems1);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenVirtual(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
VirtualActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), ___collection0, ___collectionItems1);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenInterface(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
InterfaceActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___collection0, ___collectionItems1);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenGenericVirtual(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
GenericVirtualActionInvoker1< RuntimeObject* >::Invoke(method, ___collection0, ___collectionItems1);
}
void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenGenericInterface(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker1< RuntimeObject* >::Invoke(method, ___collection0, ___collectionItems1);
}
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationCollectionFixupCallback__ctor_mB50149D9773BF51E099E574127D057F454EC6DF8 (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 2;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Open;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_Multicast;
}
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::Invoke(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___collection0, ___collectionItems1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Multicast(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* currentDelegate = reinterpret_cast<XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___fixup0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Open(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___fixup0, method);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Closed(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___fixup0, method);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenStaticInvoker(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___fixup0);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_ClosedStaticInvoker(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___fixup0);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenVirtual(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___fixup0);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenInterface(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___fixup0);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenGenericVirtual(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
GenericVirtualActionInvoker0::Invoke(method, ___fixup0);
}
void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenGenericInterface(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker0::Invoke(method, ___fixup0);
}
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationFixupCallback__ctor_mB41C79CFAA7CD40502E2C121836DF8A12FB521DD (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Open;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_Multicast;
}
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::Invoke(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7 (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___fixup0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationGeneratedCode::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationGeneratedCode__ctor_mBC7B26FB29C099BB456D537954F2AF3673AC28C6 (XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Multicast(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef RuntimeObject* (*FunctionPointerType) (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method);
RuntimeObject* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* currentDelegate = reinterpret_cast<XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Open(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(method);
}
RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Closed(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, method);
}
RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_OpenStaticInvoker(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
return InvokerFuncInvoker0< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL);
}
RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_ClosedStaticInvoker(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2);
}
// System.Void System.Xml.Serialization.XmlSerializationReadCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReadCallback__ctor_m3E8920B08440F5007D60B89120F500D80C24B4F7 (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 0;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Open;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Closed;
}
__this->___extra_arg_5 = (intptr_t)&XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_Multicast;
}
// System.Object System.Xml.Serialization.XmlSerializationReadCallback::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationReader::Initialize(System.Xml.XmlReader,System.Xml.Serialization.XmlSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_Initialize_m6788A7360CD9F0E55CBD18B68481A2A8AB55A5B8 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* ___eventSource1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral01F7D45C6686E8A68EA2EAE840426E5CE0DB7A41);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5594ED9221B1600FB608D680692E07803A2EDBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
NullCheck(L_0);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1;
L_1 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_1, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
__this->___w3SchemaNS_14 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___w3SchemaNS_14), (void*)L_2);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = ___reader0;
NullCheck(L_3);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_4;
L_4 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_3);
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_4, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
__this->___w3InstanceNS_15 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___w3InstanceNS_15), (void*)L_5);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = ___reader0;
NullCheck(L_6);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7;
L_7 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_6);
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_7, _stringLiteralC5594ED9221B1600FB608D680692E07803A2EDBA);
__this->___w3InstanceNS2000_16 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___w3InstanceNS2000_16), (void*)L_8);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = ___reader0;
NullCheck(L_9);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10;
L_10 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_9);
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, _stringLiteral01F7D45C6686E8A68EA2EAE840426E5CE0DB7A41);
__this->___w3InstanceNS1999_17 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___w3InstanceNS1999_17), (void*)L_11);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = ___reader0;
NullCheck(L_12);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_13;
L_13 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_12);
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_13, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6);
__this->___soapNS_18 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___soapNS_18), (void*)L_14);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = ___reader0;
NullCheck(L_15);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_16;
L_16 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_15);
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_16, _stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46);
__this->___wsdlNS_19 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___wsdlNS_19), (void*)L_17);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = ___reader0;
NullCheck(L_18);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_19;
L_19 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_18);
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_19, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
__this->___nullX_20 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nullX_20), (void*)L_20);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_21 = ___reader0;
NullCheck(L_21);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22;
L_22 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_21);
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_22, _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100);
__this->___nil_21 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nil_21), (void*)L_23);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = ___reader0;
NullCheck(L_24);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_25;
L_25 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_24);
NullCheck(L_25);
String_t* L_26;
L_26 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_25, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
__this->___typeX_22 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->___typeX_22), (void*)L_26);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_27 = ___reader0;
NullCheck(L_27);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_28;
L_28 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_27);
NullCheck(L_28);
String_t* L_29;
L_29 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_28, _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662);
__this->___arrayType_23 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&__this->___arrayType_23), (void*)L_29);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = ___reader0;
__this->___reader_1 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_30);
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_31 = ___eventSource1;
__this->___eventSource_9 = L_31;
Il2CppCodeGenWriteBarrier((void**)(&__this->___eventSource_9), (void*)L_31);
String_t* L_32 = __this->___soapNS_18;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_33 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_33);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_33, _stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A, L_32, NULL);
__this->___arrayQName_24 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&__this->___arrayQName_24), (void*)L_33);
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationReader::InitIDs() */, __this);
return;
}
}
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::EnsureArrayList(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlSerializationReader_EnsureArrayList_m4F967D2DD5EFCFBEA524BB8FE5A608FE4A6BA956 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___list0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ___list0;
if (L_0)
{
goto IL_000a;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_1);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_1, NULL);
___list0 = L_1;
}
IL_000a:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = ___list0;
return L_2;
}
}
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::EnsureHashtable(System.Collections.Hashtable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* XmlSerializationReader_EnsureHashtable_m676AEE49C5641981561013079ECF69CE82957B06 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___hash0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___hash0;
if (L_0)
{
goto IL_000a;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_1);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_1, NULL);
___hash0 = L_1;
}
IL_000a:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = ___hash0;
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader__ctor_mE7A1AB3E151A31FE7D934FBFBB9823F5C0D70C68 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
XmlSerializationGeneratedCode__ctor_mBC7B26FB29C099BB456D537954F2AF3673AC28C6(__this, NULL);
return;
}
}
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::get_Document()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = __this->___document_0;
if (L_0)
{
goto IL_001e;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___reader_1;
NullCheck(L_1);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2;
L_2 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_1);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)il2cpp_codegen_object_new(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlDocument__ctor_m23D3FC333FDD50BBCAF64B57184A889E0F6B7468(L_3, L_2, NULL);
__this->___document_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___document_0), (void*)L_3);
}
IL_001e:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = __this->___document_0;
return L_4;
}
}
// System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::get_Reader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionFixup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_m846FB4EEF12E21F5803BC41685952AFE6A3D98E1 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* ___fixup0, const RuntimeMethod* method)
{
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___collFixups_3;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1;
L_1 = XmlSerializationReader_EnsureHashtable_m676AEE49C5641981561013079ECF69CE82957B06(__this, L_0, NULL);
__this->___collFixups_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___collFixups_3), (void*)L_1);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->___collFixups_3;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_3 = ___fixup0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40_inline(L_3, NULL);
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_5 = ___fixup0;
NullCheck(L_2);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_4, L_5);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->___delayedListFixups_8;
if (!L_6)
{
goto IL_0067;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___delayedListFixups_8;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_8 = ___fixup0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40_inline(L_8, NULL);
NullCheck(L_7);
bool L_10;
L_10 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_7, L_9);
if (!L_10)
{
goto IL_0067;
}
}
{
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_11 = ___fixup0;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_12 = __this->___delayedListFixups_8;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_13 = ___fixup0;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40_inline(L_13, NULL);
NullCheck(L_12);
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_12, L_14);
NullCheck(L_11);
CollectionFixup_set_CollectionItems_mE1B2C71D40112F90E2ECC65D1E14234BA2ED351F_inline(L_11, L_15, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_16 = __this->___delayedListFixups_8;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_17 = ___fixup0;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40_inline(L_17, NULL);
NullCheck(L_16);
VirtualActionInvoker1< RuntimeObject* >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_16, L_18);
}
IL_0067:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/Fixup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_mF54D9CAC7E4D3149F057CBDD182C76A2EC78F794 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* ___fixup0, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___fixups_2;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1;
L_1 = XmlSerializationReader_EnsureArrayList_m4F967D2DD5EFCFBEA524BB8FE5A608FE4A6BA956(__this, L_0, NULL);
__this->___fixups_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___fixups_2), (void*)L_1);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = __this->___fixups_2;
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_3 = ___fixup0;
NullCheck(L_2);
int32_t L_4;
L_4 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_m8F4D571A2124FFD8159D128335BB0E76C723814A (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* ___fixup0, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___collItemFixups_4;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1;
L_1 = XmlSerializationReader_EnsureArrayList_m4F967D2DD5EFCFBEA524BB8FE5A608FE4A6BA956(__this, L_0, NULL);
__this->___collItemFixups_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___collItemFixups_4), (void*)L_1);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = __this->___collItemFixups_4;
CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* L_3 = ___fixup0;
NullCheck(L_2);
int32_t L_4;
L_4 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddReadCallback(System.String,System.String,System.Type,System.Xml.Serialization.XmlSerializationReadCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddReadCallback_m7FBB39194FAA252273D04AAB981A83D81A690E98 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, Type_t* ___type2, XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* ___read3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* V_0 = NULL;
{
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_0 = (WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D*)il2cpp_codegen_object_new(WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D_il2cpp_TypeInfo_var);
NullCheck(L_0);
WriteCallbackInfo__ctor_m37F31F6AFF382B838F022DFF2F6C49AEE921D110(L_0, NULL);
V_0 = L_0;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_1 = V_0;
Type_t* L_2 = ___type2;
NullCheck(L_1);
L_1->___Type_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___Type_0), (void*)L_2);
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_3 = V_0;
String_t* L_4 = ___name0;
NullCheck(L_3);
L_3->___TypeName_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&L_3->___TypeName_1), (void*)L_4);
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_5 = V_0;
String_t* L_6 = ___ns1;
NullCheck(L_5);
L_5->___TypeNs_2 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___TypeNs_2), (void*)L_6);
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_7 = V_0;
XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* L_8 = ___read3;
NullCheck(L_7);
L_7->___Callback_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___Callback_3), (void*)L_8);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___typesCallbacks_5;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10;
L_10 = XmlSerializationReader_EnsureHashtable_m676AEE49C5641981561013079ECF69CE82957B06(__this, L_9, NULL);
__this->___typesCallbacks_5 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___typesCallbacks_5), (void*)L_10);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = __this->___typesCallbacks_5;
String_t* L_12 = ___name0;
String_t* L_13 = ___ns1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_14 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_14);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_14, L_12, L_13, NULL);
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_15 = V_0;
NullCheck(L_11);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_14, L_15);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddTarget(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddTarget_mF2FDE667DDECBA83C6CC7F7D0278E11B95FBDBC2 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, RuntimeObject* ___o1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___id0;
if (!L_0)
{
goto IL_0031;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___targets_7;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2;
L_2 = XmlSerializationReader_EnsureHashtable_m676AEE49C5641981561013079ECF69CE82957B06(__this, L_1, NULL);
__this->___targets_7 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___targets_7), (void*)L_2);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_3 = __this->___targets_7;
String_t* L_4 = ___id0;
NullCheck(L_3);
RuntimeObject* L_5;
L_5 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_3, L_4);
if (L_5)
{
goto IL_0054;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->___targets_7;
String_t* L_7 = ___id0;
RuntimeObject* L_8 = ___o1;
NullCheck(L_6);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_8);
return;
}
IL_0031:
{
RuntimeObject* L_9 = ___o1;
if (!L_9)
{
goto IL_0035;
}
}
{
return;
}
IL_0035:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = __this->___noIDTargets_6;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_11;
L_11 = XmlSerializationReader_EnsureArrayList_m4F967D2DD5EFCFBEA524BB8FE5A608FE4A6BA956(__this, L_10, NULL);
__this->___noIDTargets_6 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___noIDTargets_6), (void*)L_11);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_12 = __this->___noIDTargets_6;
RuntimeObject* L_13 = ___o1;
NullCheck(L_12);
int32_t L_14;
L_14 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_12, L_13);
}
IL_0054:
{
return;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader::CurrentTag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationReader_CurrentTag_mE1917EC42A8114332387EE718C252B726CA05E14 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A239B353DF341F4369D061CC4804CE665AC004F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDC9368BD45FDADA419F19715727AA00136EDF092);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2D53051A1FC8AFB412916CC43F2AC4BC8EA529C);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
{
case 0:
{
goto IL_0037;
}
case 1:
{
goto IL_0058;
}
case 2:
{
goto IL_0064;
}
case 3:
{
goto IL_007c;
}
case 4:
{
goto IL_007c;
}
case 5:
{
goto IL_0070;
}
case 6:
{
goto IL_006a;
}
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)15))))
{
goto IL_0076;
}
}
{
goto IL_007c;
}
IL_0037:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_4);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_1;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_6);
String_t* L_8;
L_8 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralDC9368BD45FDADA419F19715727AA00136EDF092, L_5, L_7, NULL);
return L_8;
}
IL_0058:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_9);
return L_10;
}
IL_0064:
{
return _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C;
}
IL_006a:
{
return _stringLiteral4A239B353DF341F4369D061CC4804CE665AC004F;
}
IL_0070:
{
return _stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554;
}
IL_0076:
{
return _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5;
}
IL_007c:
{
return _stringLiteralF2D53051A1FC8AFB412916CC43F2AC4BC8EA529C;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateReadOnlyCollectionException(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50623751D4FC8BA06CDD524BBE0F26D268939E09);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
String_t* L_1;
L_1 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral50623751D4FC8BA06CDD524BBE0F26D268939E09, L_0, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL);
return L_2;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownConstantException(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownConstantException_m0C39D77BDAD36BD8A62AC7BACAA8BA9767441E4F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___value0, Type_t* ___enumType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
Type_t* L_1 = ___enumType1;
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35, L_0, L_1, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL);
return L_3;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownNodeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0D69B39A960B22749E12E1012E42DDF3C1BAEF1B);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = XmlSerializationReader_CurrentTag_mE1917EC42A8114332387EE718C252B726CA05E14(__this, NULL);
String_t* L_1;
L_1 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_0, _stringLiteral0D69B39A960B22749E12E1012E42DDF3C1BAEF1B, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL);
return L_2;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownTypeException(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownTypeException_m158A6883E878D4147D071564F3BFF3B6B42D5296 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0145A7D045941D45D0398C5908900FEC7A46B7E2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27D89C40DD20204BB03D3F4DDE04A0E0DBFCD089);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4C55B3EB787E57943196EB442BC171A969DCDCA);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral0145A7D045941D45D0398C5908900FEC7A46B7E2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral0145A7D045941D45D0398C5908900FEC7A46B7E2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ___type0;
NullCheck(L_3);
String_t* L_4;
L_4 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_3, NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_4);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_2;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteralB4C55B3EB787E57943196EB442BC171A969DCDCA);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralB4C55B3EB787E57943196EB442BC171A969DCDCA);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_5;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___type0;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_7, NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_6;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral27D89C40DD20204BB03D3F4DDE04A0E0DBFCD089);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral27D89C40DD20204BB03D3F4DDE04A0E0DBFCD089);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9;
String_t* L_11;
L_11 = XmlSerializationReader_CurrentTag_mE1917EC42A8114332387EE718C252B726CA05E14(__this, NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_11);
String_t* L_12;
L_12 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_10, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_13 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_13);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_13, L_12, NULL);
return L_13;
}
}
// System.Array System.Xml.Serialization.XmlSerializationReader::EnsureArrayIndex(System.Array,System.Int32,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeArray* ___a0, int32_t ___index1, Type_t* ___elementType2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RuntimeArray* V_1 = NULL;
{
RuntimeArray* L_0 = ___a0;
if (!L_0)
{
goto IL_000e;
}
}
{
int32_t L_1 = ___index1;
RuntimeArray* L_2 = ___a0;
NullCheck(L_2);
int32_t L_3;
L_3 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_2, NULL);
if ((((int32_t)L_1) >= ((int32_t)L_3)))
{
goto IL_000e;
}
}
{
RuntimeArray* L_4 = ___a0;
return L_4;
}
IL_000e:
{
RuntimeArray* L_5 = ___a0;
if (L_5)
{
goto IL_0016;
}
}
{
V_0 = ((int32_t)32);
goto IL_001f;
}
IL_0016:
{
RuntimeArray* L_6 = ___a0;
NullCheck(L_6);
int32_t L_7;
L_7 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_6, NULL);
V_0 = ((int32_t)il2cpp_codegen_multiply(L_7, 2));
}
IL_001f:
{
Type_t* L_8 = ___elementType2;
int32_t L_9 = V_0;
RuntimeArray* L_10;
L_10 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_8, L_9, NULL);
V_1 = L_10;
RuntimeArray* L_11 = ___a0;
if (!L_11)
{
goto IL_0032;
}
}
{
RuntimeArray* L_12 = ___a0;
RuntimeArray* L_13 = V_1;
int32_t L_14 = ___index1;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F(L_12, L_13, L_14, NULL);
}
IL_0032:
{
RuntimeArray* L_15 = V_1;
return L_15;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::GetNullAttr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_GetNullAttr_m1393BD163FC969C02A146408DD0A36FE0E47D5CF (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
String_t* L_1 = __this->___nullX_20;
String_t* L_2 = __this->___w3InstanceNS_15;
NullCheck(L_0);
String_t* L_3;
L_3 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, L_2);
V_0 = L_3;
String_t* L_4 = V_0;
if (L_4)
{
goto IL_0069;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1;
String_t* L_6 = __this->___nil_21;
String_t* L_7 = __this->___w3InstanceNS_15;
NullCheck(L_5);
String_t* L_8;
L_8 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_5, L_6, L_7);
V_0 = L_8;
String_t* L_9 = V_0;
if (L_9)
{
goto IL_0069;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1;
String_t* L_11 = __this->___nullX_20;
String_t* L_12 = __this->___w3InstanceNS2000_16;
NullCheck(L_10);
String_t* L_13;
L_13 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_10, L_11, L_12);
V_0 = L_13;
String_t* L_14 = V_0;
if (L_14)
{
goto IL_0069;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = __this->___reader_1;
String_t* L_16 = __this->___nullX_20;
String_t* L_17 = __this->___w3InstanceNS1999_17;
NullCheck(L_15);
String_t* L_18;
L_18 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_15, L_16, L_17);
V_0 = L_18;
}
IL_0069:
{
String_t* L_19 = V_0;
return (bool)((!(((RuntimeObject*)(String_t*)L_19) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::GetTarget(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___targets_7;
if (L_0)
{
goto IL_000a;
}
}
{
return NULL;
}
IL_000a:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___targets_7;
String_t* L_2 = ___id0;
NullCheck(L_1);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2);
V_0 = L_3;
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_003a;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->___referencedObjects_11;
if (L_5)
{
goto IL_002d;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_6);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_6, NULL);
__this->___referencedObjects_11 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___referencedObjects_11), (void*)L_6);
}
IL_002d:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___referencedObjects_11;
RuntimeObject* L_8 = V_0;
RuntimeObject* L_9 = V_0;
NullCheck(L_7);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, L_8, L_9);
}
IL_003a:
{
RuntimeObject* L_10 = V_0;
return L_10;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::TargetReady(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_TargetReady_m793FC7F673F85FEAD9AFA131D03C82D27CE925A6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, const RuntimeMethod* method)
{
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___targets_7;
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___targets_7;
String_t* L_2 = ___id0;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_2);
return L_3;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::GetXsiType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, 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*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_1 = __this->___typeX_22;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
V_0 = L_2;
String_t* L_3 = V_0;
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, L_4, NULL);
if (L_5)
{
goto IL_0027;
}
}
{
String_t* L_6 = V_0;
if (L_6)
{
goto IL_0079;
}
}
IL_0027:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7;
L_7 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_8 = __this->___typeX_22;
String_t* L_9 = __this->___w3InstanceNS1999_17;
NullCheck(L_7);
String_t* L_10;
L_10 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_7, L_8, L_9);
V_0 = L_10;
String_t* L_11 = V_0;
String_t* L_12 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_13;
L_13 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, L_12, NULL);
if (L_13)
{
goto IL_004f;
}
}
{
String_t* L_14 = V_0;
if (L_14)
{
goto IL_0079;
}
}
IL_004f:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15;
L_15 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_16 = __this->___typeX_22;
String_t* L_17 = __this->___w3InstanceNS2000_16;
NullCheck(L_15);
String_t* L_18;
L_18 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_15, L_16, L_17);
V_0 = L_18;
String_t* L_19 = V_0;
String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_19, L_20, NULL);
if (L_21)
{
goto IL_0077;
}
}
{
String_t* L_22 = V_0;
if (L_22)
{
goto IL_0079;
}
}
IL_0077:
{
return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL;
}
IL_0079:
{
String_t* L_23 = V_0;
NullCheck(L_23);
int32_t L_24;
L_24 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_23, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, NULL);
V_1 = L_24;
int32_t L_25 = V_1;
if ((!(((uint32_t)L_25) == ((uint32_t)(-1)))))
{
goto IL_009b;
}
}
{
String_t* L_26 = V_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_27;
L_27 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_27);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_29 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_29);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_29, L_26, L_28, NULL);
return L_29;
}
IL_009b:
{
String_t* L_30 = V_0;
int32_t L_31 = V_1;
NullCheck(L_30);
String_t* L_32;
L_32 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_30, 0, L_31, NULL);
V_2 = L_32;
String_t* L_33 = V_0;
int32_t L_34 = V_1;
NullCheck(L_33);
String_t* L_35;
L_35 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_33, ((int32_t)il2cpp_codegen_add(L_34, 1)), NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36;
L_36 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_37 = V_2;
NullCheck(L_36);
String_t* L_38;
L_38 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_36, L_37);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_39 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_39);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_39, L_35, L_38, NULL);
return L_39;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::IsXmlnsAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_IsXmlnsAttribute_m82CD3BEBE6E81699B23FDC923B5029DAFB05B06D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral450A121B534CE8146DA53AF9EA5328F6753B270F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___name0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) >= ((int32_t)5)))
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)5))))
{
goto IL_001d;
}
}
{
String_t* L_4 = ___name0;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
return L_5;
}
IL_001d:
{
String_t* L_6 = ___name0;
NullCheck(L_6);
bool L_7;
L_7 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_6, _stringLiteral450A121B534CE8146DA53AF9EA5328F6753B270F, NULL);
return L_7;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::ParseWsdlArrayType(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ParseWsdlArrayType_mD66086D7B4A80B5F9F77DC8546472BD1B8087598 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___attr0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_0);
String_t* L_2 = __this->___wsdlNS_19;
bool L_3;
L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, L_2, NULL);
if (!L_3)
{
goto IL_006f;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4 = ___attr0;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_4);
String_t* L_6 = __this->___arrayType_23;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, L_6, NULL);
if (!L_7)
{
goto IL_006f;
}
}
{
V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8 = ___attr0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_8);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeTranslator_ParseArrayType_m034F2CC1D633A475E362A3EC265A89BF1016C262(L_9, (&V_1), (&V_0), (&V_2), NULL);
String_t* L_10 = V_0;
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_10, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
if (!L_11)
{
goto IL_0061;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12;
L_12 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_13 = V_0;
NullCheck(L_12);
String_t* L_14;
L_14 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_12, L_13);
String_t* L_15;
L_15 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_14, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, NULL);
V_0 = L_15;
}
IL_0061:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = ___attr0;
String_t* L_17 = V_0;
String_t* L_18 = V_1;
String_t* L_19 = V_2;
String_t* L_20;
L_20 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_17, L_18, L_19, NULL);
NullCheck(L_16);
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_16, L_20);
}
IL_006f:
{
return;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadElementQualifiedName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ReadElementQualifiedName_m847D8D30671D41FE44EB696DB93C1B5281AFEFAD (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __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;
}
{
int32_t L_0 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_0, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___reader_1;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_1);
if (!L_2)
{
goto IL_0032;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___reader_1;
NullCheck(L_3);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_3);
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5;
L_5 = XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3(__this, L_4, NULL);
return L_5;
}
IL_0032:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_1;
NullCheck(L_6);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_6);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___reader_1;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_7);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9;
L_9 = XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3(__this, L_8, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1;
NullCheck(L_10);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_10);
return L_9;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::ReadEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_0, 1));
goto IL_001b;
}
IL_0010:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___reader_1;
NullCheck(L_1);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_1);
}
IL_001b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((((int32_t)L_3) == ((int32_t)((int32_t)13))))
{
goto IL_0010;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
if (!L_5)
{
goto IL_0043;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_1;
NullCheck(L_6);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_6);
return;
}
IL_0043:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___reader_1;
NullCheck(L_7);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_7);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = XmlSerializationReader_GetNullAttr_m1393BD163FC969C02A146408DD0A36FE0E47D5CF(__this, NULL);
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_1, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_2);
if (!L_3)
{
goto IL_0032;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1;
NullCheck(L_4);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_4);
return (bool)1;
}
IL_0032:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1;
NullCheck(L_5);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_5);
goto IL_0046;
}
IL_003f:
{
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL);
}
IL_0046:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_1;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_6);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)15)))))
{
goto IL_003f;
}
}
{
XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL);
return (bool)1;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadNullableQualifiedName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ReadNullableQualifiedName_mCD286FFAEE778FD6CC3627B0F11085BAD744015D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL;
}
IL_000a:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1;
L_1 = XmlSerializationReader_ReadElementQualifiedName_m847D8D30671D41FE44EB696DB93C1B5281AFEFAD(__this, NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader::ReadNullableString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationReader_ReadNullableString_mF87F51B907EF4DC621A112ACDA569F46CAF7733F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (String_t*)NULL;
}
IL_000a:
{
int32_t L_1 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_1, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(45 /* System.String System.Xml.XmlReader::ReadElementString() */, L_2);
return L_3;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2;
L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_2);
RuntimeObject* L_4;
L_4 = XmlSerializationReader_ReadReferencedElement_mB6746AFA7D9CF05419DC84F682B029F0AEB8E41D(__this, L_1, L_3, NULL);
return L_4;
}
}
// System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo System.Xml.Serialization.XmlSerializationReader::GetCallbackInfo(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* XmlSerializationReader_GetCallbackInfo_mDFDA259FC5C4CADF68A1A75B2096B4DBF3B6E25C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___typesCallbacks_5;
if (L_0)
{
goto IL_0019;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_1);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_1, NULL);
__this->___typesCallbacks_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___typesCallbacks_5), (void*)L_1);
VirtualActionInvoker0::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializationReader::InitCallbacks() */, __this);
}
IL_0019:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->___typesCallbacks_5;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ___qname0;
NullCheck(L_2);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
return ((WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D*)CastclassClass((RuntimeObject*)L_4, WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D_il2cpp_TypeInfo_var));
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencedElement_mB6746AFA7D9CF05419DC84F682B029F0AEB8E41D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
s_Il2CppMethodInitialized = true;
}
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_0 = NULL;
String_t* V_1 = NULL;
RuntimeObject* V_2 = NULL;
String_t* V_3 = NULL;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* V_4 = NULL;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* V_5 = NULL;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* G_B8_0 = NULL;
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0;
L_0 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL);
V_0 = L_0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1 = V_0;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_2;
L_2 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_1, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_2)
{
goto IL_0018;
}
}
{
String_t* L_3 = ___name0;
String_t* L_4 = ___ns1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_5);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_5, L_3, L_4, NULL);
V_0 = L_5;
}
IL_0018:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6;
L_6 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_6, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
V_1 = L_7;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8;
L_8 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_9 = __this->___arrayType_23;
String_t* L_10 = __this->___soapNS_18;
NullCheck(L_8);
String_t* L_11;
L_11 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_8, L_9, L_10);
V_3 = L_11;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_12 = V_0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_13 = __this->___arrayQName_24;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_14;
L_14 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_12, L_13, NULL);
if (L_14)
{
goto IL_005b;
}
}
{
String_t* L_15 = V_3;
if (!L_15)
{
goto IL_00cc;
}
}
{
String_t* L_16 = V_3;
NullCheck(L_16);
int32_t L_17;
L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL);
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_00cc;
}
}
IL_005b:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_18 = __this->___collFixups_3;
if (L_18)
{
goto IL_0066;
}
}
{
G_B8_0 = ((CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702*)(NULL));
goto IL_0077;
}
IL_0066:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_19 = __this->___collFixups_3;
String_t* L_20 = V_1;
NullCheck(L_19);
RuntimeObject* L_21;
L_21 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_19, L_20);
G_B8_0 = ((CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702*)CastclassClass((RuntimeObject*)L_21, CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var));
}
IL_0077:
{
V_4 = G_B8_0;
bool L_22;
L_22 = XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C(__this, (&V_2), NULL);
if (!L_22)
{
goto IL_00b1;
}
}
{
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_23 = V_4;
if (!L_23)
{
goto IL_00f4;
}
}
{
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_24 = V_4;
NullCheck(L_24);
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_25;
L_25 = CollectionFixup_get_Callback_m1F1435C58DB8A0FDDC6EF46BAE8C871531BEDBAE_inline(L_24, NULL);
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_26 = V_4;
NullCheck(L_26);
RuntimeObject* L_27;
L_27 = CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0_inline(L_26, NULL);
RuntimeObject* L_28 = V_2;
NullCheck(L_25);
XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_inline(L_25, L_27, L_28, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_29 = __this->___collFixups_3;
String_t* L_30 = V_1;
NullCheck(L_29);
VirtualActionInvoker1< RuntimeObject* >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_29, L_30);
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_31 = V_4;
NullCheck(L_31);
RuntimeObject* L_32;
L_32 = CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0_inline(L_31, NULL);
V_2 = L_32;
goto IL_00f4;
}
IL_00b1:
{
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_33 = V_4;
if (!L_33)
{
goto IL_00f4;
}
}
{
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_34 = V_4;
RuntimeObject* L_35 = V_2;
NullCheck(L_34);
CollectionFixup_set_CollectionItems_mE1B2C71D40112F90E2ECC65D1E14234BA2ED351F_inline(L_34, (RuntimeObject*)((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_35, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), NULL);
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_36 = V_4;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0_inline(L_36, NULL);
V_2 = L_37;
goto IL_00f4;
}
IL_00cc:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_38 = V_0;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_39;
L_39 = XmlSerializationReader_GetCallbackInfo_mDFDA259FC5C4CADF68A1A75B2096B4DBF3B6E25C(__this, L_38, NULL);
V_5 = L_39;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_40 = V_5;
if (L_40)
{
goto IL_00e7;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_41 = V_0;
String_t* L_42 = V_1;
RuntimeObject* L_43;
L_43 = XmlSerializationReader_ReadTypedPrimitive_m01A7EFB4CC732A91E92D2FC847489B5AF5FBBFC0(__this, L_41, (bool)((!(((RuntimeObject*)(String_t*)L_42) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), NULL);
V_2 = L_43;
goto IL_00f4;
}
IL_00e7:
{
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_44 = V_5;
NullCheck(L_44);
XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* L_45 = L_44->___Callback_3;
NullCheck(L_45);
RuntimeObject* L_46;
L_46 = XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_inline(L_45, NULL);
V_2 = L_46;
}
IL_00f4:
{
String_t* L_47 = V_1;
RuntimeObject* L_48 = V_2;
XmlSerializationReader_AddTarget_mF2FDE667DDECBA83C6CC7F7D0278E11B95FBDBC2(__this, L_47, L_48, NULL);
RuntimeObject* L_49 = V_2;
return L_49;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadList(System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject** ___resultList0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
int32_t V_5 = 0;
RuntimeArray* V_6 = NULL;
String_t* V_7 = NULL;
String_t* V_8 = NULL;
bool V_9 = false;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* V_10 = NULL;
int32_t V_11 = 0;
String_t* V_12 = NULL;
RuntimeObject* V_13 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_1 = __this->___arrayType_23;
String_t* L_2 = __this->___soapNS_18;
NullCheck(L_0);
String_t* L_3;
L_3 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, L_2);
V_0 = L_3;
String_t* L_4 = V_0;
if (L_4)
{
goto IL_0033;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5;
L_5 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_6 = __this->___arrayType_23;
String_t* L_7 = __this->___wsdlNS_19;
NullCheck(L_5);
String_t* L_8;
L_8 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_5, L_6, L_7);
V_0 = L_8;
}
IL_0033:
{
String_t* L_9 = V_0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10;
L_10 = XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3(__this, L_9, NULL);
V_1 = L_10;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_11 = V_1;
NullCheck(L_11);
String_t* L_12;
L_12 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_11, NULL);
NullCheck(L_12);
int32_t L_13;
L_13 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_12, ((int32_t)91), NULL);
V_2 = L_13;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_14 = V_1;
NullCheck(L_14);
String_t* L_15;
L_15 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_14, NULL);
int32_t L_16 = V_2;
NullCheck(L_15);
String_t* L_17;
L_17 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_15, L_16, NULL);
V_3 = L_17;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_18 = V_1;
NullCheck(L_18);
String_t* L_19;
L_19 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_18, NULL);
int32_t L_20 = V_2;
NullCheck(L_19);
String_t* L_21;
L_21 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_19, 0, L_20, NULL);
V_4 = L_21;
String_t* L_22 = V_3;
String_t* L_23 = V_3;
NullCheck(L_23);
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL);
NullCheck(L_22);
String_t* L_25;
L_25 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_22, 1, ((int32_t)il2cpp_codegen_subtract(L_24, 2)), NULL);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_26;
L_26 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
int32_t L_27;
L_27 = Int32_Parse_m829FA04F6E40653134D0F9C6671DFF28F6EECC4B(L_25, L_26, NULL);
V_5 = L_27;
String_t* L_28 = V_4;
NullCheck(L_28);
int32_t L_29;
L_29 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_28, ((int32_t)91), NULL);
V_2 = L_29;
int32_t L_30 = V_2;
if ((!(((uint32_t)L_30) == ((uint32_t)(-1)))))
{
goto IL_0096;
}
}
{
String_t* L_31 = V_4;
NullCheck(L_31);
int32_t L_32;
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
V_2 = L_32;
}
IL_0096:
{
String_t* L_33 = V_4;
int32_t L_34 = V_2;
NullCheck(L_33);
String_t* L_35;
L_35 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_33, 0, L_34, NULL);
V_7 = L_35;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_36 = V_1;
NullCheck(L_36);
String_t* L_37;
L_37 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_36, NULL);
String_t* L_38 = __this->___w3SchemaNS_14;
bool L_39;
L_39 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_37, L_38, NULL);
if (!L_39)
{
goto IL_00d6;
}
}
{
String_t* L_40 = V_7;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_41;
L_41 = TypeTranslator_GetPrimitiveTypeData_m57312826DECF143595FF371D2E67BEDB0F11C36F(L_40, NULL);
NullCheck(L_41);
Type_t* L_42;
L_42 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_41, NULL);
NullCheck(L_42);
String_t* L_43;
L_43 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_42);
String_t* L_44 = V_4;
int32_t L_45 = V_2;
NullCheck(L_44);
String_t* L_46;
L_46 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_44, L_45, NULL);
String_t* L_47;
L_47 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_43, L_46, NULL);
V_8 = L_47;
goto IL_011c;
}
IL_00d6:
{
String_t* L_48 = V_7;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_49 = V_1;
NullCheck(L_49);
String_t* L_50;
L_50 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_49, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_51 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_51);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_51, L_48, L_50, NULL);
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_52;
L_52 = XmlSerializationReader_GetCallbackInfo_mDFDA259FC5C4CADF68A1A75B2096B4DBF3B6E25C(__this, L_51, NULL);
V_10 = L_52;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_53 = V_10;
NullCheck(L_53);
Type_t* L_54 = L_53->___Type_0;
NullCheck(L_54);
String_t* L_55;
L_55 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_54);
String_t* L_56 = V_4;
int32_t L_57 = V_2;
NullCheck(L_56);
String_t* L_58;
L_58 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_56, L_57, NULL);
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_59 = V_10;
NullCheck(L_59);
Type_t* L_60 = L_59->___Type_0;
NullCheck(L_60);
Assembly_t* L_61;
L_61 = VirtualFuncInvoker0< Assembly_t* >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_60);
NullCheck(L_61);
String_t* L_62;
L_62 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.Assembly::get_FullName() */, L_61);
String_t* L_63;
L_63 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_55, L_58, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, L_62, NULL);
V_8 = L_63;
}
IL_011c:
{
String_t* L_64 = V_8;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_65;
L_65 = il2cpp_codegen_get_type(L_64, Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var, XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C_RuntimeMethod_var);
int32_t L_66 = V_5;
RuntimeArray* L_67;
L_67 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_65, L_66, NULL);
V_6 = L_67;
V_9 = (bool)1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_68;
L_68 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_68);
bool L_69;
L_69 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_68);
if (!L_69)
{
goto IL_015a;
}
}
{
int32_t L_70 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_70, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_71;
L_71 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_71);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_71);
goto IL_01e7;
}
IL_015a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_72;
L_72 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_72);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_72);
V_11 = 0;
goto IL_01cf;
}
IL_016a:
{
int32_t L_73 = __this->___whileIterationCount_13;
__this->___whileIterationCount_13 = ((int32_t)il2cpp_codegen_add(L_73, 1));
int32_t L_74 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_74, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_75;
L_75 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_75);
int32_t L_76;
L_76 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_75);
String_t* L_77 = V_4;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_78 = V_1;
NullCheck(L_78);
String_t* L_79;
L_79 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_78, NULL);
RuntimeObject* L_80;
L_80 = XmlSerializationReader_ReadReferencingElement_m83079F8026EBB9E442B5F5BD09D7E5C1B53595D0(__this, L_77, L_79, (&V_12), NULL);
V_13 = L_80;
String_t* L_81 = V_12;
if (L_81)
{
goto IL_01b5;
}
}
{
RuntimeArray* L_82 = V_6;
RuntimeObject* L_83 = V_13;
int32_t L_84 = V_11;
NullCheck(L_82);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_82, L_83, L_84, NULL);
goto IL_01c9;
}
IL_01b5:
{
RuntimeArray* L_85 = V_6;
int32_t L_86 = V_11;
String_t* L_87 = V_12;
CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* L_88 = (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11*)il2cpp_codegen_object_new(CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11_il2cpp_TypeInfo_var);
NullCheck(L_88);
CollectionItemFixup__ctor_mE654E8182AAE3013271D452C051AE10ADFD9C2AC(L_88, L_85, L_86, L_87, NULL);
XmlSerializationReader_AddFixup_m8F4D571A2124FFD8159D128335BB0E76C723814A(__this, L_88, NULL);
V_9 = (bool)0;
}
IL_01c9:
{
int32_t L_89 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add(L_89, 1));
}
IL_01cf:
{
int32_t L_90 = V_11;
int32_t L_91 = V_5;
if ((((int32_t)L_90) < ((int32_t)L_91)))
{
goto IL_016a;
}
}
{
__this->___whileIterationCount_13 = 0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_92;
L_92 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_92);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_92);
}
IL_01e7:
{
RuntimeObject** L_93 = ___resultList0;
RuntimeArray* L_94 = V_6;
*((RuntimeObject**)L_93) = (RuntimeObject*)L_94;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_93, (void*)(RuntimeObject*)L_94);
bool L_95 = V_9;
return L_95;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::ReadReferencedElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_2;
memset((&V_2), 0, sizeof(V_2));
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* V_5 = NULL;
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* V_6 = NULL;
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* V_7 = NULL;
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_8;
memset((&V_8), 0, sizeof(V_8));
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
V_0 = L_3;
goto IL_0055;
}
IL_001a:
{
int32_t L_4 = __this->___whileIterationCount_13;
__this->___whileIterationCount_13 = ((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_5, 1));
RuntimeObject* L_6;
L_6 = XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___reader_1;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_7);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_9);
V_0 = L_10;
}
IL_0055:
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)15))))
{
goto IL_005d;
}
}
{
int32_t L_12 = V_0;
if (L_12)
{
goto IL_001a;
}
}
IL_005d:
{
__this->___whileIterationCount_13 = 0;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_13 = __this->___delayedListFixups_8;
if (!L_13)
{
goto IL_00ba;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_14 = __this->___delayedListFixups_8;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_14);
V_1 = L_15;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a9:
{// begin finally (depth: 1)
{
RuntimeObject* L_16 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_3;
if (!L_17)
{
goto IL_00b9;
}
}
{
RuntimeObject* L_18 = V_3;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_18);
}
IL_00b9:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_009f_1;
}
IL_007a_1:
{
RuntimeObject* L_19 = V_1;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19);
V_2 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_20, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
RuntimeObject* L_21;
L_21 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_2), NULL);
RuntimeObject* L_22;
L_22 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_2), NULL);
XmlSerializationReader_AddTarget_mF2FDE667DDECBA83C6CC7F7D0278E11B95FBDBC2(__this, ((String_t*)CastclassSealed((RuntimeObject*)L_21, String_t_il2cpp_TypeInfo_var)), L_22, NULL);
}
IL_009f_1:
{
RuntimeObject* L_23 = V_1;
NullCheck(L_23);
bool L_24;
L_24 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
if (L_24)
{
goto IL_007a_1;
}
}
{
goto IL_00ba;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00ba:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_25 = __this->___collItemFixups_4;
if (!L_25)
{
goto IL_011c;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = __this->___collItemFixups_4;
NullCheck(L_26);
RuntimeObject* L_27;
L_27 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_26);
V_4 = L_27;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_010a:
{// begin finally (depth: 1)
{
RuntimeObject* L_28 = V_4;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_28, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_29 = V_3;
if (!L_29)
{
goto IL_011b;
}
}
{
RuntimeObject* L_30 = V_3;
NullCheck(L_30);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_30);
}
IL_011b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00ff_1;
}
IL_00d1_1:
{
RuntimeObject* L_31 = V_4;
NullCheck(L_31);
RuntimeObject* L_32;
L_32 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_31);
V_5 = ((CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11*)CastclassClass((RuntimeObject*)L_32, CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11_il2cpp_TypeInfo_var));
CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* L_33 = V_5;
NullCheck(L_33);
RuntimeArray* L_34;
L_34 = CollectionItemFixup_get_Collection_m3A3D1F07DD384677EB43842B4E0C9AE6CAA8B8F6_inline(L_33, NULL);
CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* L_35 = V_5;
NullCheck(L_35);
String_t* L_36;
L_36 = CollectionItemFixup_get_Id_m01A755FF6A3F989910289A67DD5ADFA0528FD39F_inline(L_35, NULL);
RuntimeObject* L_37;
L_37 = XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F(__this, L_36, NULL);
CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* L_38 = V_5;
NullCheck(L_38);
int32_t L_39;
L_39 = CollectionItemFixup_get_Index_m455C70697C9BD61D8E47E5867796671FAECBF958_inline(L_38, NULL);
NullCheck(L_34);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_34, L_37, L_39, NULL);
}
IL_00ff_1:
{
RuntimeObject* L_40 = V_4;
NullCheck(L_40);
bool L_41;
L_41 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_40);
if (L_41)
{
goto IL_00d1_1;
}
}
{
goto IL_011c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_011c:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_42 = __this->___collFixups_3;
if (!L_42)
{
goto IL_017d;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_43 = __this->___collFixups_3;
NullCheck(L_43);
RuntimeObject* L_44;
L_44 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(39 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_43);
NullCheck(L_44);
RuntimeObject* L_45;
L_45 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_44);
V_4 = L_45;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_016b:
{// begin finally (depth: 1)
{
RuntimeObject* L_46 = V_4;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_46, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_47 = V_3;
if (!L_47)
{
goto IL_017c;
}
}
{
RuntimeObject* L_48 = V_3;
NullCheck(L_48);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_48);
}
IL_017c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0160_1;
}
IL_0138_1:
{
RuntimeObject* L_49 = V_4;
NullCheck(L_49);
RuntimeObject* L_50;
L_50 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_49);
V_6 = ((CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702*)CastclassClass((RuntimeObject*)L_50, CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var));
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_51 = V_6;
NullCheck(L_51);
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_52;
L_52 = CollectionFixup_get_Callback_m1F1435C58DB8A0FDDC6EF46BAE8C871531BEDBAE_inline(L_51, NULL);
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_53 = V_6;
NullCheck(L_53);
RuntimeObject* L_54;
L_54 = CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0_inline(L_53, NULL);
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_55 = V_6;
NullCheck(L_55);
RuntimeObject* L_56;
L_56 = CollectionFixup_get_CollectionItems_m7C8D7CB07A7C17F517B09A5145424EB1DE0EB497_inline(L_55, NULL);
NullCheck(L_52);
XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_inline(L_52, L_54, L_56, NULL);
}
IL_0160_1:
{
RuntimeObject* L_57 = V_4;
NullCheck(L_57);
bool L_58;
L_58 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_57);
if (L_58)
{
goto IL_0138_1;
}
}
{
goto IL_017d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_017d:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_59 = __this->___fixups_2;
if (!L_59)
{
goto IL_01cd;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_60 = __this->___fixups_2;
NullCheck(L_60);
RuntimeObject* L_61;
L_61 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_60);
V_4 = L_61;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01bb:
{// begin finally (depth: 1)
{
RuntimeObject* L_62 = V_4;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_62, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_63 = V_3;
if (!L_63)
{
goto IL_01cc;
}
}
{
RuntimeObject* L_64 = V_3;
NullCheck(L_64);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_64);
}
IL_01cc:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01b0_1;
}
IL_0194_1:
{
RuntimeObject* L_65 = V_4;
NullCheck(L_65);
RuntimeObject* L_66;
L_66 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_65);
V_7 = ((Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)CastclassClass((RuntimeObject*)L_66, Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var));
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_67 = V_7;
NullCheck(L_67);
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_68;
L_68 = Fixup_get_Callback_mF6D51DD8D4089ED7510FA16D29095F75BFB54D9B_inline(L_67, NULL);
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_69 = V_7;
NullCheck(L_68);
XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_inline(L_68, L_69, NULL);
}
IL_01b0_1:
{
RuntimeObject* L_70 = V_4;
NullCheck(L_70);
bool L_71;
L_71 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_70);
if (L_71)
{
goto IL_0194_1;
}
}
{
goto IL_01cd;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01cd:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_72 = __this->___targets_7;
if (!L_72)
{
goto IL_0249;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_73 = __this->___targets_7;
NullCheck(L_73);
RuntimeObject* L_74;
L_74 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_73);
V_1 = L_74;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0238:
{// begin finally (depth: 1)
{
RuntimeObject* L_75 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_75, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_76 = V_3;
if (!L_76)
{
goto IL_0248;
}
}
{
RuntimeObject* L_77 = V_3;
NullCheck(L_77);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_77);
}
IL_0248:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_022e_1;
}
IL_01e3_1:
{
RuntimeObject* L_78 = V_1;
NullCheck(L_78);
RuntimeObject* L_79;
L_79 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_78);
V_8 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_79, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
RuntimeObject* L_80;
L_80 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_8), NULL);
if (!L_80)
{
goto IL_022e_1;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_81 = __this->___referencedObjects_11;
if (!L_81)
{
goto IL_0215_1;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_82 = __this->___referencedObjects_11;
RuntimeObject* L_83;
L_83 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_8), NULL);
NullCheck(L_82);
bool L_84;
L_84 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_82, L_83);
if (L_84)
{
goto IL_022e_1;
}
}
IL_0215_1:
{
RuntimeObject* L_85;
L_85 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_8), NULL);
RuntimeObject* L_86;
L_86 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_8), NULL);
XmlSerializationReader_UnreferencedObject_m4487CEE93EAE9E4A76ACCE73F1336B21E7060461(__this, ((String_t*)CastclassSealed((RuntimeObject*)L_85, String_t_il2cpp_TypeInfo_var)), L_86, NULL);
}
IL_022e_1:
{
RuntimeObject* L_87 = V_1;
NullCheck(L_87);
bool L_88;
L_88 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_87);
if (L_88)
{
goto IL_01e3_1;
}
}
{
goto IL_0249;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0249:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t** ___fixupReference0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2;
L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_2);
String_t** L_4 = ___fixupReference0;
RuntimeObject* L_5;
L_5 = XmlSerializationReader_ReadReferencingElement_mCF80446EFFF59F06F15AF7F1A96CADD62E7BCB43(__this, L_1, L_3, (bool)0, L_4, NULL);
return L_5;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_m83079F8026EBB9E442B5F5BD09D7E5C1B53595D0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, String_t** ___fixupReference2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
String_t** L_2 = ___fixupReference2;
RuntimeObject* L_3;
L_3 = XmlSerializationReader_ReadReferencingElement_mCF80446EFFF59F06F15AF7F1A96CADD62E7BCB43(__this, L_0, L_1, (bool)0, L_2, NULL);
return L_3;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.Boolean,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_mCF80446EFFF59F06F15AF7F1A96CADD62E7BCB43 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___name0, String_t* ___ns1, bool ___elementCanBeType2, String_t** ___fixupReference3, 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*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6E343F1FC14B98DB00C87F0E3819524F17E1996);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL;
String_t* V_2 = NULL;
RuntimeObject* V_3 = NULL;
int32_t V_4 = 0;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* V_5 = NULL;
{
bool L_0;
L_0 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL);
if (!L_0)
{
goto IL_000e;
}
}
{
String_t** L_1 = ___fixupReference3;
*((RuntimeObject**)L_1) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL);
return NULL;
}
IL_000e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2;
L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_2, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED);
V_0 = L_3;
String_t* L_4 = V_0;
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_6;
L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, L_5, NULL);
if (L_6)
{
goto IL_0032;
}
}
{
String_t* L_7 = V_0;
if (L_7)
{
goto IL_00f1;
}
}
IL_0032:
{
String_t** L_8 = ___fixupReference3;
*((RuntimeObject**)L_8) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9;
L_9 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL);
V_1 = L_9;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10 = V_1;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_11;
L_11 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_10, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_11)
{
goto IL_004e;
}
}
{
String_t* L_12 = ___name0;
String_t* L_13 = ___ns1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_14 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_14);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_14, L_12, L_13, NULL);
V_1 = L_14;
}
IL_004e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15;
L_15 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
String_t* L_16 = __this->___arrayType_23;
String_t* L_17 = __this->___soapNS_18;
NullCheck(L_15);
String_t* L_18;
L_18 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_15, L_16, L_17);
V_2 = L_18;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19 = V_1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_20 = __this->___arrayQName_24;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_21;
L_21 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_19, L_20, NULL);
if (L_21)
{
goto IL_0077;
}
}
{
String_t* L_22 = V_2;
if (!L_22)
{
goto IL_00ce;
}
}
IL_0077:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_23 = __this->___delayedListFixups_8;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_24;
L_24 = XmlSerializationReader_EnsureHashtable_m676AEE49C5641981561013079ECF69CE82957B06(__this, L_23, NULL);
__this->___delayedListFixups_8 = L_24;
Il2CppCodeGenWriteBarrier((void**)(&__this->___delayedListFixups_8), (void*)L_24);
String_t** L_25 = ___fixupReference3;
int32_t L_26 = __this->___delayedFixupId_10;
V_4 = L_26;
int32_t L_27 = V_4;
__this->___delayedFixupId_10 = ((int32_t)il2cpp_codegen_add(L_27, 1));
String_t* L_28;
L_28 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_4), NULL);
String_t* L_29;
L_29 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteralD6E343F1FC14B98DB00C87F0E3819524F17E1996, L_28, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL);
*((RuntimeObject**)L_25) = (RuntimeObject*)L_29;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_25, (void*)(RuntimeObject*)L_29);
bool L_30;
L_30 = XmlSerializationReader_ReadList_m78AEC7BB70D7C5DD317E84DF1247101EB30A671C(__this, (&V_3), NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_31 = __this->___delayedListFixups_8;
String_t** L_32 = ___fixupReference3;
String_t* L_33 = *((String_t**)L_32);
RuntimeObject* L_34 = V_3;
NullCheck(L_31);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_31, L_33, L_34);
return NULL;
}
IL_00ce:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_35 = V_1;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_36;
L_36 = XmlSerializationReader_GetCallbackInfo_mDFDA259FC5C4CADF68A1A75B2096B4DBF3B6E25C(__this, L_35, NULL);
V_5 = L_36;
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_37 = V_5;
if (L_37)
{
goto IL_00e4;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_38 = V_1;
RuntimeObject* L_39;
L_39 = XmlSerializationReader_ReadTypedPrimitive_m01A7EFB4CC732A91E92D2FC847489B5AF5FBBFC0(__this, L_38, (bool)1, NULL);
return L_39;
}
IL_00e4:
{
WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* L_40 = V_5;
NullCheck(L_40);
XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* L_41 = L_40->___Callback_3;
NullCheck(L_41);
RuntimeObject* L_42;
L_42 = XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_inline(L_41, NULL);
return L_42;
}
IL_00f1:
{
String_t* L_43 = V_0;
NullCheck(L_43);
bool L_44;
L_44 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_43, _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, NULL);
if (!L_44)
{
goto IL_0106;
}
}
{
String_t* L_45 = V_0;
NullCheck(L_45);
String_t* L_46;
L_46 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_45, 1, NULL);
V_0 = L_46;
}
IL_0106:
{
int32_t L_47 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_47, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_48;
L_48 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_48);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_48);
String_t* L_49 = V_0;
bool L_50;
L_50 = XmlSerializationReader_TargetReady_m793FC7F673F85FEAD9AFA131D03C82D27CE925A6(__this, L_49, NULL);
if (!L_50)
{
goto IL_0134;
}
}
{
String_t** L_51 = ___fixupReference3;
*((RuntimeObject**)L_51) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_51, (void*)(RuntimeObject*)NULL);
String_t* L_52 = V_0;
RuntimeObject* L_53;
L_53 = XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F(__this, L_52, NULL);
return L_53;
}
IL_0134:
{
String_t** L_54 = ___fixupReference3;
String_t* L_55 = V_0;
*((RuntimeObject**)L_54) = (RuntimeObject*)L_55;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_54, (void*)(RuntimeObject*)L_55);
return NULL;
}
}
// System.Xml.Serialization.IXmlSerializable System.Xml.Serialization.XmlSerializationReader::ReadSerializable(System.Xml.Serialization.IXmlSerializable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___serializable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0;
L_0 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (RuntimeObject*)NULL;
}
IL_000a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___reader_1;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_1);
V_0 = L_2;
int32_t L_3 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_3, 1));
RuntimeObject* L_4 = ___serializable0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1;
NullCheck(L_4);
InterfaceActionInvoker1< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(1 /* System.Void System.Xml.Serialization.IXmlSerializable::ReadXml(System.Xml.XmlReader) */, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var, L_4, L_5);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6;
L_6 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_6);
goto IL_0049;
}
IL_003e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___reader_1;
NullCheck(L_8);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_8);
}
IL_0049:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_9);
int32_t L_11 = V_0;
if ((((int32_t)L_10) > ((int32_t)L_11)))
{
goto IL_003e;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___reader_1;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_12);
int32_t L_14 = V_0;
if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
{
goto IL_007f;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = __this->___reader_1;
NullCheck(L_15);
int32_t L_16;
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_15);
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)15)))))
{
goto IL_007f;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___reader_1;
NullCheck(L_17);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_17);
}
IL_007f:
{
RuntimeObject* L_18 = ___serializable0;
return L_18;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___type0, const RuntimeMethod* method)
{
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___type0;
RuntimeObject* L_1;
L_1 = XmlSerializationReader_ReadTypedPrimitive_m01A7EFB4CC732A91E92D2FC847489B5AF5FBBFC0(__this, L_0, (bool)0, NULL);
return L_1;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadTypedPrimitive_m01A7EFB4CC732A91E92D2FC847489B5AF5FBBFC0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname0, bool ___reportUnknown1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_2 = NULL;
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* V_3 = NULL;
int32_t V_4 = 0;
RuntimeObject* V_5 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_6 = NULL;
RuntimeObject* V_7 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_8 = NULL;
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___qname0;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_1;
L_1 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2;
L_2 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL);
___qname0 = L_2;
}
IL_0011:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ___qname0;
NullCheck(L_3);
String_t* L_4;
L_4 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5;
L_5 = TypeTranslator_FindPrimitiveTypeData_m0906A3731464F08A922EA69A2B629F7E473A29CD(L_4, NULL);
V_0 = L_5;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6 = V_0;
if (!L_6)
{
goto IL_002c;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7 = V_0;
NullCheck(L_7);
int32_t L_8;
L_8 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_7, NULL);
if ((((int32_t)L_8) == ((int32_t)1)))
{
goto IL_013f;
}
}
IL_002c:
{
int32_t L_9 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_9, 1));
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_10;
L_10 = XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___reader_1;
NullCheck(L_10);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12;
L_12 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(72 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_10, L_11);
V_1 = L_12;
bool L_13 = ___reportUnknown1;
if (!L_13)
{
goto IL_0058;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = V_1;
XmlSerializationReader_OnUnknownNode_m9ADED58E840CB4F7C093F960B87DC1BD2E438B39(__this, L_14, NULL, (String_t*)NULL, NULL);
}
IL_0058:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = V_1;
NullCheck(L_15);
XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* L_16;
L_16 = VirtualFuncInvoker0< XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* >::Invoke(11 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_15);
NullCheck(L_16);
int32_t L_17;
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNodeList::get_Count() */, L_16);
if (L_17)
{
goto IL_0078;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18 = V_1;
NullCheck(L_18);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_19;
L_19 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_18);
NullCheck(L_19);
int32_t L_20;
L_20 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_19);
if (L_20)
{
goto IL_0078;
}
}
{
RuntimeObject* L_21 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_21);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_21, NULL);
return L_21;
}
IL_0078:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = V_1;
V_2 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_22, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_23 = V_2;
if (L_23)
{
goto IL_008d;
}
}
{
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* L_24 = (XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E*)(XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E*)SZArrayNew(XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_il2cpp_TypeInfo_var, (uint32_t)1);
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* L_25 = L_24;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_26 = V_1;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_26);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_26);
return (RuntimeObject*)L_25;
}
IL_008d:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_27 = V_2;
NullCheck(L_27);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_28;
L_28 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_27);
NullCheck(L_28);
int32_t L_29;
L_29 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_28);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_30 = V_2;
NullCheck(L_30);
XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* L_31;
L_31 = VirtualFuncInvoker0< XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* >::Invoke(11 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_30);
NullCheck(L_31);
int32_t L_32;
L_32 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNodeList::get_Count() */, L_31);
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* L_33 = (XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E*)(XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E*)SZArrayNew(XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_29, L_32)));
V_3 = L_33;
V_4 = 0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_34 = V_2;
NullCheck(L_34);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_35;
L_35 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_34);
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_35);
V_5 = L_36;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e0:
{// begin finally (depth: 1)
{
RuntimeObject* L_37 = V_5;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_37, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_38 = V_7;
if (!L_38)
{
goto IL_00f4;
}
}
{
RuntimeObject* L_39 = V_7;
NullCheck(L_39);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_39);
}
IL_00f4:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00d5_1;
}
IL_00bc_1:
{
RuntimeObject* L_40 = V_5;
NullCheck(L_40);
RuntimeObject* L_41;
L_41 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_40);
V_6 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_41, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var));
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* L_42 = V_3;
int32_t L_43 = V_4;
int32_t L_44 = L_43;
V_4 = ((int32_t)il2cpp_codegen_add(L_44, 1));
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_45 = V_6;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_45);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(L_44), (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_45);
}
IL_00d5_1:
{
RuntimeObject* L_46 = V_5;
NullCheck(L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46);
if (L_47)
{
goto IL_00bc_1;
}
}
{
goto IL_00f5;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f5:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_48 = V_2;
NullCheck(L_48);
XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* L_49;
L_49 = VirtualFuncInvoker0< XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* >::Invoke(11 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_48);
NullCheck(L_49);
RuntimeObject* L_50;
L_50 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNodeList::GetEnumerator() */, L_49);
V_5 = L_50;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0128:
{// begin finally (depth: 1)
{
RuntimeObject* L_51 = V_5;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_51, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_52 = V_7;
if (!L_52)
{
goto IL_013c;
}
}
{
RuntimeObject* L_53 = V_7;
NullCheck(L_53);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_53);
}
IL_013c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_011d_1;
}
IL_0104_1:
{
RuntimeObject* L_54 = V_5;
NullCheck(L_54);
RuntimeObject* L_55;
L_55 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_54);
V_8 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_55, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var));
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* L_56 = V_3;
int32_t L_57 = V_4;
int32_t L_58 = L_57;
V_4 = ((int32_t)il2cpp_codegen_add(L_58, 1));
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_59 = V_8;
NullCheck(L_56);
ArrayElementTypeCheck (L_56, L_59);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(L_58), (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_59);
}
IL_011d_1:
{
RuntimeObject* L_60 = V_5;
NullCheck(L_60);
bool L_61;
L_61 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_60);
if (L_61)
{
goto IL_0104_1;
}
}
{
goto IL_013d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_013d:
{
XmlNodeU5BU5D_t78C0A54365D1948C7F4D12D324F7CBF7B1505F4E* L_62 = V_3;
return (RuntimeObject*)L_62;
}
IL_013f:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_63 = V_0;
NullCheck(L_63);
Type_t* L_64;
L_64 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_63, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_66;
L_66 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_65, NULL);
bool L_67;
L_67 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_64, L_66, NULL);
if (!L_67)
{
goto IL_015d;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_68;
L_68 = XmlSerializationReader_ReadNullableQualifiedName_mCD286FFAEE778FD6CC3627B0F11085BAD744015D(__this, NULL);
return L_68;
}
IL_015d:
{
int32_t L_69 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_69, 1));
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_70 = V_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_71;
L_71 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_71);
String_t* L_72;
L_72 = VirtualFuncInvoker0< String_t* >::Invoke(45 /* System.String System.Xml.XmlReader::ReadElementString() */, L_71);
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
RuntimeObject* L_73;
L_73 = XmlCustomFormatter_FromXmlString_m148D907C11B06D1A94836952828FB5BE421A7EA4(L_70, L_72, NULL);
return L_73;
}
}
// System.Xml.XmlNode System.Xml.Serialization.XmlSerializationReader::ReadXmlNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlSerializationReader_ReadXmlNode_mD224CFB90450934FC68CF9A0D720E40CE57CE945 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, bool ___wrapped0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
int32_t L_0 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_0, 1));
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(72 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_1, L_2);
V_0 = L_3;
bool L_4 = ___wrapped0;
if (!L_4)
{
goto IL_002a;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0;
NullCheck(L_5);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_5);
return L_6;
}
IL_002a:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0;
return L_7;
}
}
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::ReadXmlDocument(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlSerializationReader_ReadXmlDocument_mFBCD46F2EADC620A3B2DF95B6EAAB8AC52B28AE5 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, bool ___wrapped0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* G_B4_0 = NULL;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* G_B3_0 = NULL;
{
int32_t L_0 = __this->___readCount_12;
__this->___readCount_12 = ((int32_t)il2cpp_codegen_add(L_0, 1));
bool L_1 = ___wrapped0;
if (!L_1)
{
goto IL_001c;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_2);
}
IL_001c:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___reader_1;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_3);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1;
NullCheck(L_5);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6;
L_6 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_5);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)il2cpp_codegen_object_new(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
NullCheck(L_7);
XmlDocument__ctor_m23D3FC333FDD50BBCAF64B57184A889E0F6B7468(L_7, L_6, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8 = L_7;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
NullCheck(L_8);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10;
L_10 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(72 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_8, L_9);
V_0 = L_10;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_11 = L_8;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = V_0;
NullCheck(L_11);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13;
L_13 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(25 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) */, L_11, L_12);
bool L_14 = ___wrapped0;
G_B3_0 = L_11;
if (!L_14)
{
G_B4_0 = L_11;
goto IL_005b;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = __this->___reader_1;
NullCheck(L_15);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_15);
G_B4_0 = G_B3_0;
}
IL_005b:
{
return G_B4_0;
}
}
// System.Array System.Xml.Serialization.XmlSerializationReader::ShrinkArray(System.Array,System.Int32,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeArray* ___a0, int32_t ___length1, Type_t* ___elementType2, bool ___isNullable3, const RuntimeMethod* method)
{
RuntimeArray* V_0 = NULL;
{
int32_t L_0 = ___length1;
bool L_1 = ___isNullable3;
if (!((int32_t)(((((int32_t)L_0) == ((int32_t)0))? 1 : 0)&(int32_t)L_1)))
{
goto IL_000b;
}
}
{
return (RuntimeArray*)NULL;
}
IL_000b:
{
RuntimeArray* L_2 = ___a0;
if (L_2)
{
goto IL_0016;
}
}
{
Type_t* L_3 = ___elementType2;
int32_t L_4 = ___length1;
RuntimeArray* L_5;
L_5 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_3, L_4, NULL);
return L_5;
}
IL_0016:
{
RuntimeArray* L_6 = ___a0;
NullCheck(L_6);
int32_t L_7;
L_7 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_6, NULL);
int32_t L_8 = ___length1;
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_0021;
}
}
{
RuntimeArray* L_9 = ___a0;
return L_9;
}
IL_0021:
{
Type_t* L_10 = ___elementType2;
int32_t L_11 = ___length1;
RuntimeArray* L_12;
L_12 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_10, L_11, NULL);
V_0 = L_12;
RuntimeArray* L_13 = ___a0;
RuntimeArray* L_14 = V_0;
int32_t L_15 = ___length1;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F(L_13, L_14, L_15, NULL);
RuntimeArray* L_16 = V_0;
return L_16;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ToXmlQualifiedName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __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);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
{
String_t* L_0 = ___value0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_0, ((int32_t)58), NULL);
V_2 = L_1;
String_t* L_2 = ___value0;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = XmlConvert_DecodeName_m0A515523E8424058C10863C8B3B0FDA0B63DD329(L_2, NULL);
V_3 = L_3;
int32_t L_4 = V_2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0039;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1;
NullCheck(L_5);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6;
L_6 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_5);
String_t* L_7 = V_3;
NullCheck(L_6);
String_t* L_8;
L_8 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, L_7);
V_0 = L_8;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_9);
String_t* L_11;
L_11 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_9, L_10);
V_1 = L_11;
goto IL_0085;
}
IL_0039:
{
String_t* L_12 = ___value0;
int32_t L_13 = V_2;
NullCheck(L_12);
String_t* L_14;
L_14 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_12, 0, L_13, NULL);
V_4 = L_14;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = __this->___reader_1;
String_t* L_16 = V_4;
NullCheck(L_15);
String_t* L_17;
L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_15, L_16);
V_1 = L_17;
String_t* L_18 = V_1;
if (L_18)
{
goto IL_006b;
}
}
{
String_t* L_19 = V_4;
String_t* L_20;
L_20 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8C057E251F01D1246CA35725818EB4BECE3BF3B1)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CD9DCF1D6A03B7AF7C79C9DE5CE9D5DE6ACB217)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_21 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_21);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3_RuntimeMethod_var)));
}
IL_006b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___reader_1;
NullCheck(L_22);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_23;
L_23 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_22);
String_t* L_24 = ___value0;
int32_t L_25 = V_2;
NullCheck(L_24);
String_t* L_26;
L_26 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_24, ((int32_t)il2cpp_codegen_add(L_25, 1)), NULL);
NullCheck(L_23);
String_t* L_27;
L_27 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_23, L_26);
V_0 = L_27;
}
IL_0085:
{
String_t* L_28 = V_0;
String_t* L_29 = V_1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_30 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_30);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_30, L_28, L_29, NULL);
return L_30;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownAttribute(System.Object,System.Xml.XmlAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownAttribute_m5DE80B94D9A23B344BD4D61A5743386B1393562D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr1, String_t* ___qnames2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* V_2 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
if (!((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)IsInstClass((RuntimeObject*)L_0, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)))
{
goto IL_0031;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1;
L_1 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_1, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
int32_t L_2;
L_2 = XmlTextReader_get_LineNumber_m55D50DD933052EA9E291E92516B920C1C258D4A8(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_1, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
V_0 = L_2;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3;
L_3 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_3, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
int32_t L_4;
L_4 = XmlTextReader_get_LinePosition_m2ADEA694B3B86523797ADD4EB117DCC6BA4D4D14(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_3, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
V_1 = L_4;
goto IL_0035;
}
IL_0031:
{
V_0 = 0;
V_1 = 0;
}
IL_0035:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = ___attr1;
int32_t L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___o0;
String_t* L_9 = ___qnames2;
XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* L_10 = (XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897*)il2cpp_codegen_object_new(XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897_il2cpp_TypeInfo_var);
NullCheck(L_10);
XmlAttributeEventArgs__ctor_mE2875927B30862BA53BC5CCBBFAB989456C96BFF(L_10, L_5, L_6, L_7, L_8, L_9, NULL);
V_2 = L_10;
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_11 = __this->___eventSource_9;
if (!L_11)
{
goto IL_0054;
}
}
{
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_12 = __this->___eventSource_9;
XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* L_13 = V_2;
NullCheck(L_12);
VirtualActionInvoker1< XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* >::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnknownAttribute(System.Xml.Serialization.XmlAttributeEventArgs) */, L_12, L_13);
}
IL_0054:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownElement(System.Object,System.Xml.XmlElement,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownElement_m0AB972087CDCDF08330B2472DF521B3263405D31 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, String_t* ___qnames2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* V_2 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
if (!((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)IsInstClass((RuntimeObject*)L_0, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)))
{
goto IL_0031;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1;
L_1 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_1, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
int32_t L_2;
L_2 = XmlTextReader_get_LineNumber_m55D50DD933052EA9E291E92516B920C1C258D4A8(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_1, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
V_0 = L_2;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3;
L_3 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_3, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
int32_t L_4;
L_4 = XmlTextReader_get_LinePosition_m2ADEA694B3B86523797ADD4EB117DCC6BA4D4D14(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_3, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
V_1 = L_4;
goto IL_0035;
}
IL_0031:
{
V_0 = 0;
V_1 = 0;
}
IL_0035:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_5 = ___elem1;
int32_t L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___o0;
String_t* L_9 = ___qnames2;
XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* L_10 = (XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036*)il2cpp_codegen_object_new(XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036_il2cpp_TypeInfo_var);
NullCheck(L_10);
XmlElementEventArgs__ctor_mD10AF9A6402C1913964A0ACCFFAD0CE29EA019AA(L_10, L_5, L_6, L_7, L_8, L_9, NULL);
V_2 = L_10;
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_11 = __this->___eventSource_9;
if (!L_11)
{
goto IL_0054;
}
}
{
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_12 = __this->___eventSource_9;
XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* L_13 = V_2;
NullCheck(L_12);
VirtualActionInvoker1< XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnknownElement(System.Xml.Serialization.XmlElementEventArgs) */, L_12, L_13);
}
IL_0054:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___o0;
XmlSerializationReader_UnknownNode_m0ED67BE2DC8A3558FA0C0A2CC19575A52480FBD0(__this, L_0, (String_t*)NULL, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownNode_m0ED67BE2DC8A3558FA0C0A2CC19575A52480FBD0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___o0, String_t* ___qnames1, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = XmlSerializationReader_ReadXmlNode_mD224CFB90450934FC68CF9A0D720E40CE57CE945(__this, (bool)0, NULL);
RuntimeObject* L_1 = ___o0;
String_t* L_2 = ___qnames1;
XmlSerializationReader_OnUnknownNode_m9ADED58E840CB4F7C093F960B87DC1BD2E438B39(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::OnUnknownNode(System.Xml.XmlNode,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_OnUnknownNode_m9ADED58E840CB4F7C093F960B87DC1BD2E438B39 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, RuntimeObject* ___o1, String_t* ___qnames2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
if (!((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)IsInstClass((RuntimeObject*)L_0, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)))
{
goto IL_0031;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1;
L_1 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_1, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
int32_t L_2;
L_2 = XmlTextReader_get_LineNumber_m55D50DD933052EA9E291E92516B920C1C258D4A8(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_1, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
V_0 = L_2;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3;
L_3 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_3, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
int32_t L_4;
L_4 = XmlTextReader_get_LinePosition_m2ADEA694B3B86523797ADD4EB117DCC6BA4D4D14(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_3, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
V_1 = L_4;
goto IL_0035;
}
IL_0031:
{
V_0 = 0;
V_1 = 0;
}
IL_0035:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___node0;
if (!((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)IsInstClass((RuntimeObject*)L_5, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)))
{
goto IL_004c;
}
}
{
RuntimeObject* L_6 = ___o1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___node0;
String_t* L_8 = ___qnames2;
XmlSerializationReader_UnknownAttribute_m5DE80B94D9A23B344BD4D61A5743386B1393562D(__this, L_6, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_7, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), L_8, NULL);
return;
}
IL_004c:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___node0;
if (!((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_9, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)))
{
goto IL_0063;
}
}
{
RuntimeObject* L_10 = ___o1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = ___node0;
String_t* L_12 = ___qnames2;
XmlSerializationReader_UnknownElement_m0AB972087CDCDF08330B2472DF521B3263405D31(__this, L_10, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_11, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)), L_12, NULL);
return;
}
IL_0063:
{
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_13 = __this->___eventSource_9;
if (!L_13)
{
goto IL_007f;
}
}
{
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_14 = __this->___eventSource_9;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = ___node0;
int32_t L_16 = V_0;
int32_t L_17 = V_1;
RuntimeObject* L_18 = ___o1;
XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* L_19 = (XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D*)il2cpp_codegen_object_new(XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D_il2cpp_TypeInfo_var);
NullCheck(L_19);
XmlNodeEventArgs__ctor_m0E50754A95E4FD3ADB7FEF2532BAE7682EAF2975(L_19, L_15, L_16, L_17, L_18, NULL);
NullCheck(L_14);
VirtualActionInvoker1< XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* >::Invoke(6 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnknownNode(System.Xml.Serialization.XmlNodeEventArgs) */, L_14, L_19);
}
IL_007f:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20;
L_20 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_20);
int32_t L_21;
L_21 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_20);
if ((!(((uint32_t)L_21) == ((uint32_t)3))))
{
goto IL_0098;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_22 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_22);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2FB92AD2B027DDEAE5C34625D1AA482AB141E759)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReader_OnUnknownNode_m9ADED58E840CB4F7C093F960B87DC1BD2E438B39_RuntimeMethod_var)));
}
IL_0098:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnreferencedObject(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnreferencedObject_m4487CEE93EAE9E4A76ACCE73F1336B21E7060461 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___id0, RuntimeObject* ___o1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_0 = __this->___eventSource_9;
if (!L_0)
{
goto IL_001a;
}
}
{
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_1 = __this->___eventSource_9;
RuntimeObject* L_2 = ___o1;
String_t* L_3 = ___id0;
UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* L_4 = (UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760*)il2cpp_codegen_object_new(UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760_il2cpp_TypeInfo_var);
NullCheck(L_4);
UnreferencedObjectEventArgs__ctor_mD16B06CE6C6B0BC9066D72C98273D6F55A24EC70(L_4, L_2, L_3, NULL);
NullCheck(L_1);
VirtualActionInvoker1< UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* >::Invoke(7 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnreferencedObject(System.Xml.Serialization.UnreferencedObjectEventArgs) */, L_1, L_4);
}
IL_001a:
{
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.XmlSerializationReader/WriteCallbackInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_m37F31F6AFF382B838F022DFF2F6C49AEE921D110 (WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup__ctor_m1F4ADF9D829F9B0BFEB1442AEB2167118F4EA0AB (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___collection0, XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* ___callback1, String_t* ___id2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_0 = ___callback1;
__this->___callback_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___callback_0), (void*)L_0);
RuntimeObject* L_1 = ___collection0;
__this->___collection_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___collection_1), (void*)L_1);
String_t* L_2 = ___id2;
__this->___id_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___id_3), (void*)L_2);
return;
}
}
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Callback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* CollectionFixup_get_Callback_m1F1435C58DB8A0FDDC6EF46BAE8C871531BEDBAE (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_0 = __this->___callback_0;
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Collection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0 (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___collection_1;
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40 (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___id_3;
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_CollectionItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_CollectionItems_m7C8D7CB07A7C17F517B09A5145424EB1DE0EB497 (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___collectionItems_2;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::set_CollectionItems(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup_set_CollectionItems_mE1B2C71D40112F90E2ECC65D1E14234BA2ED351F (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___collectionItems_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___collectionItems_2), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationReader/Fixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Fixup__ctor_m7213A65447CD4248AA5F086E4C71C792B5A21F14 (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, RuntimeObject* ___o0, XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* ___callback1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___o0;
__this->___source_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___source_0), (void*)L_0);
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_1 = ___callback1;
__this->___callback_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___callback_2), (void*)L_1);
int32_t L_2 = ___count2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_2);
__this->___ids_1 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ids_1), (void*)L_3);
return;
}
}
// System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::get_Callback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* Fixup_get_Callback_mF6D51DD8D4089ED7510FA16D29095F75BFB54D9B (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method)
{
{
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_0 = __this->___callback_2;
return L_0;
}
}
// System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::get_Ids()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2 (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method)
{
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___ids_1;
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::get_Source()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___source_0;
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.Serialization.XmlSerializationReader/CollectionItemFixup::.ctor(System.Array,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemFixup__ctor_mE654E8182AAE3013271D452C051AE10ADFD9C2AC (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, RuntimeArray* ___list0, int32_t ___index1, String_t* ___id2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeArray* L_0 = ___list0;
__this->___list_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___list_0), (void*)L_0);
int32_t L_1 = ___index1;
__this->___index_1 = L_1;
String_t* L_2 = ___id2;
__this->___id_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___id_2), (void*)L_2);
return;
}
}
// System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Collection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* CollectionItemFixup_get_Collection_m3A3D1F07DD384677EB43842B4E0C9AE6CAA8B8F6 (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method)
{
{
RuntimeArray* L_0 = __this->___list_0;
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Index()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionItemFixup_get_Index_m455C70697C9BD61D8E47E5867796671FAECBF958 (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___index_1;
return L_0;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionItemFixup_get_Id_m01A755FF6A3F989910289A67DD5ADFA0528FD39F (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___id_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
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.ctor(System.Xml.Serialization.XmlMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter__ctor_m6C881FC54D45877C33279E7DE29C17C53B821459 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___typeMap0, const RuntimeMethod* method)
{
{
XmlSerializationReader__ctor_mE7A1AB3E151A31FE7D934FBFBB9823F5C0D70C68(__this, NULL);
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = ___typeMap0;
__this->____typeMap_25 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____typeMap_25), (void*)L_0);
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_1 = ___typeMap0;
NullCheck(L_1);
int32_t L_2;
L_2 = XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline(L_1, NULL);
__this->____format_26 = L_2;
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::InitCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_InitCallbacks_mD7FB33D4AC41F6362490CDA141D355292A527852 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL;
RuntimeObject* V_1 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL;
ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* V_3 = NULL;
RuntimeObject* V_4 = NULL;
{
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = __this->____typeMap_25;
NullCheck(L_0);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1;
L_1 = XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline(L_0, NULL);
V_0 = L_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = V_0;
if (!L_2)
{
goto IL_0092;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_3);
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007e:
{// begin finally (depth: 1)
{
RuntimeObject* L_5 = V_1;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = V_4;
if (!L_6)
{
goto IL_0091;
}
}
{
RuntimeObject* L_7 = V_4;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0091:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0074_1;
}
IL_001b_1:
{
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
V_2 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_9, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var));
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_2;
NullCheck(L_10);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11;
L_11 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_10, NULL);
NullCheck(L_11);
int32_t L_12;
L_12 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_11, NULL);
if ((((int32_t)L_12) == ((int32_t)4)))
{
goto IL_0043_1;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = V_2;
NullCheck(L_13);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14;
L_14 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_13, NULL);
NullCheck(L_14);
int32_t L_15;
L_15 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_14, NULL);
if ((!(((uint32_t)L_15) == ((uint32_t)2))))
{
goto IL_0074_1;
}
}
IL_0043_1:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = V_2;
ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* L_17 = (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB*)il2cpp_codegen_object_new(ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB_il2cpp_TypeInfo_var);
NullCheck(L_17);
ReaderCallbackInfo__ctor_mA1DE9023122B9D262150A2AABCCB839AC4E31CBC(L_17, __this, L_16, NULL);
V_3 = L_17;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_2;
NullCheck(L_18);
String_t* L_19;
L_19 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_18, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = V_2;
NullCheck(L_20);
String_t* L_21;
L_21 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_20, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_22 = V_2;
NullCheck(L_22);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_23;
L_23 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_22, NULL);
NullCheck(L_23);
Type_t* L_24;
L_24 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_23, NULL);
ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* L_25 = V_3;
XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* L_26 = (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B*)il2cpp_codegen_object_new(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B_il2cpp_TypeInfo_var);
NullCheck(L_26);
XmlSerializationReadCallback__ctor_m3E8920B08440F5007D60B89120F500D80C24B4F7(L_26, L_25, (intptr_t)((void*)ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249_RuntimeMethod_var), NULL);
XmlSerializationReader_AddReadCallback_m7FBB39194FAA252273D04AAB981A83D81A690E98(__this, L_19, L_21, L_24, L_26, NULL);
}
IL_0074_1:
{
RuntimeObject* L_27 = V_1;
NullCheck(L_27);
bool L_28;
L_28 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_27);
if (L_28)
{
goto IL_001b_1;
}
}
{
goto IL_0092;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0092:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::InitIDs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_InitIDs_m032310798F8812002D4EE41284F67E9D2CD57D0F (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_mC64D2353CEDB7BDABAB7A640D8681396BB046B4E (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_2 = __this->____typeMap_25;
if (!((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)IsInstClass((RuntimeObject*)L_2, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)))
{
goto IL_0046;
}
}
{
int32_t L_3 = __this->____format_26;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0034;
}
}
{
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_4 = __this->____typeMap_25;
RuntimeObject* L_5;
L_5 = XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23(__this, ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_4, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)), NULL);
return L_5;
}
IL_0034:
{
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_6 = __this->____typeMap_25;
RuntimeObject* L_7;
L_7 = XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0(__this, ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)), NULL);
return L_7;
}
IL_0046:
{
XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_8 = __this->____typeMap_25;
RuntimeObject* L_9;
L_9 = VirtualFuncInvoker1< RuntimeObject*, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* >::Invoke(6 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMessage(System.Xml.Serialization.XmlMembersMapping) */, __this, ((XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C*)CastclassClass((RuntimeObject*)L_8, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var)));
return L_9;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEncodedObject(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
V_0 = NULL;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2;
L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4;
L_4 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_4);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6 = ___typeMap0;
NullCheck(L_6);
String_t* L_7;
L_7 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_6, NULL);
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, L_7, NULL);
if (!L_8)
{
goto IL_0055;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9;
L_9 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_9);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11 = ___typeMap0;
NullCheck(L_11);
String_t* L_12;
L_12 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_11, NULL);
bool L_13;
L_13 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_10, L_12, NULL);
if (!L_13)
{
goto IL_0055;
}
}
{
RuntimeObject* L_14;
L_14 = XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493(__this, NULL);
V_0 = L_14;
goto IL_0063;
}
IL_0055:
{
Exception_t* L_15;
L_15 = XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0_RuntimeMethod_var)));
}
IL_005c:
{
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL);
}
IL_0063:
{
XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8(__this, NULL);
RuntimeObject* L_16 = V_0;
return L_16;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMessage(System.Xml.Serialization.XmlMembersMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadMessage_m7BD17B1A8CCE4FA3C728C795953ED908E0F0D032 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* ___typeMap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_1 = NULL;
int32_t V_2 = 0;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_3 = NULL;
String_t* V_4 = NULL;
{
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_0 = ___typeMap0;
NullCheck(L_0);
int32_t L_1;
L_1 = XmlMembersMapping_get_Count_mDAFF3965B76D19DE0EFAE018FEE1B429419855A7(L_0, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_1);
V_0 = L_2;
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_3 = ___typeMap0;
NullCheck(L_3);
bool L_4;
L_4 = XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline(L_3, NULL);
if (!L_4)
{
goto IL_0188;
}
}
{
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_5 = ___typeMap0;
NullCheck(L_5);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_6;
L_6 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_5, NULL);
NullCheck(((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_6, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7;
L_7 = ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED_inline(((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_6, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), NULL);
V_1 = L_7;
V_2 = 0;
goto IL_006c;
}
IL_002c:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = V_1;
int32_t L_9 = V_2;
NullCheck(L_8);
RuntimeObject* L_10;
L_10 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, L_9);
V_3 = ((XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)CastclassClass((RuntimeObject*)L_10, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var));
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_11 = V_3;
NullCheck(L_11);
bool L_12;
L_12 = XmlTypeMapMember_get_IsReturnValue_m2FF8236466A439AB4412508BE3D78C3C71A47481(L_11, NULL);
if (L_12)
{
goto IL_0068;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_13 = V_3;
NullCheck(L_13);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14;
L_14 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_13, NULL);
NullCheck(L_14);
bool L_15;
L_15 = TypeData_get_IsValueType_m6A1F44C35FE034599DE34B16D1E5DFD8B83A021B(L_14, NULL);
if (!L_15)
{
goto IL_0068;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_16 = V_3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = V_0;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_18 = V_3;
NullCheck(L_18);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_19;
L_19 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_18, NULL);
NullCheck(L_19);
Type_t* L_20;
L_20 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_19, NULL);
RuntimeObject* L_21;
L_21 = XmlSerializationReaderInterpreter_CreateInstance_m9CB41129916C0B5A2323C6EBD6031BB9CF3B693C(__this, L_20, NULL);
XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m7DCD796BFED1BC399DDA708281D49BAF3EF5CAF8(__this, L_16, (RuntimeObject*)L_17, L_21, (bool)1, NULL);
}
IL_0068:
{
int32_t L_22 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_006c:
{
int32_t L_23 = V_2;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_24 = V_1;
NullCheck(L_24);
int32_t L_25;
L_25 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_24);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_002c;
}
}
{
int32_t L_26 = __this->____format_26;
if (L_26)
{
goto IL_0166;
}
}
{
goto IL_00bf;
}
IL_0082:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_27;
L_27 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_27, _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6);
V_4 = L_28;
String_t* L_29 = V_4;
if (!L_29)
{
goto IL_0166;
}
}
{
String_t* L_30 = V_4;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
bool L_31;
L_31 = XmlConvert_ToBoolean_mC9C05B76ECCD48E206BF6AD704A9742C88A6DBB4(L_30, NULL);
if (L_31)
{
goto IL_0166;
}
}
{
RuntimeObject* L_32;
L_32 = XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_33;
L_33 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_33);
int32_t L_34;
L_34 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_33);
}
IL_00bf:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_35;
L_35 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_35);
int32_t L_36;
L_36 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_35);
if ((((int32_t)L_36) == ((int32_t)1)))
{
goto IL_0082;
}
}
{
goto IL_0166;
}
IL_00d2:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_37;
L_37 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_38 = ___typeMap0;
NullCheck(L_38);
String_t* L_39;
L_39 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_38, NULL);
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_40 = ___typeMap0;
NullCheck(L_40);
String_t* L_41;
L_41 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_40, NULL);
NullCheck(L_37);
bool L_42;
L_42 = VirtualFuncInvoker2< bool, String_t*, String_t* >::Invoke(47 /* System.Boolean System.Xml.XmlReader::IsStartElement(System.String,System.String) */, L_37, L_39, L_41);
if (L_42)
{
goto IL_00f3;
}
}
{
int32_t L_43 = __this->____format_26;
if (L_43)
{
goto IL_0153;
}
}
IL_00f3:
{
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_44 = ___typeMap0;
NullCheck(L_44);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_45;
L_45 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_44, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_46 = V_0;
XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_45, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_46, (bool)1, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_47;
L_47 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_47);
bool L_48;
L_48 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_47);
if (!L_48)
{
goto IL_012c;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49;
L_49 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_49);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_49);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_50;
L_50 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_50);
int32_t L_51;
L_51 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_50);
goto IL_0166;
}
IL_012c:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_52;
L_52 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_52);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_52);
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_53 = ___typeMap0;
NullCheck(L_53);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_54;
L_54 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_53, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_55 = V_0;
XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_54, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_55, (bool)1, (bool)0, NULL);
XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL);
goto IL_01a4;
}
IL_0153:
{
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_56;
L_56 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_56);
int32_t L_57;
L_57 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_56);
}
IL_0166:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_58;
L_58 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_58);
int32_t L_59;
L_59 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_58);
if ((((int32_t)L_59) == ((int32_t)((int32_t)15))))
{
goto IL_01a4;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_60;
L_60 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_60);
int32_t L_61;
L_61 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_60);
if ((((int32_t)L_61) == ((int32_t)1)))
{
goto IL_00d2;
}
}
{
goto IL_01a4;
}
IL_0188:
{
XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_62 = ___typeMap0;
NullCheck(L_62);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_63;
L_63 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_62, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_0;
int32_t L_65 = __this->____format_26;
XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_63, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_64, (bool)1, (bool)((((int32_t)L_65) == ((int32_t)0))? 1 : 0), NULL);
}
IL_01a4:
{
int32_t L_66 = __this->____format_26;
if (L_66)
{
goto IL_01b2;
}
}
{
XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8(__this, NULL);
}
IL_01b2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_67 = V_0;
return (RuntimeObject*)L_67;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot(System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___rootMap0, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___rootMap0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)6))))
{
goto IL_0017;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___rootMap0;
RuntimeObject* L_4;
L_4 = XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709(__this, L_3, (bool)1, NULL);
return L_4;
}
IL_0017:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = ___rootMap0;
NullCheck(L_5);
bool L_6;
L_6 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_5, NULL);
if (L_6)
{
goto IL_0056;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7;
L_7 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_7);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = ___rootMap0;
NullCheck(L_9);
String_t* L_10;
L_10 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_9, NULL);
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_8, L_10, NULL);
if (L_11)
{
goto IL_004f;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12;
L_12 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_12);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14 = ___rootMap0;
NullCheck(L_14);
String_t* L_15;
L_15 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_14, NULL);
bool L_16;
L_16 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_13, L_15, NULL);
if (!L_16)
{
goto IL_0056;
}
}
IL_004f:
{
Exception_t* L_17;
L_17 = XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23_RuntimeMethod_var)));
}
IL_0056:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = ___rootMap0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_19 = ___rootMap0;
NullCheck(L_19);
bool L_20;
L_20 = XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B_inline(L_19, NULL);
RuntimeObject* L_21;
L_21 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_18, L_20, (bool)1);
return L_21;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadObject_m96FED952EBA3659E737FBCED7883FFFB43EF113E (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, bool ___checkType2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___typeMap0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1)))
{
case 0:
{
goto IL_004c;
}
case 1:
{
goto IL_0055;
}
case 2:
{
goto IL_0038;
}
case 3:
{
goto IL_002e;
}
case 4:
{
goto IL_005e;
}
case 5:
{
goto IL_0043;
}
}
}
{
goto IL_0067;
}
IL_002e:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_4 = ___typeMap0;
bool L_5 = ___isNullable1;
bool L_6 = ___checkType2;
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(8 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstance(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_4, L_5, L_6);
return L_7;
}
IL_0038:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8 = ___typeMap0;
bool L_9 = ___isNullable1;
RuntimeObject* L_10;
L_10 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_8, L_9, NULL, (bool)1, NULL);
return L_10;
}
IL_0043:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11 = ___typeMap0;
bool L_12 = ___isNullable1;
RuntimeObject* L_13;
L_13 = XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709(__this, L_11, L_12, NULL);
return L_13;
}
IL_004c:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14 = ___typeMap0;
bool L_15 = ___isNullable1;
RuntimeObject* L_16;
L_16 = XmlSerializationReaderInterpreter_ReadPrimitiveElement_m93C17C23DF8E7F7F2501CA2452E5CEA6EF2551A6(__this, L_14, L_15, NULL);
return L_16;
}
IL_0055:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = ___typeMap0;
bool L_18 = ___isNullable1;
RuntimeObject* L_19;
L_19 = XmlSerializationReaderInterpreter_ReadEnumElement_mB13411EB63D3EEEF92A41C2E3E29B243132E02B4(__this, L_17, L_18, NULL);
return L_19;
}
IL_005e:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = ___typeMap0;
bool L_21 = ___isNullable1;
RuntimeObject* L_22;
L_22 = XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442(__this, L_20, L_21, NULL);
return L_22;
}
IL_0067:
{
Exception_t* L_23 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_23);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral171713B97115C9EE4E1D7643592C5AFA9193CE05)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadObject_m96FED952EBA3659E737FBCED7883FFFB43EF113E_RuntimeMethod_var)));
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstance(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadClassInstance_m2D516034470771EE80D8AE702D2C74DEAC657AA2 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, bool ___checkType2, 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*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL;
{
bool L_0 = ___isNullable1;
if (!L_0)
{
goto IL_000d;
}
}
{
bool L_1;
L_1 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL);
if (!L_1)
{
goto IL_000d;
}
}
{
return NULL;
}
IL_000d:
{
bool L_2 = ___checkType2;
if (!L_2)
{
goto IL_009b;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3;
L_3 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL);
V_1 = L_3;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = V_1;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_5;
L_5 = XmlQualifiedName_op_Inequality_m7327D765A1501F12E33F29BBAFAF4AFAAB3AA8B8(L_4, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_5)
{
goto IL_0073;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6 = ___typeMap0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = V_1;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_7, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = V_1;
NullCheck(L_9);
String_t* L_10;
L_10 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_9, NULL);
NullCheck(L_6);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11;
L_11 = XmlTypeMapping_GetRealElementMap_m2488C8E8ABFB81EE1181A68DA85C142579599ED8(L_6, L_8, L_10, NULL);
V_2 = L_11;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_12 = V_2;
if (L_12)
{
goto IL_0065;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___typeMap0;
NullCheck(L_13);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14;
L_14 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_13, NULL);
NullCheck(L_14);
Type_t* L_15;
L_15 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_14, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_17;
L_17 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_16, NULL);
bool L_18;
L_18 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_15, L_17, NULL);
if (!L_18)
{
goto IL_005d;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19 = V_1;
RuntimeObject* L_20;
L_20 = XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C(__this, L_19, NULL);
return L_20;
}
IL_005d:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21 = V_1;
Exception_t* L_22;
L_22 = XmlSerializationReader_CreateUnknownTypeException_m158A6883E878D4147D071564F3BFF3B6B42D5296(__this, L_21, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadClassInstance_m2D516034470771EE80D8AE702D2C74DEAC657AA2_RuntimeMethod_var)));
}
IL_0065:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_23 = V_2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24 = ___typeMap0;
if ((((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_23) == ((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_24)))
{
goto IL_009b;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_25 = V_2;
RuntimeObject* L_26;
L_26 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_25, (bool)0, (bool)0);
return L_26;
}
IL_0073:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_27 = ___typeMap0;
NullCheck(L_27);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28;
L_28 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_27, NULL);
NullCheck(L_28);
Type_t* L_29;
L_29 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_28, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_31;
L_31 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_30, NULL);
bool L_32;
L_32 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_29, L_31, NULL);
if (!L_32)
{
goto IL_009b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_33 = ((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___AnyType_27;
RuntimeObject* L_34;
L_34 = XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C(__this, L_33, NULL);
return L_34;
}
IL_009b:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_35 = ___typeMap0;
NullCheck(L_35);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_36;
L_36 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_35, NULL);
NullCheck(L_36);
Type_t* L_37;
L_37 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_36, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
RuntimeObject* L_38;
L_38 = XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901(L_37, (bool)1, NULL);
V_0 = L_38;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_39;
L_39 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_39);
bool L_40;
L_40 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_39);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_41;
L_41 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_41);
bool L_42;
L_42 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_41);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_43 = ___typeMap0;
RuntimeObject* L_44 = V_0;
VirtualActionInvoker2< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject* >::Invoke(9 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstanceMembers(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_43, L_44);
if (!L_42)
{
goto IL_00db;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45;
L_45 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_45);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_45);
goto IL_00e1;
}
IL_00db:
{
XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL);
}
IL_00e1:
{
RuntimeObject* L_46 = V_0;
return L_46;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstanceMembers(System.Xml.Serialization.XmlTypeMapping,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadClassInstanceMembers_m162FFA010EB62983DBB2DF7396CD8A34915B789F (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, RuntimeObject* ___ob1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___typeMap0;
NullCheck(L_0);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_1;
L_1 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_0, NULL);
RuntimeObject* L_2 = ___ob1;
XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_1, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), L_2, (bool)0, (bool)0, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___ob1, bool ___isValueList2, 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*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* V_3 = NULL;
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* V_4 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_5 = NULL;
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___map0;
NullCheck(L_0);
XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_1;
L_1 = ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline(L_0, NULL);
V_0 = L_1;
V_1 = 0;
V_2 = NULL;
goto IL_013d;
}
IL_0010:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = ___map0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3;
L_3 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_3);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5;
L_5 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_5);
NullCheck(L_2);
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_7;
L_7 = ClassMap_GetAttribute_mFAA51D19B1F7AAC3105A581FA1F2738B15BBBCD0(L_2, L_4, L_6, NULL);
V_3 = L_7;
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_8 = V_3;
if (!L_8)
{
goto IL_005b;
}
}
{
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_9 = V_3;
RuntimeObject* L_10 = ___ob1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11;
L_11 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_11);
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_13 = V_3;
NullCheck(L_13);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14;
L_14 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_13, NULL);
XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_15 = V_3;
NullCheck(L_15);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16;
L_16 = XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline(L_15, NULL);
RuntimeObject* L_17;
L_17 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_12, L_14, L_16, NULL);
bool L_18 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_9, L_10, L_17, L_18, NULL);
goto IL_013d;
}
IL_005b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_19;
L_19 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_19);
bool L_21;
L_21 = XmlSerializationReader_IsXmlnsAttribute_m82CD3BEBE6E81699B23FDC923B5029DAFB05B06D(__this, L_20, NULL);
if (!L_21)
{
goto IL_00fb;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_22 = ___map0;
NullCheck(L_22);
XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_23;
L_23 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_22, NULL);
if (!L_23)
{
goto IL_013d;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_24 = ___map0;
NullCheck(L_24);
XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_25;
L_25 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_24, NULL);
RuntimeObject* L_26 = ___ob1;
bool L_27 = ___isValueList2;
RuntimeObject* L_28;
L_28 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_25, L_26, L_27, NULL);
V_4 = ((XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)IsInstClass((RuntimeObject*)L_28, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var));
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_29 = V_4;
if (L_29)
{
goto IL_00ac;
}
}
{
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_30 = (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)il2cpp_codegen_object_new(XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var);
NullCheck(L_30);
XmlSerializerNamespaces__ctor_mBE51E0E9233359BCF1602C6200E9D85084E83E91(L_30, NULL);
V_4 = L_30;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_31 = ___map0;
NullCheck(L_31);
XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_32;
L_32 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_31, NULL);
RuntimeObject* L_33 = ___ob1;
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_34 = V_4;
bool L_35 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_32, L_33, L_34, L_35, NULL);
}
IL_00ac:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36;
L_36 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_36);
String_t* L_37;
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_36);
bool L_38;
L_38 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_37, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_38)
{
goto IL_00e2;
}
}
{
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_39 = V_4;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40;
L_40 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_40);
String_t* L_41;
L_41 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_40);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_42;
L_42 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_42);
String_t* L_43;
L_43 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_42);
NullCheck(L_39);
XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B(L_39, L_41, L_43, NULL);
goto IL_013d;
}
IL_00e2:
{
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_44 = V_4;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45;
L_45 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_45);
String_t* L_46;
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_45);
NullCheck(L_44);
XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B(L_44, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, L_46, NULL);
goto IL_013d;
}
IL_00fb:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_47 = V_0;
if (!L_47)
{
goto IL_0136;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_48;
L_48 = XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49;
L_49 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_48);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_50;
L_50 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(72 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_48, L_49);
V_5 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_50, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_51 = V_5;
XmlSerializationReader_ParseWsdlArrayType_mD66086D7B4A80B5F9F77DC8546472BD1B8087598(__this, L_51, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_52 = V_0;
NullCheck(L_52);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_53;
L_53 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_52, NULL);
int32_t L_54 = V_1;
int32_t L_55 = L_54;
V_1 = ((int32_t)il2cpp_codegen_add(L_55, 1));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_56 = V_5;
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_53, (&V_2), L_55, L_56, (bool)1, NULL);
goto IL_013d;
}
IL_0136:
{
RuntimeObject* L_57 = ___ob1;
VirtualActionInvoker1< RuntimeObject* >::Invoke(10 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownAttribute(System.Object) */, __this, L_57);
}
IL_013d:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_58;
L_58 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_58);
bool L_59;
L_59 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_58);
if (L_59)
{
goto IL_0010;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_60 = V_0;
if (!L_60)
{
goto IL_0179;
}
}
{
RuntimeObject* L_61 = V_2;
int32_t L_62 = V_1;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_63 = V_0;
NullCheck(L_63);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_64;
L_64 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_63, NULL);
NullCheck(L_64);
Type_t* L_65;
L_65 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_64, NULL);
NullCheck(L_65);
Type_t* L_66;
L_66 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_65);
RuntimeArray* L_67;
L_67 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_61, RuntimeArray_il2cpp_TypeInfo_var)), L_62, L_66, (bool)1, NULL);
V_2 = L_67;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_68 = V_0;
RuntimeObject* L_69 = ___ob1;
RuntimeObject* L_70 = V_2;
bool L_71 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_68, L_69, L_70, L_71, NULL);
}
IL_0179:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_72;
L_72 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_72);
bool L_73;
L_73 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_72);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___ob1, bool ___isValueList2, bool ___readBySoapOrder3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_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);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
s_Il2CppMethodInitialized = true;
}
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL;
bool V_1 = false;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_8 = NULL;
RuntimeObject* V_9 = NULL;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_10 = NULL;
RuntimeObject* V_11 = NULL;
RuntimeObject* V_12 = NULL;
FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* V_13 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_14 = NULL;
RuntimeObject* V_15 = NULL;
RuntimeObject* V_16 = NULL;
RuntimeObject* V_17 = NULL;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* V_18 = NULL;
int32_t V_19 = 0;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* V_20 = NULL;
RuntimeObject* V_21 = NULL;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* V_22 = NULL;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_23 = NULL;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* V_24 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_25 = NULL;
RuntimeObject* V_26 = NULL;
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* V_27 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_28 = NULL;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_29 = NULL;
RuntimeObject* V_30 = NULL;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_31 = NULL;
RuntimeObject* V_32 = NULL;
int32_t G_B7_0 = 0;
int32_t G_B11_0 = 0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* G_B107_0 = NULL;
RuntimeObject* G_B110_0 = NULL;
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___map0;
RuntimeObject* L_1 = ___ob1;
bool L_2 = ___isValueList2;
XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9(__this, L_0, L_1, L_2, NULL);
bool L_3 = ___isValueList2;
if (L_3)
{
goto IL_003a;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4;
L_4 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_4);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6;
L_6 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_6);
if (!L_7)
{
goto IL_002f;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_8 = ___map0;
RuntimeObject* L_9 = ___ob1;
bool L_10 = ___isValueList2;
XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954(__this, L_8, L_9, L_10, NULL);
return;
}
IL_002f:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11;
L_11 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_11);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_11);
}
IL_003a:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_12 = ___map0;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_12, NULL);
if (L_13)
{
goto IL_0045;
}
}
{
G_B7_0 = 0;
goto IL_0050;
}
IL_0045:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_14 = ___map0;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_14, NULL);
NullCheck(L_15);
int32_t L_16;
L_16 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_15);
G_B7_0 = L_16;
}
IL_0050:
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_17 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)G_B7_0);
V_0 = L_17;
bool L_18 = ___isValueList2;
if (!L_18)
{
goto IL_006c;
}
}
{
int32_t L_19 = __this->____format_26;
if (L_19)
{
goto IL_006c;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_20 = ___map0;
NullCheck(L_20);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_21;
L_21 = ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline(L_20, NULL);
G_B11_0 = ((!(((RuntimeObject*)(XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_006d;
}
IL_006c:
{
G_B11_0 = 0;
}
IL_006d:
{
V_1 = (bool)G_B11_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22;
L_22 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_22);
int32_t L_23;
L_23 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_22);
V_2 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)NULL;
V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL;
V_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL;
V_5 = (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)NULL;
V_6 = (-1);
bool L_24 = ___readBySoapOrder3;
if (!L_24)
{
goto IL_00a7;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_25 = ___map0;
NullCheck(L_25);
RuntimeObject* L_26;
L_26 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_25, NULL);
if (!L_26)
{
goto IL_00a2;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_27 = ___map0;
NullCheck(L_27);
RuntimeObject* L_28;
L_28 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_27, NULL);
NullCheck(L_28);
int32_t L_29;
L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_28);
V_7 = L_29;
goto IL_00ae;
}
IL_00a2:
{
V_7 = (-1);
goto IL_00ae;
}
IL_00a7:
{
V_7 = ((int32_t)2147483647LL);
}
IL_00ae:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_30 = ___map0;
NullCheck(L_30);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_31;
L_31 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_30, NULL);
if (!L_31)
{
goto IL_01d9;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_32 = ___map0;
NullCheck(L_32);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_33;
L_33 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_32, NULL);
NullCheck(L_33);
int32_t L_34;
L_34 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_33);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_35 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_34);
V_2 = L_35;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_36 = ___map0;
NullCheck(L_36);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_37;
L_37 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_36, NULL);
NullCheck(L_37);
int32_t L_38;
L_38 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_37);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_38);
V_3 = L_39;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_40 = ___map0;
NullCheck(L_40);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_41;
L_41 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_40, NULL);
NullCheck(L_41);
RuntimeObject* L_42;
L_42 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_41);
V_9 = L_42;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01c4:
{// begin finally (depth: 1)
{
RuntimeObject* L_43 = V_9;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_44 = V_12;
if (!L_44)
{
goto IL_01d8;
}
}
{
RuntimeObject* L_45 = V_12;
NullCheck(L_45);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_45);
}
IL_01d8:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01b6_1;
}
IL_00ed_1:
{
RuntimeObject* L_46 = V_9;
NullCheck(L_46);
RuntimeObject* L_47;
L_47 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46);
V_10 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_47, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var));
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_48 = V_10;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_49 = V_10;
NullCheck(L_49);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_50;
L_50 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_49, NULL);
RuntimeObject* L_51 = ___ob1;
bool L_52 = ___isValueList2;
bool L_53;
L_53 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_48, L_50, L_51, L_52, NULL);
if (!L_53)
{
goto IL_0121_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_54 = V_3;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_55 = V_10;
NullCheck(L_55);
int32_t L_56;
L_56 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_55, NULL);
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_57 = V_10;
RuntimeObject* L_58 = ___ob1;
NullCheck(L_57);
RuntimeObject* L_59;
L_59 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_57, L_58, NULL);
NullCheck(L_54);
ArrayElementTypeCheck (L_54, L_59);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject*)L_59);
goto IL_0180_1;
}
IL_0121_1:
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_60 = V_10;
NullCheck(L_60);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_61;
L_61 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_60, NULL);
NullCheck(L_61);
Type_t* L_62;
L_62 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_61, NULL);
NullCheck(L_62);
bool L_63;
L_63 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_62, NULL);
if (!L_63)
{
goto IL_014c_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_3;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_65 = V_10;
NullCheck(L_65);
int32_t L_66;
L_66 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_65, NULL);
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_67 = V_10;
NullCheck(L_67);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_68;
L_68 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_67, NULL);
RuntimeObject* L_69;
L_69 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_68, NULL);
NullCheck(L_64);
ArrayElementTypeCheck (L_64, L_69);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (RuntimeObject*)L_69);
goto IL_0180_1;
}
IL_014c_1:
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_70 = V_10;
RuntimeObject* L_71 = ___ob1;
NullCheck(L_70);
RuntimeObject* L_72;
L_72 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_70, L_71, NULL);
V_11 = L_72;
RuntimeObject* L_73 = V_11;
if (L_73)
{
goto IL_0175_1;
}
}
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_74 = V_10;
NullCheck(L_74);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_75;
L_75 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_74, NULL);
RuntimeObject* L_76;
L_76 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_75, NULL);
V_11 = L_76;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_77 = V_10;
RuntimeObject* L_78 = ___ob1;
RuntimeObject* L_79 = V_11;
bool L_80 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_77, L_78, L_79, L_80, NULL);
}
IL_0175_1:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_81 = V_3;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_82 = V_10;
NullCheck(L_82);
int32_t L_83;
L_83 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_82, NULL);
RuntimeObject* L_84 = V_11;
NullCheck(L_81);
ArrayElementTypeCheck (L_81, L_84);
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(L_83), (RuntimeObject*)L_84);
}
IL_0180_1:
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_85 = V_10;
NullCheck(L_85);
String_t* L_86;
L_86 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_85, NULL);
if (!L_86)
{
goto IL_01b6_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_87 = V_4;
if (L_87)
{
goto IL_019f_1;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_88 = ___map0;
NullCheck(L_88);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_89;
L_89 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_88, NULL);
NullCheck(L_89);
int32_t L_90;
L_90 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_89);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_91 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_90);
V_4 = L_91;
}
IL_019f_1:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_92 = V_4;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_93 = V_10;
NullCheck(L_93);
int32_t L_94;
L_94 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_93, NULL);
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_95 = V_10;
NullCheck(L_95);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_96;
L_96 = XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline(L_95, NULL);
RuntimeObject* L_97;
L_97 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_96, NULL);
NullCheck(L_92);
ArrayElementTypeCheck (L_92, L_97);
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(L_94), (RuntimeObject*)L_97);
}
IL_01b6_1:
{
RuntimeObject* L_98 = V_9;
NullCheck(L_98);
bool L_99;
L_99 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_98);
if (L_99)
{
goto IL_00ed_1;
}
}
{
goto IL_01d9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01d9:
{
int32_t L_100 = __this->____format_26;
if (L_100)
{
goto IL_021b;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_101 = ___map0;
NullCheck(L_101);
RuntimeObject* L_102;
L_102 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_101, NULL);
if (!L_102)
{
goto IL_021b;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_103 = ___map0;
bool L_104 = ___isValueList2;
FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* L_105 = (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475*)il2cpp_codegen_object_new(FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475_il2cpp_TypeInfo_var);
NullCheck(L_105);
FixupCallbackInfo__ctor_m21B1A474D5B56C19F301C9D9EF4B235B7B8AE639(L_105, __this, L_103, L_104, NULL);
V_13 = L_105;
RuntimeObject* L_106 = ___ob1;
FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* L_107 = V_13;
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_108 = (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE*)il2cpp_codegen_object_new(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE_il2cpp_TypeInfo_var);
NullCheck(L_108);
XmlSerializationFixupCallback__ctor_mB41C79CFAA7CD40502E2C121836DF8A12FB521DD(L_108, L_107, (intptr_t)((void*)FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63_RuntimeMethod_var), NULL);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_109 = ___map0;
NullCheck(L_109);
RuntimeObject* L_110;
L_110 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_109, NULL);
NullCheck(L_110);
int32_t L_111;
L_111 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_110);
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_112 = (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)il2cpp_codegen_object_new(Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var);
NullCheck(L_112);
Fixup__ctor_m7213A65447CD4248AA5F086E4C71C792B5A21F14(L_112, L_106, L_108, L_111, NULL);
V_5 = L_112;
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_113 = V_5;
XmlSerializationReader_AddFixup_mF54D9CAC7E4D3149F057CBDD182C76A2EC78F794(__this, L_113, NULL);
}
IL_021b:
{
V_8 = (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)NULL;
goto IL_0a24;
}
IL_0223:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_114;
L_114 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_114);
int32_t L_115;
L_115 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_114);
if ((!(((uint32_t)L_115) == ((uint32_t)1))))
{
goto IL_08b2;
}
}
{
bool L_116 = ___readBySoapOrder3;
if (!L_116)
{
goto IL_025a;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_117 = ___map0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_118;
L_118 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_118);
String_t* L_119;
L_119 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_118);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_120;
L_120 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_120);
String_t* L_121;
L_121 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_120);
int32_t L_122 = V_6;
NullCheck(L_117);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_123;
L_123 = ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528(L_117, L_119, L_121, L_122, NULL);
V_14 = L_123;
goto IL_02c6;
}
IL_025a:
{
bool L_124 = V_1;
if (!L_124)
{
goto IL_027e;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_125 = ___map0;
NullCheck(L_125);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_126;
L_126 = ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline(L_125, NULL);
NullCheck(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_126, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)));
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_127;
L_127 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_126, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_127);
RuntimeObject* L_128;
L_128 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_127, 0);
V_14 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_128, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var));
V_1 = (bool)0;
goto IL_02c6;
}
IL_027e:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_129 = ___map0;
NullCheck(L_129);
bool L_130;
L_130 = ClassMap_get_IsOrderDependentMap_m0B479BCCCAECE8D9D5DC7659B5CFFB7CB949C93A(L_129, NULL);
if (!L_130)
{
goto IL_02a8;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_131 = ___map0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_132;
L_132 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_132);
String_t* L_133;
L_133 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_132);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_134;
L_134 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_134);
String_t* L_135;
L_135 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_134);
int32_t L_136 = V_6;
NullCheck(L_131);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_137;
L_137 = ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528(L_131, L_133, L_135, L_136, NULL);
V_14 = L_137;
goto IL_02c6;
}
IL_02a8:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_138 = ___map0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_139;
L_139 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_139);
String_t* L_140;
L_140 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_139);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_141;
L_141 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_141);
String_t* L_142;
L_142 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_141);
NullCheck(L_138);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_143;
L_143 = ClassMap_GetElement_m60767CE50696152D35651B8202236E105721F3C3(L_138, L_140, L_142, NULL);
V_14 = L_143;
}
IL_02c6:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_144 = V_14;
if (!L_144)
{
goto IL_0820;
}
}
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_145 = V_0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_146 = V_14;
NullCheck(L_146);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_147;
L_147 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_146, NULL);
NullCheck(L_147);
int32_t L_148;
L_148 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_147, NULL);
NullCheck(L_145);
int32_t L_149 = L_148;
uint8_t L_150 = (uint8_t)(L_145)->GetAt(static_cast<il2cpp_array_size_t>(L_149));
if (L_150)
{
goto IL_0820;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_151 = V_14;
NullCheck(L_151);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_152;
L_152 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_151, NULL);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_153 = V_8;
if ((((RuntimeObject*)(XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)L_152) == ((RuntimeObject*)(XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)L_153)))
{
goto IL_0313;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_154 = V_14;
NullCheck(L_154);
int32_t L_155;
L_155 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(L_154, NULL);
V_6 = ((int32_t)il2cpp_codegen_add(L_155, 1));
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_156 = V_14;
NullCheck(L_156);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_157;
L_157 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_156, NULL);
if (!((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)IsInstClass((RuntimeObject*)L_157, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var)))
{
goto IL_030a;
}
}
{
int32_t L_158 = V_6;
V_6 = ((int32_t)il2cpp_codegen_subtract(L_158, 1));
}
IL_030a:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_159 = V_14;
NullCheck(L_159);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_160;
L_160 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_159, NULL);
V_8 = L_160;
}
IL_0313:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_161 = V_14;
NullCheck(L_161);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_162;
L_162 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_161, NULL);
NullCheck(L_162);
Type_t* L_163;
L_163 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_162, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_164 = { reinterpret_cast<intptr_t> (XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_165;
L_165 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_164, NULL);
bool L_166;
L_166 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_163, L_165, NULL);
if (!L_166)
{
goto IL_0575;
}
}
{
int32_t L_167 = __this->____format_26;
if (L_167)
{
goto IL_0478;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_168 = V_14;
NullCheck(L_168);
bool L_169;
L_169 = XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F(L_168, NULL);
if (!L_169)
{
goto IL_0478;
}
}
{
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_170 = V_5;
NullCheck(L_170);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_171;
L_171 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_170, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_172 = V_14;
NullCheck(L_172);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_173;
L_173 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_172, NULL);
NullCheck(L_173);
int32_t L_174;
L_174 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_173, NULL);
NullCheck(L_171);
RuntimeObject* L_175;
L_175 = XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6(__this, ((L_171)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_174))), NULL);
V_15 = L_175;
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_176 = V_5;
NullCheck(L_176);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_177;
L_177 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_176, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_178 = V_14;
NullCheck(L_178);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_179;
L_179 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_178, NULL);
NullCheck(L_179);
int32_t L_180;
L_180 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_179, NULL);
NullCheck(L_177);
int32_t L_181 = L_180;
String_t* L_182 = (L_177)->GetAt(static_cast<il2cpp_array_size_t>(L_181));
if (L_182)
{
goto IL_03c1;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_183 = V_14;
NullCheck(L_183);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_184;
L_184 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_183, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_185 = V_14;
NullCheck(L_185);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_186;
L_186 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_185, NULL);
RuntimeObject* L_187 = ___ob1;
bool L_188 = ___isValueList2;
bool L_189;
L_189 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_184, L_186, L_187, L_188, NULL);
if (!L_189)
{
goto IL_03ab;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_190 = V_14;
NullCheck(L_190);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_191;
L_191 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_190, NULL);
NullCheck(L_191);
String_t* L_192;
L_192 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_191, NULL);
Exception_t* L_193;
L_193 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_192, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_193, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B_RuntimeMethod_var)));
}
IL_03ab:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_194 = V_14;
NullCheck(L_194);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_195;
L_195 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_194, NULL);
RuntimeObject* L_196 = ___ob1;
RuntimeObject* L_197 = V_15;
bool L_198 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_195, L_196, L_197, L_198, NULL);
goto IL_0561;
}
IL_03c1:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_199 = V_14;
NullCheck(L_199);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_200;
L_200 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_199, NULL);
NullCheck(L_200);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_201;
L_201 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_200, NULL);
NullCheck(L_201);
Type_t* L_202;
L_202 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_201, NULL);
NullCheck(L_202);
bool L_203;
L_203 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_202, NULL);
if (L_203)
{
goto IL_0561;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_204 = V_14;
NullCheck(L_204);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_205;
L_205 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_204, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_206 = V_14;
NullCheck(L_206);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_207;
L_207 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_206, NULL);
RuntimeObject* L_208 = ___ob1;
bool L_209 = ___isValueList2;
bool L_210;
L_210 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_205, L_207, L_208, L_209, NULL);
if (!L_210)
{
goto IL_0407;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_211 = V_14;
NullCheck(L_211);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_212;
L_212 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_211, NULL);
RuntimeObject* L_213 = ___ob1;
bool L_214 = ___isValueList2;
RuntimeObject* L_215;
L_215 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_212, L_213, L_214, NULL);
V_15 = L_215;
goto IL_0431;
}
IL_0407:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_216 = V_14;
NullCheck(L_216);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_217;
L_217 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_216, NULL);
NullCheck(L_217);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_218;
L_218 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_217, NULL);
NullCheck(L_218);
Type_t* L_219;
L_219 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_218, NULL);
RuntimeObject* L_220;
L_220 = XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3(__this, L_219, NULL);
V_15 = L_220;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_221 = V_14;
NullCheck(L_221);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_222;
L_222 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_221, NULL);
RuntimeObject* L_223 = ___ob1;
RuntimeObject* L_224 = V_15;
bool L_225 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_222, L_223, L_224, L_225, NULL);
}
IL_0431:
{
RuntimeObject* L_226 = V_15;
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_227 = (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842*)il2cpp_codegen_object_new(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842_il2cpp_TypeInfo_var);
NullCheck(L_227);
XmlSerializationCollectionFixupCallback__ctor_mB50149D9773BF51E099E574127D057F454EC6DF8(L_227, __this, (intptr_t)((void*)XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9_RuntimeMethod_var), NULL);
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_228 = V_5;
NullCheck(L_228);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_229;
L_229 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_228, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_230 = V_14;
NullCheck(L_230);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_231;
L_231 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_230, NULL);
NullCheck(L_231);
int32_t L_232;
L_232 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_231, NULL);
NullCheck(L_229);
int32_t L_233 = L_232;
String_t* L_234 = (L_229)->GetAt(static_cast<il2cpp_array_size_t>(L_233));
CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_235 = (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702*)il2cpp_codegen_object_new(CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var);
NullCheck(L_235);
CollectionFixup__ctor_m1F4ADF9D829F9B0BFEB1442AEB2167118F4EA0AB(L_235, L_226, L_227, L_234, NULL);
XmlSerializationReader_AddFixup_m846FB4EEF12E21F5803BC41685952AFE6A3D98E1(__this, L_235, NULL);
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_236 = V_5;
NullCheck(L_236);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_237;
L_237 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_236, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_238 = V_14;
NullCheck(L_238);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_239;
L_239 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_238, NULL);
NullCheck(L_239);
int32_t L_240;
L_240 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_239, NULL);
NullCheck(L_237);
ArrayElementTypeCheck (L_237, NULL);
(L_237)->SetAt(static_cast<il2cpp_array_size_t>(L_240), (String_t*)NULL);
goto IL_0561;
}
IL_0478:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_241 = V_14;
NullCheck(L_241);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_242;
L_242 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_241, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_243 = V_14;
NullCheck(L_243);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_244;
L_244 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_243, NULL);
RuntimeObject* L_245 = ___ob1;
bool L_246 = ___isValueList2;
bool L_247;
L_247 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_242, L_244, L_245, L_246, NULL);
if (!L_247)
{
goto IL_04ba;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_248 = V_14;
NullCheck(L_248);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_249;
L_249 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_248, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_250 = V_14;
NullCheck(L_250);
bool L_251;
L_251 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_250, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_252 = V_14;
NullCheck(L_252);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_253;
L_253 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_252, NULL);
RuntimeObject* L_254 = ___ob1;
bool L_255 = ___isValueList2;
RuntimeObject* L_256;
L_256 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_253, L_254, L_255, NULL);
RuntimeObject* L_257;
L_257 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_249, L_251, L_256, (bool)0, NULL);
goto IL_0561;
}
IL_04ba:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_258 = V_14;
NullCheck(L_258);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_259;
L_259 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_258, NULL);
NullCheck(L_259);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_260;
L_260 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_259, NULL);
NullCheck(L_260);
Type_t* L_261;
L_261 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_260, NULL);
NullCheck(L_261);
bool L_262;
L_262 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_261, NULL);
if (!L_262)
{
goto IL_050a;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_263 = V_14;
NullCheck(L_263);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_264;
L_264 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_263, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_265 = V_14;
NullCheck(L_265);
bool L_266;
L_266 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_265, NULL);
RuntimeObject* L_267;
L_267 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_264, L_266, NULL, (bool)1, NULL);
V_16 = L_267;
RuntimeObject* L_268 = V_16;
if (L_268)
{
goto IL_04f7;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_269 = V_14;
NullCheck(L_269);
bool L_270;
L_270 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_269, NULL);
if (!L_270)
{
goto IL_0561;
}
}
IL_04f7:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_271 = V_14;
NullCheck(L_271);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_272;
L_272 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_271, NULL);
RuntimeObject* L_273 = ___ob1;
RuntimeObject* L_274 = V_16;
bool L_275 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_272, L_273, L_274, L_275, NULL);
goto IL_0561;
}
IL_050a:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_276 = V_14;
NullCheck(L_276);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_277;
L_277 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_276, NULL);
RuntimeObject* L_278 = ___ob1;
bool L_279 = ___isValueList2;
RuntimeObject* L_280;
L_280 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_277, L_278, L_279, NULL);
V_17 = L_280;
RuntimeObject* L_281 = V_17;
if (L_281)
{
goto IL_0549;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_282 = V_14;
NullCheck(L_282);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_283;
L_283 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_282, NULL);
NullCheck(L_283);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_284;
L_284 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_283, NULL);
NullCheck(L_284);
Type_t* L_285;
L_285 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_284, NULL);
RuntimeObject* L_286;
L_286 = XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3(__this, L_285, NULL);
V_17 = L_286;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_287 = V_14;
NullCheck(L_287);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_288;
L_288 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_287, NULL);
RuntimeObject* L_289 = ___ob1;
RuntimeObject* L_290 = V_17;
bool L_291 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_288, L_289, L_290, L_291, NULL);
}
IL_0549:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_292 = V_14;
NullCheck(L_292);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_293;
L_293 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_292, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_294 = V_14;
NullCheck(L_294);
bool L_295;
L_295 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_294, NULL);
RuntimeObject* L_296 = V_17;
RuntimeObject* L_297;
L_297 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_293, L_295, L_296, (bool)1, NULL);
}
IL_0561:
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_298 = V_0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_299 = V_14;
NullCheck(L_299);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_300;
L_300 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_299, NULL);
NullCheck(L_300);
int32_t L_301;
L_301 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_300, NULL);
NullCheck(L_298);
(L_298)->SetAt(static_cast<il2cpp_array_size_t>(L_301), (bool)1);
goto IL_0a18;
}
IL_0575:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_302 = V_14;
NullCheck(L_302);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_303;
L_303 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_302, NULL);
NullCheck(L_303);
Type_t* L_304;
L_304 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_303, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_305 = { reinterpret_cast<intptr_t> (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_306;
L_306 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_305, NULL);
bool L_307;
L_307 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_304, L_306, NULL);
if (!L_307)
{
goto IL_0635;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_308 = V_14;
NullCheck(L_308);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_309;
L_309 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_308, NULL);
V_18 = ((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)CastclassClass((RuntimeObject*)L_309, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var));
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_310 = V_18;
NullCheck(L_310);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_311;
L_311 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_310, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_312 = V_3;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_313 = V_18;
NullCheck(L_313);
int32_t L_314;
L_314 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_313, NULL);
NullCheck(L_312);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_315 = V_2;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_316 = V_18;
NullCheck(L_316);
int32_t L_317;
L_317 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_316, NULL);
NullCheck(L_315);
int32_t* L_318 = ((L_315)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_317)));
int32_t L_319 = *((int32_t*)L_318);
V_19 = L_319;
int32_t L_320 = V_19;
*((int32_t*)L_318) = (int32_t)((int32_t)il2cpp_codegen_add(L_320, 1));
int32_t L_321 = V_19;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_322 = V_14;
RuntimeObject* L_323;
L_323 = XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05(__this, L_322, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_324 = V_14;
NullCheck(L_324);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_325;
L_325 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_324, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_326 = V_14;
NullCheck(L_326);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_327;
L_327 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_326, NULL);
RuntimeObject* L_328 = ___ob1;
bool L_329 = ___isValueList2;
bool L_330;
L_330 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_325, L_327, L_328, L_329, NULL);
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_311, ((L_312)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_314))), L_321, L_323, (bool)((((int32_t)L_330) == ((int32_t)0))? 1 : 0), NULL);
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_331 = V_18;
NullCheck(L_331);
String_t* L_332;
L_332 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_331, NULL);
if (!L_332)
{
goto IL_0a18;
}
}
{
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_333 = V_18;
NullCheck(L_333);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_334;
L_334 = XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline(L_333, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_335 = V_4;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_336 = V_18;
NullCheck(L_336);
int32_t L_337;
L_337 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_336, NULL);
NullCheck(L_335);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_338 = V_2;
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_339 = V_18;
NullCheck(L_339);
int32_t L_340;
L_340 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_339, NULL);
NullCheck(L_338);
int32_t L_341 = L_340;
int32_t L_342 = (L_338)->GetAt(static_cast<il2cpp_array_size_t>(L_341));
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_343 = V_14;
NullCheck(L_343);
RuntimeObject* L_344;
L_344 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_343, NULL);
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_334, ((L_335)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_337))), ((int32_t)il2cpp_codegen_subtract(L_342, 1)), L_344, (bool)1, NULL);
goto IL_0a18;
}
IL_0635:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_345 = V_14;
NullCheck(L_345);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_346;
L_346 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_345, NULL);
NullCheck(L_346);
Type_t* L_347;
L_347 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_346, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_348 = { reinterpret_cast<intptr_t> (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_349;
L_349 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_348, NULL);
bool L_350;
L_350 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_347, L_349, NULL);
if (!L_350)
{
goto IL_06d9;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_351 = V_14;
NullCheck(L_351);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_352;
L_352 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_351, NULL);
V_20 = ((XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950*)CastclassClass((RuntimeObject*)L_352, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var));
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_353 = V_20;
NullCheck(L_353);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_354;
L_354 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_353, NULL);
NullCheck(L_354);
bool L_355;
L_355 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_354, NULL);
if (!L_355)
{
goto IL_06bc;
}
}
{
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_356 = V_20;
NullCheck(L_356);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_357;
L_357 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_356, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_358 = V_3;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_359 = V_20;
NullCheck(L_359);
int32_t L_360;
L_360 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_359, NULL);
NullCheck(L_358);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_361 = V_2;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_362 = V_20;
NullCheck(L_362);
int32_t L_363;
L_363 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_362, NULL);
NullCheck(L_361);
int32_t* L_364 = ((L_361)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_363)));
int32_t L_365 = *((int32_t*)L_364);
V_19 = L_365;
int32_t L_366 = V_19;
*((int32_t*)L_364) = (int32_t)((int32_t)il2cpp_codegen_add(L_366, 1));
int32_t L_367 = V_19;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_368 = V_20;
NullCheck(L_368);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_369;
L_369 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_368, NULL);
NullCheck(L_369);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_370;
L_370 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_369, NULL);
RuntimeObject* L_371;
L_371 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_370, (bool)0, NULL);
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_357, ((L_358)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_360))), L_367, L_371, (bool)1, NULL);
goto IL_0a18;
}
IL_06bc:
{
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_372 = V_20;
RuntimeObject* L_373 = ___ob1;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_374 = V_20;
NullCheck(L_374);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_375;
L_375 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_374, NULL);
RuntimeObject* L_376;
L_376 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_375, (bool)0, NULL);
bool L_377 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_372, L_373, L_376, L_377, NULL);
goto IL_0a18;
}
IL_06d9:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_378 = V_14;
NullCheck(L_378);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_379;
L_379 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_378, NULL);
NullCheck(L_379);
Type_t* L_380;
L_380 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_379, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_381 = { reinterpret_cast<intptr_t> (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_382;
L_382 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_381, NULL);
bool L_383;
L_383 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_380, L_382, NULL);
if (!L_383)
{
goto IL_0815;
}
}
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_384 = V_0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_385 = V_14;
NullCheck(L_385);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_386;
L_386 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_385, NULL);
NullCheck(L_386);
int32_t L_387;
L_387 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_386, NULL);
NullCheck(L_384);
(L_384)->SetAt(static_cast<il2cpp_array_size_t>(L_387), (bool)1);
int32_t L_388 = __this->____format_26;
if (L_388)
{
goto IL_07d4;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_389 = V_14;
NullCheck(L_389);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_390;
L_390 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_389, NULL);
NullCheck(L_390);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_391;
L_391 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_390, NULL);
NullCheck(L_391);
int32_t L_392;
L_392 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_391, NULL);
if ((((int32_t)L_392) == ((int32_t)1)))
{
goto IL_0749;
}
}
{
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_393 = V_5;
NullCheck(L_393);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_394;
L_394 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_393, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_395 = V_14;
NullCheck(L_395);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_396;
L_396 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_395, NULL);
NullCheck(L_396);
int32_t L_397;
L_397 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_396, NULL);
NullCheck(L_394);
RuntimeObject* L_398;
L_398 = XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6(__this, ((L_394)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_397))), NULL);
V_21 = L_398;
goto IL_077f;
}
IL_0749:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_399 = V_14;
NullCheck(L_399);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_400;
L_400 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_399, NULL);
NullCheck(L_400);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_401;
L_401 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_400, NULL);
NullCheck(L_401);
String_t* L_402;
L_402 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_401, NULL);
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_403 = V_5;
NullCheck(L_403);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_404;
L_404 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_403, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_405 = V_14;
NullCheck(L_405);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_406;
L_406 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_405, NULL);
NullCheck(L_406);
int32_t L_407;
L_407 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_406, NULL);
NullCheck(L_404);
RuntimeObject* L_408;
L_408 = XmlSerializationReader_ReadReferencingElement_m83079F8026EBB9E442B5F5BD09D7E5C1B53595D0(__this, L_402, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, ((L_404)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_407))), NULL);
V_21 = L_408;
}
IL_077f:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_409 = V_14;
NullCheck(L_409);
bool L_410;
L_410 = XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F(L_409, NULL);
if (!L_410)
{
goto IL_07b7;
}
}
{
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_411 = V_5;
NullCheck(L_411);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_412;
L_412 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_411, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_413 = V_14;
NullCheck(L_413);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_414;
L_414 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_413, NULL);
NullCheck(L_414);
int32_t L_415;
L_415 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_414, NULL);
NullCheck(L_412);
int32_t L_416 = L_415;
String_t* L_417 = (L_412)->GetAt(static_cast<il2cpp_array_size_t>(L_416));
if (L_417)
{
goto IL_0a18;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_418 = V_14;
NullCheck(L_418);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_419;
L_419 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_418, NULL);
RuntimeObject* L_420 = ___ob1;
RuntimeObject* L_421 = V_21;
bool L_422 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_419, L_420, L_421, L_422, NULL);
goto IL_0a18;
}
IL_07b7:
{
RuntimeObject* L_423 = V_21;
if (!L_423)
{
goto IL_0a18;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_424 = V_14;
NullCheck(L_424);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_425;
L_425 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_424, NULL);
RuntimeObject* L_426 = ___ob1;
RuntimeObject* L_427 = V_21;
bool L_428 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_425, L_426, L_427, L_428, NULL);
goto IL_0a18;
}
IL_07d4:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_429 = V_14;
NullCheck(L_429);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_430;
L_430 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_429, NULL);
RuntimeObject* L_431 = ___ob1;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_432 = V_14;
RuntimeObject* L_433;
L_433 = XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05(__this, L_432, NULL);
bool L_434 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_430, L_431, L_433, L_434, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_435 = V_14;
NullCheck(L_435);
RuntimeObject* L_436;
L_436 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_435, NULL);
if (!L_436)
{
goto IL_0a18;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_437 = V_14;
NullCheck(L_437);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_438;
L_438 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_437, NULL);
RuntimeObject* L_439 = ___ob1;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_440 = V_14;
NullCheck(L_440);
RuntimeObject* L_441;
L_441 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_440, NULL);
NullCheck(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_438, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)));
XmlTypeMapMemberElement_SetChoice_m70A2968411084153BBDD57111C740A75C9D7AEB5(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_438, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)), L_439, L_441, NULL);
goto IL_0a18;
}
IL_0815:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_442 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_442);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_442, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6FFF89F12DC2A6CF2CA9D0A3799CAF055178ACE5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_442, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B_RuntimeMethod_var)));
}
IL_0820:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_443 = ___map0;
NullCheck(L_443);
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_444;
L_444 = ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline(L_443, NULL);
if (!L_444)
{
goto IL_08a6;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_445 = ___map0;
NullCheck(L_445);
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_446;
L_446 = ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline(L_445, NULL);
V_22 = L_446;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_447 = V_22;
NullCheck(L_447);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_448;
L_448 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_447, NULL);
NullCheck(L_448);
bool L_449;
L_449 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_448, NULL);
if (!L_449)
{
goto IL_0889;
}
}
{
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_450 = V_22;
NullCheck(L_450);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_451;
L_451 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_450, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_452 = V_3;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_453 = V_22;
NullCheck(L_453);
int32_t L_454;
L_454 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_453, NULL);
NullCheck(L_452);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_455 = V_2;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_456 = V_22;
NullCheck(L_456);
int32_t L_457;
L_457 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_456, NULL);
NullCheck(L_455);
int32_t* L_458 = ((L_455)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_457)));
int32_t L_459 = *((int32_t*)L_458);
V_19 = L_459;
int32_t L_460 = V_19;
*((int32_t*)L_458) = (int32_t)((int32_t)il2cpp_codegen_add(L_460, 1));
int32_t L_461 = V_19;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_462 = V_22;
NullCheck(L_462);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_463;
L_463 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_462, NULL);
NullCheck(L_463);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_464;
L_464 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_463, NULL);
RuntimeObject* L_465;
L_465 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_464, (bool)0, NULL);
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_451, ((L_452)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_454))), L_461, L_465, (bool)1, NULL);
goto IL_0a18;
}
IL_0889:
{
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_466 = V_22;
RuntimeObject* L_467 = ___ob1;
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_468 = V_22;
NullCheck(L_468);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_469;
L_469 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_468, NULL);
RuntimeObject* L_470;
L_470 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_469, (bool)0, NULL);
bool L_471 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_466, L_467, L_470, L_471, NULL);
goto IL_0a18;
}
IL_08a6:
{
RuntimeObject* L_472 = ___ob1;
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownElement(System.Object) */, __this, L_472);
goto IL_0a18;
}
IL_08b2:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_473;
L_473 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_473);
int32_t L_474;
L_474 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_473);
if ((((int32_t)L_474) == ((int32_t)3)))
{
goto IL_08d1;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_475;
L_475 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_475);
int32_t L_476;
L_476 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_475);
if ((!(((uint32_t)L_476) == ((uint32_t)4))))
{
goto IL_0a11;
}
}
IL_08d1:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_477 = ___map0;
NullCheck(L_477);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_478;
L_478 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_477, NULL);
if (!L_478)
{
goto IL_0a11;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_479 = ___map0;
NullCheck(L_479);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_480;
L_480 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_479, NULL);
if (!((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)IsInstClass((RuntimeObject*)L_480, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var)))
{
goto IL_0991;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_481 = ___map0;
NullCheck(L_481);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_482;
L_482 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_481, NULL);
V_23 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_482, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var));
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_483 = V_23;
V_24 = ((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)IsInstClass((RuntimeObject*)L_483, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var));
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_484 = V_24;
if (!L_484)
{
goto IL_0919;
}
}
{
XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_485 = V_24;
NullCheck(L_485);
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_486;
L_486 = XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline(L_485, NULL);
NullCheck(L_486);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_487;
L_487 = ListMap_FindTextElement_m4A953DA460CF998CB59D87819531224C9069FC0A(L_486, NULL);
NullCheck(L_487);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_488;
L_488 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_487, NULL);
G_B107_0 = L_488;
goto IL_0925;
}
IL_0919:
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_489 = V_23;
NullCheck(L_489);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_490;
L_490 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_489, NULL);
NullCheck(L_490);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_491;
L_491 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_490, NULL);
G_B107_0 = L_491;
}
IL_0925:
{
V_25 = G_B107_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_492 = V_25;
NullCheck(L_492);
Type_t* L_493;
L_493 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_492, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_494 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_495;
L_495 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_494, NULL);
bool L_496;
L_496 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_493, L_495, NULL);
if (L_496)
{
goto IL_094a;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_497 = V_25;
RuntimeObject* L_498;
L_498 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_497, (bool)0, NULL);
G_B110_0 = L_498;
goto IL_0955;
}
IL_094a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_499;
L_499 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_499);
String_t* L_500;
L_500 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_499);
G_B110_0 = ((RuntimeObject*)(L_500));
}
IL_0955:
{
V_26 = G_B110_0;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_501 = V_23;
NullCheck(L_501);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_502;
L_502 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_501, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_503 = V_3;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_504 = V_23;
NullCheck(L_504);
int32_t L_505;
L_505 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_504, NULL);
NullCheck(L_503);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_506 = V_2;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_507 = V_23;
NullCheck(L_507);
int32_t L_508;
L_508 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_507, NULL);
NullCheck(L_506);
int32_t* L_509 = ((L_506)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_508)));
int32_t L_510 = *((int32_t*)L_509);
V_19 = L_510;
int32_t L_511 = V_19;
*((int32_t*)L_509) = (int32_t)((int32_t)il2cpp_codegen_add(L_511, 1));
int32_t L_512 = V_19;
RuntimeObject* L_513 = V_26;
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_502, ((L_503)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_505))), L_512, L_513, (bool)1, NULL);
goto IL_0a18;
}
IL_0991:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_514 = ___map0;
NullCheck(L_514);
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_515;
L_515 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_514, NULL);
V_27 = ((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_515, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_516 = V_27;
NullCheck(L_516);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_517;
L_517 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(L_516, NULL);
NullCheck(L_517);
RuntimeObject* L_518;
L_518 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_517, 0);
V_28 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_518, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_519 = V_28;
NullCheck(L_519);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_520;
L_520 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_519, NULL);
NullCheck(L_520);
Type_t* L_521;
L_521 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_520, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_522 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_523;
L_523 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_522, NULL);
bool L_524;
L_524 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_521, L_523, NULL);
if (!L_524)
{
goto IL_09e6;
}
}
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_525 = V_27;
RuntimeObject* L_526 = ___ob1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_527;
L_527 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_527);
String_t* L_528;
L_528 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_527);
bool L_529 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_525, L_526, L_528, L_529, NULL);
goto IL_0a18;
}
IL_09e6:
{
XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_530 = V_27;
RuntimeObject* L_531 = ___ob1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_532;
L_532 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_532);
String_t* L_533;
L_533 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_532);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_534 = V_28;
NullCheck(L_534);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_535;
L_535 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_534, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_536 = V_28;
NullCheck(L_536);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_537;
L_537 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_536, NULL);
RuntimeObject* L_538;
L_538 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_533, L_535, L_537, NULL);
bool L_539 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_530, L_531, L_538, L_539, NULL);
goto IL_0a18;
}
IL_0a11:
{
RuntimeObject* L_540 = ___ob1;
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, L_540, NULL);
}
IL_0a18:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_541;
L_541 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_541);
int32_t L_542;
L_542 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_541);
}
IL_0a24:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_543;
L_543 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_543);
int32_t L_544;
L_544 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_543);
if ((((int32_t)L_544) == ((int32_t)((int32_t)15))))
{
goto IL_0a3e;
}
}
{
int32_t L_545 = V_6;
int32_t L_546 = V_7;
if ((((int32_t)L_545) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_546, 1)))))
{
goto IL_0223;
}
}
IL_0a3e:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_547 = V_3;
if (!L_547)
{
goto IL_0b01;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_548 = ___map0;
NullCheck(L_548);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_549;
L_549 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_548, NULL);
NullCheck(L_549);
RuntimeObject* L_550;
L_550 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_549);
V_9 = L_550;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0aec:
{// begin finally (depth: 1)
{
RuntimeObject* L_551 = V_9;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_551, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_552 = V_12;
if (!L_552)
{
goto IL_0b00;
}
}
{
RuntimeObject* L_553 = V_12;
NullCheck(L_553);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_553);
}
IL_0b00:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0ade_1;
}
IL_0a56_1:
{
RuntimeObject* L_554 = V_9;
NullCheck(L_554);
RuntimeObject* L_555;
L_555 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_554);
V_29 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_555, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_556 = V_3;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_557 = V_29;
NullCheck(L_557);
int32_t L_558;
L_558 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_557, NULL);
NullCheck(L_556);
int32_t L_559 = L_558;
RuntimeObject* L_560 = (L_556)->GetAt(static_cast<il2cpp_array_size_t>(L_559));
V_30 = L_560;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_561 = V_29;
NullCheck(L_561);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_562;
L_562 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_561, NULL);
NullCheck(L_562);
Type_t* L_563;
L_563 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_562, NULL);
NullCheck(L_563);
bool L_564;
L_564 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_563, NULL);
if (!L_564)
{
goto IL_0aac_1;
}
}
{
RuntimeObject* L_565 = V_30;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_566 = V_2;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_567 = V_29;
NullCheck(L_567);
int32_t L_568;
L_568 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_567, NULL);
NullCheck(L_566);
int32_t L_569 = L_568;
int32_t L_570 = (L_566)->GetAt(static_cast<il2cpp_array_size_t>(L_569));
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_571 = V_29;
NullCheck(L_571);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_572;
L_572 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_571, NULL);
NullCheck(L_572);
Type_t* L_573;
L_573 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_572, NULL);
NullCheck(L_573);
Type_t* L_574;
L_574 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_573);
RuntimeArray* L_575;
L_575 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_565, RuntimeArray_il2cpp_TypeInfo_var)), L_570, L_574, (bool)1, NULL);
V_30 = L_575;
}
IL_0aac_1:
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_576 = V_29;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_577 = V_29;
NullCheck(L_577);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_578;
L_578 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_577, NULL);
RuntimeObject* L_579 = ___ob1;
bool L_580 = ___isValueList2;
bool L_581;
L_581 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_576, L_578, L_579, L_580, NULL);
if (L_581)
{
goto IL_0ade_1;
}
}
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_582 = V_29;
NullCheck(L_582);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_583;
L_583 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_582, NULL);
NullCheck(L_583);
Type_t* L_584;
L_584 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_583, NULL);
NullCheck(L_584);
bool L_585;
L_585 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_584, NULL);
if (!L_585)
{
goto IL_0ade_1;
}
}
{
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_586 = V_29;
RuntimeObject* L_587 = ___ob1;
RuntimeObject* L_588 = V_30;
bool L_589 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_586, L_587, L_588, L_589, NULL);
}
IL_0ade_1:
{
RuntimeObject* L_590 = V_9;
NullCheck(L_590);
bool L_591;
L_591 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_590);
if (L_591)
{
goto IL_0a56_1;
}
}
{
goto IL_0b01;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0b01:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_592 = V_4;
if (!L_592)
{
goto IL_0b8e;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_593 = ___map0;
NullCheck(L_593);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_594;
L_594 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_593, NULL);
NullCheck(L_594);
RuntimeObject* L_595;
L_595 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_594);
V_9 = L_595;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0b79:
{// begin finally (depth: 1)
{
RuntimeObject* L_596 = V_9;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_596, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_597 = V_12;
if (!L_597)
{
goto IL_0b8d;
}
}
{
RuntimeObject* L_598 = V_12;
NullCheck(L_598);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_598);
}
IL_0b8d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0b6e_1;
}
IL_0b17_1:
{
RuntimeObject* L_599 = V_9;
NullCheck(L_599);
RuntimeObject* L_600;
L_600 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_599);
V_31 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_600, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_601 = V_4;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_602 = V_31;
NullCheck(L_602);
int32_t L_603;
L_603 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_602, NULL);
NullCheck(L_601);
int32_t L_604 = L_603;
RuntimeObject* L_605 = (L_601)->GetAt(static_cast<il2cpp_array_size_t>(L_604));
V_32 = L_605;
RuntimeObject* L_606 = V_32;
if (!L_606)
{
goto IL_0b6e_1;
}
}
{
RuntimeObject* L_607 = V_32;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_608 = V_2;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_609 = V_31;
NullCheck(L_609);
int32_t L_610;
L_610 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_609, NULL);
NullCheck(L_608);
int32_t L_611 = L_610;
int32_t L_612 = (L_608)->GetAt(static_cast<il2cpp_array_size_t>(L_611));
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_613 = V_31;
NullCheck(L_613);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_614;
L_614 = XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline(L_613, NULL);
NullCheck(L_614);
Type_t* L_615;
L_615 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_614, NULL);
NullCheck(L_615);
Type_t* L_616;
L_616 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_615);
RuntimeArray* L_617;
L_617 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_607, RuntimeArray_il2cpp_TypeInfo_var)), L_612, L_616, (bool)1, NULL);
V_32 = L_617;
RuntimeObject* L_618 = ___ob1;
XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_619 = V_31;
NullCheck(L_619);
String_t* L_620;
L_620 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_619, NULL);
RuntimeObject* L_621 = V_32;
XmlTypeMapMember_SetValue_m163DA4E73791FCAE462A497BF2A0224A7775B629(L_618, L_620, L_621, NULL);
}
IL_0b6e_1:
{
RuntimeObject* L_622 = V_9;
NullCheck(L_622);
bool L_623;
L_623 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_622);
if (L_623)
{
goto IL_0b17_1;
}
}
{
goto IL_0b8e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0b8e:
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_624 = ___map0;
RuntimeObject* L_625 = ___ob1;
bool L_626 = ___isValueList2;
XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954(__this, L_624, L_625, L_626, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetListMembersDefaults(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___ob1, bool ___isValueList2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL;
int32_t V_1 = 0;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_2 = NULL;
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___map0;
NullCheck(L_0);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1;
L_1 = ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline(L_0, NULL);
if (!L_1)
{
goto IL_005e;
}
}
{
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = ___map0;
NullCheck(L_2);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3;
L_3 = ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline(L_2, NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0055;
}
IL_0013:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
V_2 = ((XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var));
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_7 = V_2;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_8 = V_2;
NullCheck(L_8);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_9;
L_9 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_8, NULL);
RuntimeObject* L_10 = ___ob1;
bool L_11 = ___isValueList2;
bool L_12;
L_12 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_7, L_9, L_10, L_11, NULL);
if (L_12)
{
goto IL_0051;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_13 = V_2;
RuntimeObject* L_14 = ___ob1;
bool L_15 = ___isValueList2;
RuntimeObject* L_16;
L_16 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_13, L_14, L_15, NULL);
if (L_16)
{
goto IL_0051;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_17 = V_2;
RuntimeObject* L_18 = ___ob1;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_19 = V_2;
NullCheck(L_19);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_20;
L_20 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_19, NULL);
RuntimeObject* L_21;
L_21 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_20, NULL);
bool L_22 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_17, L_18, L_21, L_22, NULL);
}
IL_0051:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1));
}
IL_0055:
{
int32_t L_24 = V_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_25 = V_0;
NullCheck(L_25);
int32_t L_26;
L_26 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_25);
if ((((int32_t)L_24) < ((int32_t)L_26)))
{
goto IL_0013;
}
}
IL_005e:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FixupMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FixupMembers_mE0162576E13B7E40DD786B330C4D9D79326CFB75 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map0, RuntimeObject* ___obfixup1, bool ___isValueList2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* V_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
RuntimeObject* V_2 = NULL;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_3 = NULL;
RuntimeObject* V_4 = NULL;
{
RuntimeObject* L_0 = ___obfixup1;
V_0 = ((Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)CastclassClass((RuntimeObject*)L_0, Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var));
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_1 = ___map0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_1, NULL);
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_3 = V_0;
NullCheck(L_3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4;
L_4 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_3, NULL);
V_1 = L_4;
NullCheck(L_2);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_2);
V_2 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0058:
{// begin finally (depth: 1)
{
RuntimeObject* L_6 = V_2;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_7 = V_4;
if (!L_7)
{
goto IL_006b;
}
}
{
RuntimeObject* L_8 = V_4;
NullCheck(L_8);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8);
}
IL_006b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_004e_1;
}
IL_001c_1:
{
RuntimeObject* L_9 = V_2;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_9);
V_3 = ((XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)CastclassClass((RuntimeObject*)L_10, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = V_1;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_12 = V_3;
NullCheck(L_12);
int32_t L_13;
L_13 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_12, NULL);
NullCheck(L_11);
int32_t L_14 = L_13;
String_t* L_15 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
if (!L_15)
{
goto IL_004e_1;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_16 = V_3;
Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_17 = V_0;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE_inline(L_17, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = V_1;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_20 = V_3;
NullCheck(L_20);
int32_t L_21;
L_21 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_20, NULL);
NullCheck(L_19);
int32_t L_22 = L_21;
String_t* L_23 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
RuntimeObject* L_24;
L_24 = XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F(__this, L_23, NULL);
bool L_25 = ___isValueList2;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_16, L_18, L_24, L_25, NULL);
}
IL_004e_1:
{
RuntimeObject* L_26 = V_2;
NullCheck(L_26);
bool L_27;
L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_26);
if (L_27)
{
goto IL_001c_1;
}
}
{
goto IL_006c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006c:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownAttribute(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ProcessUnknownAttribute_m643C849D5586733BE0EE557C6F33E44B645B3F22 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___target0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___target0;
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownElement(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ProcessUnknownElement_m2EBBA0C54E49BFD1F00131610B7F4375B703759B (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___target0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___target0;
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, L_0, NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter::IsReadOnly(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___memType1, RuntimeObject* ___ob2, bool ___isValueList3, const RuntimeMethod* method)
{
{
bool L_0 = ___isValueList3;
if (!L_0)
{
goto IL_000e;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = ___memType1;
NullCheck(L_1);
bool L_2;
L_2 = TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline(L_1, NULL);
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
}
IL_000e:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_3 = ___member0;
RuntimeObject* L_4 = ___ob2;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
NullCheck(L_3);
bool L_6;
L_6 = XmlTypeMapMember_IsReadOnly_mE3DBCC6D4CA65E2E2CAA00D4E21C30CAAC03F805(L_3, L_5, NULL);
if (L_6)
{
goto IL_0026;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7 = ___memType1;
NullCheck(L_7);
bool L_8;
L_8 = TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline(L_7, NULL);
return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
}
IL_0026:
{
return (bool)1;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, RuntimeObject* ___ob1, RuntimeObject* ___value2, bool ___isValueList3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = ___member0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_0, NULL);
NullCheck(L_1);
Type_t* L_2;
L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL);
V_0 = L_2;
RuntimeObject* L_3 = ___value2;
if (!L_3)
{
goto IL_0026;
}
}
{
RuntimeObject* L_4 = ___value2;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
Type_t* L_6 = V_0;
NullCheck(L_5);
bool L_7;
L_7 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_5, L_6);
if (L_7)
{
goto IL_0026;
}
}
{
RuntimeObject* L_8 = ___value2;
Type_t* L_9 = V_0;
RuntimeObject* L_10;
L_10 = XmlSerializationWriterInterpreter_ImplicitConvert_mD16AB1B10272160C637E2A335ADB47E55864C07E(L_8, L_9, NULL);
___value2 = L_10;
}
IL_0026:
{
bool L_11 = ___isValueList3;
if (!L_11)
{
goto IL_003a;
}
}
{
RuntimeObject* L_12 = ___ob1;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_13 = ___member0;
NullCheck(L_13);
int32_t L_14;
L_14 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_13, NULL);
RuntimeObject* L_15 = ___value2;
NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_12, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)));
ArrayElementTypeCheck (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_12, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), L_15);
(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_12, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RuntimeObject*)L_15);
goto IL_0042;
}
IL_003a:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_16 = ___member0;
RuntimeObject* L_17 = ___ob1;
RuntimeObject* L_18 = ___value2;
NullCheck(L_16);
XmlTypeMapMember_SetValue_m22E52C02AD75799B95A242B6B73EECFC0B20B81D(L_16, L_17, L_18, NULL);
}
IL_0042:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_19 = ___member0;
NullCheck(L_19);
bool L_20;
L_20 = XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047(L_19, NULL);
if (!L_20)
{
goto IL_0052;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_21 = ___member0;
RuntimeObject* L_22 = ___ob1;
NullCheck(L_21);
XmlTypeMapMember_SetValueSpecified_m59690B6CAF6C450B85F61653053632248FEE544C(L_21, L_22, (bool)1, NULL);
}
IL_0052:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValueFromAttr(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m7DCD796BFED1BC399DDA708281D49BAF3EF5CAF8 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, RuntimeObject* ___ob1, RuntimeObject* ___value2, bool ___isValueList3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = ___member0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_0, NULL);
NullCheck(L_1);
Type_t* L_2;
L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_2);
if (!L_3)
{
goto IL_0025;
}
}
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_4 = ___member0;
NullCheck(L_4);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5;
L_5 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_4, NULL);
NullCheck(L_5);
Type_t* L_6;
L_6 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_5, NULL);
RuntimeObject* L_7 = ___value2;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_8;
L_8 = Enum_ToObject_m6AC36749AA2CE7BCC5416CA230C0E5B4BDCFF4DB(L_6, L_7, NULL);
___value2 = L_8;
}
IL_0025:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_9 = ___member0;
RuntimeObject* L_10 = ___ob1;
RuntimeObject* L_11 = ___value2;
bool L_12 = ___isValueList3;
XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_9, L_10, L_11, L_12, NULL);
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___member0, RuntimeObject* ___ob1, bool ___isValueList2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___isValueList2;
if (!L_0)
{
goto IL_0011;
}
}
{
RuntimeObject* L_1 = ___ob1;
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_2 = ___member0;
NullCheck(L_2);
int32_t L_3;
L_3 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_2, NULL);
NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)));
int32_t L_4 = L_3;
RuntimeObject* L_5 = (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
IL_0011:
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_6 = ___member0;
RuntimeObject* L_7 = ___ob1;
NullCheck(L_6);
RuntimeObject* L_8;
L_8 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_6, L_7, NULL);
return L_8;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObjectElement(System.Xml.Serialization.XmlTypeMapElementInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___elem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_0 = ___elem0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL);
V_1 = L_2;
int32_t L_3 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1)))
{
case 0:
{
goto IL_003c;
}
case 1:
{
goto IL_003c;
}
case 2:
{
goto IL_0044;
}
case 3:
{
goto IL_0059;
}
case 4:
{
goto IL_006d;
}
case 5:
{
goto IL_002e;
}
}
}
{
goto IL_008c;
}
IL_002e:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_4 = ___elem0;
NullCheck(L_4);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5;
L_5 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_4, NULL);
RuntimeObject* L_6;
L_6 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_5, (bool)1, NULL);
return L_6;
}
IL_003c:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_7 = ___elem0;
RuntimeObject* L_8;
L_8 = XmlSerializationReaderInterpreter_ReadPrimitiveValue_m571D86640A7A892ABF759E35BC38F27B46C208F4(__this, L_7, NULL);
return L_8;
}
IL_0044:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_9 = ___elem0;
NullCheck(L_9);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10;
L_10 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_9, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_11 = ___elem0;
NullCheck(L_11);
bool L_12;
L_12 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_11, NULL);
RuntimeObject* L_13;
L_13 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_10, L_12, NULL, (bool)1, NULL);
return L_13;
}
IL_0059:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_14 = ___elem0;
NullCheck(L_14);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15;
L_15 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_14, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_16 = ___elem0;
NullCheck(L_16);
bool L_17;
L_17 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_16, NULL);
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_15, L_17, (bool)1);
return L_18;
}
IL_006d:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_19 = ___elem0;
NullCheck(L_19);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_20;
L_20 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_19, NULL);
NullCheck(L_20);
Type_t* L_21;
L_21 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_20, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
RuntimeObject* L_22;
L_22 = XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901(L_21, (bool)1, NULL);
V_0 = L_22;
RuntimeObject* L_23 = V_0;
RuntimeObject* L_24;
L_24 = XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_23, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)), NULL);
return L_24;
}
IL_008c:
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_25 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_25);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA36CB49041E31496EDB0CF9BBB01CEF6120EA3F4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05_RuntimeMethod_var)));
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveValue(System.Xml.Serialization.XmlTypeMapElementInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveValue_m571D86640A7A892ABF759E35BC38F27B46C208F4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___elem0, 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_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_0 = ___elem0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_0, NULL);
NullCheck(L_1);
Type_t* L_2;
L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL);
bool L_5;
L_5 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_2, L_4, NULL);
if (!L_5)
{
goto IL_0032;
}
}
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_6 = ___elem0;
NullCheck(L_6);
bool L_7;
L_7 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_6, NULL);
if (!L_7)
{
goto IL_002b;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8;
L_8 = XmlSerializationReader_ReadNullableQualifiedName_mCD286FFAEE778FD6CC3627B0F11085BAD744015D(__this, NULL);
return L_8;
}
IL_002b:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9;
L_9 = XmlSerializationReader_ReadElementQualifiedName_m847D8D30671D41FE44EB696DB93C1B5281AFEFAD(__this, NULL);
return L_9;
}
IL_0032:
{
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_10 = ___elem0;
NullCheck(L_10);
bool L_11;
L_11 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_10, NULL);
if (!L_11)
{
goto IL_0053;
}
}
{
String_t* L_12;
L_12 = XmlSerializationReader_ReadNullableString_mF87F51B907EF4DC621A112ACDA569F46CAF7733F(__this, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = ___elem0;
NullCheck(L_13);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14;
L_14 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_13, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_15 = ___elem0;
NullCheck(L_15);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16;
L_16 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_15, NULL);
RuntimeObject* L_17;
L_17 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_12, L_14, L_16, NULL);
return L_17;
}
IL_0053:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18;
L_18 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(45 /* System.String System.Xml.XmlReader::ReadElementString() */, L_18);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_20 = ___elem0;
NullCheck(L_20);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_21;
L_21 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_20, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_22 = ___elem0;
NullCheck(L_22);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_23;
L_23 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_22, NULL);
RuntimeObject* L_24;
L_24 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_19, L_21, L_23, NULL);
return L_24;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetValueFromXmlString(System.String,System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, String_t* ___value0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___typeData1, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap2, 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*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___typeData1;
NullCheck(L_0);
int32_t L_1;
L_1 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)3))))
{
goto IL_0012;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_2 = ___typeMap2;
String_t* L_3 = ___value0;
RuntimeObject* L_4;
L_4 = XmlSerializationReaderInterpreter_ReadListString_mA0DEC8B7D4D0939BF4250109EA9C9DB49F578A21(__this, L_2, L_3, NULL);
return L_4;
}
IL_0012:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___typeData1;
NullCheck(L_5);
int32_t L_6;
L_6 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_5, NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_7 = ___typeMap2;
String_t* L_8 = ___value0;
RuntimeObject* L_9;
L_9 = XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556(__this, L_7, L_8, NULL);
return L_9;
}
IL_0024:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = ___typeData1;
NullCheck(L_10);
Type_t* L_11;
L_11 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_10, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_13;
L_13 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_12, NULL);
bool L_14;
L_14 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_11, L_13, NULL);
if (!L_14)
{
goto IL_0043;
}
}
{
String_t* L_15 = ___value0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_16;
L_16 = XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3(__this, L_15, NULL);
return L_16;
}
IL_0043:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17 = ___typeData1;
String_t* L_18 = ___value0;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
RuntimeObject* L_19;
L_19 = XmlCustomFormatter_FromXmlString_m148D907C11B06D1A94836952828FB5BE421A7EA4(L_17, L_18, NULL);
return L_19;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, RuntimeObject* ___list2, bool ___canCreateInstance3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* V_1 = NULL;
int32_t V_2 = 0;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_3 = NULL;
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___typeMap0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL);
NullCheck(L_1);
Type_t* L_2;
L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL);
V_0 = L_2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___typeMap0;
NullCheck(L_3);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_4;
L_4 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_3, NULL);
V_1 = ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_4, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var));
Type_t* L_5 = V_0;
NullCheck(L_5);
bool L_6;
L_6 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_5, NULL);
if (!L_6)
{
goto IL_002a;
}
}
{
bool L_7;
L_7 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL);
if (!L_7)
{
goto IL_002a;
}
}
{
return NULL;
}
IL_002a:
{
RuntimeObject* L_8 = ___list2;
if (L_8)
{
goto IL_0056;
}
}
{
bool L_9 = ___canCreateInstance3;
if (!L_9)
{
goto IL_0049;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = ___typeMap0;
NullCheck(L_10);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11;
L_11 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_10, NULL);
NullCheck(L_11);
bool L_12;
L_12 = TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline(L_11, NULL);
if (!L_12)
{
goto IL_0049;
}
}
{
Type_t* L_13 = V_0;
RuntimeObject* L_14;
L_14 = XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3(__this, L_13, NULL);
___list2 = L_14;
goto IL_0056;
}
IL_0049:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15 = ___typeMap0;
NullCheck(L_15);
String_t* L_16;
L_16 = XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB(L_15, NULL);
Exception_t* L_17;
L_17 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14_RuntimeMethod_var)));
}
IL_0056:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18;
L_18 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_18);
bool L_19;
L_19 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_18);
if (!L_19)
{
goto IL_008e;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20;
L_20 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_20);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_20);
Type_t* L_21 = V_0;
NullCheck(L_21);
bool L_22;
L_22 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_21, NULL);
if (!L_22)
{
goto IL_008c;
}
}
{
RuntimeObject* L_23 = ___list2;
Type_t* L_24 = V_0;
NullCheck(L_24);
Type_t* L_25;
L_25 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_24);
RuntimeArray* L_26;
L_26 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_23, RuntimeArray_il2cpp_TypeInfo_var)), 0, L_25, (bool)0, NULL);
___list2 = L_26;
}
IL_008c:
{
RuntimeObject* L_27 = ___list2;
return L_27;
}
IL_008e:
{
V_2 = 0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_28;
L_28 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_28);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_28);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_29;
L_29 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_29);
int32_t L_30;
L_30 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_29);
goto IL_0110;
}
IL_00a9:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_31;
L_31 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_31);
int32_t L_32;
L_32 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_31);
if ((!(((uint32_t)L_32) == ((uint32_t)1))))
{
goto IL_00fd;
}
}
{
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_33 = V_1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_34;
L_34 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_34);
String_t* L_35;
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_34);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36;
L_36 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_36);
String_t* L_37;
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_36);
NullCheck(L_33);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_38;
L_38 = ListMap_FindElement_mB8E8BCFD1D6C7A8C244598D1317BCC1296E47CD7(L_33, L_35, L_37, NULL);
V_3 = L_38;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_39 = V_3;
if (!L_39)
{
goto IL_00f4;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_40 = ___typeMap0;
NullCheck(L_40);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_41;
L_41 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_40, NULL);
int32_t L_42 = V_2;
int32_t L_43 = L_42;
V_2 = ((int32_t)il2cpp_codegen_add(L_43, 1));
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_44 = V_3;
RuntimeObject* L_45;
L_45 = XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05(__this, L_44, NULL);
XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_41, (&___list2), L_43, L_45, (bool)0, NULL);
goto IL_0104;
}
IL_00f4:
{
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL);
goto IL_0104;
}
IL_00fd:
{
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL);
}
IL_0104:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_46;
L_46 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_46);
int32_t L_47;
L_47 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_46);
}
IL_0110:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_48;
L_48 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_48);
int32_t L_49;
L_49 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_48);
if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)15)))))
{
goto IL_00a9;
}
}
{
XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL);
Type_t* L_50 = V_0;
NullCheck(L_50);
bool L_51;
L_51 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_50, NULL);
if (!L_51)
{
goto IL_0143;
}
}
{
RuntimeObject* L_52 = ___list2;
int32_t L_53 = V_2;
Type_t* L_54 = V_0;
NullCheck(L_54);
Type_t* L_55;
L_55 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_54);
RuntimeArray* L_56;
L_56 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_52, RuntimeArray_il2cpp_TypeInfo_var)), L_53, L_55, (bool)0, NULL);
___list2 = L_56;
}
IL_0143:
{
RuntimeObject* L_57 = ___list2;
return L_57;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListString(System.Xml.Serialization.XmlTypeMapping,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListString_mA0DEC8B7D4D0939BF4250109EA9C9DB49F578A21 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, String_t* ___values1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* V_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL;
RuntimeArray* V_3 = NULL;
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_4 = NULL;
int32_t V_5 = 0;
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___typeMap0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL);
NullCheck(L_1);
Type_t* L_2;
L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL);
V_0 = L_2;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___typeMap0;
NullCheck(L_3);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_4;
L_4 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_3, NULL);
V_1 = ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_4, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var));
String_t* L_5 = ___values1;
NullCheck(L_5);
String_t* L_6;
L_6 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_5, NULL);
___values1 = L_6;
String_t* L_7 = ___values1;
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_9;
L_9 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, L_8, NULL);
if (!L_9)
{
goto IL_003a;
}
}
{
Type_t* L_10 = V_0;
NullCheck(L_10);
Type_t* L_11;
L_11 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_10);
RuntimeArray* L_12;
L_12 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_11, 0, NULL);
return L_12;
}
IL_003a:
{
String_t* L_13 = ___values1;
NullCheck(L_13);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14;
L_14 = String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4(L_13, ((int32_t)32), 0, NULL);
V_2 = L_14;
Type_t* L_15 = V_0;
NullCheck(L_15);
Type_t* L_16;
L_16 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_15);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = V_2;
NullCheck(L_17);
RuntimeArray* L_18;
L_18 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_16, ((int32_t)(((RuntimeArray*)L_17)->max_length)), NULL);
V_3 = L_18;
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_19 = V_1;
NullCheck(L_19);
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_20;
L_20 = ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline(L_19, NULL);
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_20, 0);
V_4 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_21, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var));
V_5 = 0;
goto IL_0091;
}
IL_006b:
{
RuntimeArray* L_22 = V_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = V_2;
int32_t L_24 = V_5;
NullCheck(L_23);
int32_t L_25 = L_24;
String_t* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_27 = V_4;
NullCheck(L_27);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28;
L_28 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_27, NULL);
XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_29 = V_4;
NullCheck(L_29);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_30;
L_30 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_29, NULL);
RuntimeObject* L_31;
L_31 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_26, L_28, L_30, NULL);
int32_t L_32 = V_5;
NullCheck(L_22);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_22, L_31, L_32, NULL);
int32_t L_33 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_33, 1));
}
IL_0091:
{
int32_t L_34 = V_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = V_2;
NullCheck(L_35);
if ((((int32_t)L_34) < ((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))
{
goto IL_006b;
}
}
{
RuntimeArray* L_36 = V_3;
return L_36;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::AddListValue(System.Xml.Serialization.TypeData,System.Object&,System.Int32,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___listType0, RuntimeObject** ___list1, int32_t ___index2, RuntimeObject* ___value3, bool ___canCreateInstance4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107694947DB47644F8036602F63473486E1ED925);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___listType0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
V_0 = L_1;
Type_t* L_2 = V_0;
NullCheck(L_2);
bool L_3;
L_3 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_2, NULL);
if (!L_3)
{
goto IL_003d;
}
}
{
RuntimeObject** L_4 = ___list1;
RuntimeObject** L_5 = ___list1;
RuntimeObject* L_6 = *((RuntimeObject**)L_5);
int32_t L_7 = ___index2;
Type_t* L_8 = V_0;
NullCheck(L_8);
Type_t* L_9;
L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_8);
RuntimeArray* L_10;
L_10 = XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_6, RuntimeArray_il2cpp_TypeInfo_var)), L_7, L_9, NULL);
*((RuntimeObject**)L_4) = (RuntimeObject*)L_10;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_10);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11 = ___listType0;
NullCheck(L_11);
TypeData_ConvertForAssignment_m342A0D4CC583DB70A219F8D9470EAF36DC263092(L_11, (&___value3), NULL);
RuntimeObject** L_12 = ___list1;
RuntimeObject* L_13 = *((RuntimeObject**)L_12);
RuntimeObject* L_14 = ___value3;
int32_t L_15 = ___index2;
NullCheck(((RuntimeArray*)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)));
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(((RuntimeArray*)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)), L_14, L_15, NULL);
return;
}
IL_003d:
{
RuntimeObject** L_16 = ___list1;
RuntimeObject* L_17 = *((RuntimeObject**)L_16);
if (L_17)
{
goto IL_005d;
}
}
{
bool L_18 = ___canCreateInstance4;
if (!L_18)
{
goto IL_0050;
}
}
{
RuntimeObject** L_19 = ___list1;
Type_t* L_20 = V_0;
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
RuntimeObject* L_21;
L_21 = XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901(L_20, (bool)1, NULL);
*((RuntimeObject**)L_19) = (RuntimeObject*)L_21;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_19, (void*)(RuntimeObject*)L_21);
goto IL_005d;
}
IL_0050:
{
Type_t* L_22 = V_0;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_22);
Exception_t* L_24;
L_24 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_23, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4_RuntimeMethod_var)));
}
IL_005d:
{
Type_t* L_25 = V_0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_27 = L_26;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28 = ___listType0;
NullCheck(L_28);
Type_t* L_29;
L_29 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_28, NULL);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_29);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_29);
NullCheck(L_25);
MethodInfo_t* L_30;
L_30 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_25, _stringLiteral107694947DB47644F8036602F63473486E1ED925, L_27, NULL);
RuntimeObject** L_31 = ___list1;
RuntimeObject* L_32 = *((RuntimeObject**)L_31);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34 = L_33;
RuntimeObject* L_35 = ___value3;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_35);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_35);
NullCheck(L_30);
RuntimeObject* L_36;
L_36 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_30, L_32, L_34, NULL);
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901 (Type_t* ___type0, bool ___nonPublic1, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___type0;
bool L_1 = ___nonPublic1;
RuntimeObject* L_2;
L_2 = Activator_CreateInstance_m2767C14E0050C13BDB2732D7223FE17A9FA0F61A(L_0, L_1, NULL);
return L_2;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_m9CB41129916C0B5A2323C6EBD6031BB9CF3B693C (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___empty_array_28;
RuntimeObject* L_2;
L_2 = Activator_CreateInstance_m978D6F745618B691D632E5D6E4AB8840541FC858(L_0, L_1, NULL);
return L_2;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateList(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___listType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___listType0;
NullCheck(L_0);
bool L_1;
L_1 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_0, NULL);
if (!L_1)
{
goto IL_0017;
}
}
{
Type_t* L_2 = ___listType0;
NullCheck(L_2);
Type_t* L_3;
L_3 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_2);
RuntimeArray* L_4;
L_4 = XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80(__this, (RuntimeArray*)NULL, 0, L_3, NULL);
return L_4;
}
IL_0017:
{
Type_t* L_5 = ___listType0;
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
RuntimeObject* L_6;
L_6 = XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901(L_5, (bool)1, NULL);
return L_6;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::InitializeList(System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___listType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___listType0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_1, NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
return NULL;
}
IL_000f:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = ___listType0;
NullCheck(L_3);
Type_t* L_4;
L_4 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
RuntimeObject* L_5;
L_5 = XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901(L_4, (bool)1, NULL);
return L_5;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FillList(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___list0, RuntimeObject* ___items1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___items1;
RuntimeObject* L_1 = ___list0;
XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::CopyEnumerableList(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___source0, RuntimeObject* ___dest1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107694947DB47644F8036602F63473486E1ED925);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
MethodInfo_t* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
{
RuntimeObject* L_0 = ___dest1;
if (L_0)
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = ___source0;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_2);
Exception_t* L_4;
L_4 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3_RuntimeMethod_var)));
}
IL_0015:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
V_0 = L_5;
RuntimeObject* L_6 = ___dest1;
NullCheck(L_6);
Type_t* L_7;
L_7 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_6, NULL);
NullCheck(L_7);
MethodInfo_t* L_8;
L_8 = Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231(L_7, _stringLiteral107694947DB47644F8036602F63473486E1ED925, NULL);
V_1 = L_8;
RuntimeObject* L_9 = ___source0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_9, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_2 = L_10;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0059:
{// begin finally (depth: 1)
{
RuntimeObject* L_11 = V_2;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_11, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_12 = V_4;
if (!L_12)
{
goto IL_006c;
}
}
{
RuntimeObject* L_13 = V_4;
NullCheck(L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
}
IL_006c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_004f_1;
}
IL_003b_1:
{
RuntimeObject* L_14 = V_2;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_14);
V_3 = L_15;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = V_0;
RuntimeObject* L_17 = V_3;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_17);
MethodInfo_t* L_18 = V_1;
RuntimeObject* L_19 = ___dest1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_0;
NullCheck(L_18);
RuntimeObject* L_21;
L_21 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_18, L_19, L_20, NULL);
}
IL_004f_1:
{
RuntimeObject* L_22 = V_2;
NullCheck(L_22);
bool L_23;
L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_003b_1;
}
}
{
goto IL_006d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNodeElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___typeMap0;
NullCheck(L_0);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1;
L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL);
RuntimeObject* L_2;
L_2 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_1, (bool)0, NULL);
return L_2;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNode(System.Xml.Serialization.TypeData,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type0, bool ___wrapped1, 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*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___type0;
NullCheck(L_0);
Type_t* L_1;
L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_3;
L_3 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_2, NULL);
bool L_4;
L_4 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_1, L_3, NULL);
if (!L_4)
{
goto IL_001f;
}
}
{
bool L_5 = ___wrapped1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6;
L_6 = XmlSerializationReader_ReadXmlDocument_mFBCD46F2EADC620A3B2DF95B6EAAB8AC52B28AE5(__this, L_5, NULL);
return L_6;
}
IL_001f:
{
bool L_7 = ___wrapped1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8;
L_8 = XmlSerializationReader_ReadXmlNode_mD224CFB90450934FC68CF9A0D720E40CE57CE945(__this, L_7, NULL);
return L_8;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveElement_m93C17C23DF8E7F7F2501CA2452E5CEA6EF2551A6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_0 = NULL;
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0;
L_0 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL);
V_0 = L_0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1 = V_0;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_2;
L_2 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_1, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_2)
{
goto IL_0022;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___typeMap0;
NullCheck(L_3);
String_t* L_4;
L_4 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_3, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = ___typeMap0;
NullCheck(L_5);
String_t* L_6;
L_6 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_5, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_7);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_7, L_4, L_6, NULL);
V_0 = L_7;
}
IL_0022:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = V_0;
RuntimeObject* L_9;
L_9 = XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C(__this, L_8, NULL);
return L_9;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEnumElement_mB13411EB63D3EEEF92A41C2E3E29B243132E02B4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_0);
VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_0);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___typeMap0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2;
L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_2);
RuntimeObject* L_4;
L_4 = XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556(__this, L_1, L_3, NULL);
XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL);
return L_4;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetEnumValue(System.Xml.Serialization.XmlTypeMapping,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, String_t* ___val1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___val1;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___typeMap0;
NullCheck(L_1);
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_2;
L_2 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_1, NULL);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___typeMap0;
NullCheck(L_3);
String_t* L_4;
L_4 = XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB(L_3, NULL);
String_t* L_5 = ___val1;
NullCheck(((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)CastclassClass((RuntimeObject*)L_2, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var)));
String_t* L_6;
L_6 = EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94(((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)CastclassClass((RuntimeObject*)L_2, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var)), L_4, L_5, NULL);
V_0 = L_6;
String_t* L_7 = V_0;
if (L_7)
{
goto IL_0033;
}
}
{
String_t* L_8 = ___val1;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = ___typeMap0;
NullCheck(L_9);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10;
L_10 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_9, NULL);
NullCheck(L_10);
Type_t* L_11;
L_11 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_10, NULL);
Exception_t* L_12;
L_12 = XmlSerializationReader_CreateUnknownConstantException_m0C39D77BDAD36BD8A62AC7BACAA8BA9767441E4F(__this, L_8, L_11, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556_RuntimeMethod_var)));
}
IL_0033:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___typeMap0;
NullCheck(L_13);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14;
L_14 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_13, NULL);
NullCheck(L_14);
Type_t* L_15;
L_15 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_14, NULL);
String_t* L_16 = V_0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_17;
L_17 = Enum_Parse_m1ABE53499F05D295104BDE57EE12376CF4513585(L_15, L_16, (bool)0, NULL);
return L_17;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlSerializableElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap0, bool ___isNullable1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0;
L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2;
L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0078;
}
}
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_4 = ___typeMap0;
NullCheck(L_4);
bool L_5;
L_5 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_4, NULL);
if (L_5)
{
goto IL_0052;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6;
L_6 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_6);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8 = ___typeMap0;
NullCheck(L_8);
String_t* L_9;
L_9 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_8, NULL);
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, L_9, NULL);
if (!L_10)
{
goto IL_0071;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11;
L_11 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL);
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_11);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___typeMap0;
NullCheck(L_13);
String_t* L_14;
L_14 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_13, NULL);
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_14, NULL);
if (!L_15)
{
goto IL_0071;
}
}
IL_0052:
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = ___typeMap0;
NullCheck(L_16);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17;
L_17 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_16, NULL);
NullCheck(L_17);
Type_t* L_18;
L_18 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_17, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
RuntimeObject* L_19;
L_19 = XmlSerializationReaderInterpreter_CreateInstance_mEF76BB167B5A637F54BC4631F54810D15760F901(L_18, (bool)1, NULL);
V_0 = L_19;
RuntimeObject* L_20 = V_0;
RuntimeObject* L_21;
L_21 = XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)), NULL);
return L_21;
}
IL_0071:
{
Exception_t* L_22;
L_22 = XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442_RuntimeMethod_var)));
}
IL_0078:
{
XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL);
return NULL;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter__cctor_mE60C9A28CAEDAA69F329219AD3E1DF73D71E1999 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
s_Il2CppMethodInitialized = true;
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_0, _stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL);
((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___AnyType_27 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___AnyType_27), (void*)L_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___empty_array_28 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___empty_array_28), (void*)L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.ClassMap,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo__ctor_m21B1A474D5B56C19F301C9D9EF4B235B7B8AE639 (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___sri0, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___map1, bool ___isValueList2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = ___sri0;
__this->____sri_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____sri_0), (void*)L_0);
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_1 = ___map1;
__this->____map_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____map_1), (void*)L_1);
bool L_2 = ___isValueList2;
__this->____isValueList_2 = L_2;
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::FixupMembers(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63 (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
{
XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = __this->____sri_0;
ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_1 = __this->____map_1;
RuntimeObject* L_2 = ___fixup0;
bool L_3 = __this->____isValueList_2;
NullCheck(L_0);
XmlSerializationReaderInterpreter_FixupMembers_mE0162576E13B7E40DD786B330C4D9D79326CFB75(L_0, L_1, L_2, L_3, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.XmlTypeMapping)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReaderCallbackInfo__ctor_mA1DE9023122B9D262150A2AABCCB839AC4E31CBC (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___sri0, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___typeMap1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = ___sri0;
__this->____sri_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____sri_0), (void*)L_0);
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___typeMap1;
__this->____typeMap_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____typeMap_1), (void*)L_1);
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::ReadObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249 (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* __this, const RuntimeMethod* method)
{
{
XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = __this->____sri_0;
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = __this->____typeMap_1;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, L_0, L_1, (bool)1, (bool)1);
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
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Multicast(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* currentDelegate = reinterpret_cast<XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___o0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Open(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___o0, method);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Closed(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___o0, method);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenStaticInvoker(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___o0);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_ClosedStaticInvoker(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___o0);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenVirtual(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___o0);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenInterface(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___o0);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericVirtual(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
GenericVirtualActionInvoker0::Invoke(method, ___o0);
}
void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericInterface(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker0::Invoke(method, ___o0);
}
// System.Void System.Xml.Serialization.XmlSerializationWriteCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback__ctor_mC9EAA27EDBF9664212848EC6F45C065395C51AF9 (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Open;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Multicast;
}
// System.Void System.Xml.Serialization.XmlSerializationWriteCallback::Invoke(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___o0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Serialization.XmlSerializationWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter__ctor_m293C1A24C2354634334D6F0C0E205E2478ABFCB1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlSerializationGeneratedCode__ctor_mBC7B26FB29C099BB456D537954F2AF3673AC28C6(__this, NULL);
__this->___qnameCount_1 = 0;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_0);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL);
__this->___serializedObjects_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___serializedObjects_7), (void*)L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::Initialize(System.Xml.XmlWriter,System.Xml.Serialization.XmlSerializerNamespaces)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_Initialize_m11222210CAC28774F29C1EE771F734E71D70E95C (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___nss1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* V_0 = NULL;
int32_t V_1 = 0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_2 = NULL;
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___writer0;
__this->___writer_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writer_4), (void*)L_0);
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_1 = ___nss1;
if (!L_1)
{
goto IL_005f;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_2);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_2, NULL);
__this->___namespaces_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaces_3), (void*)L_2);
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_3 = ___nss1;
NullCheck(L_3);
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* L_4;
L_4 = XmlSerializerNamespaces_ToArray_m36788F0D0B36CF5704BA12E554987ACAA77E0661(L_3, NULL);
V_0 = L_4;
V_1 = 0;
goto IL_0059;
}
IL_0020:
{
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* L_5 = V_0;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_2 = L_8;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = V_2;
NullCheck(L_9);
String_t* L_10;
L_10 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_9, NULL);
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_10, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
if (!L_11)
{
goto IL_0055;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_12 = V_2;
NullCheck(L_12);
String_t* L_13;
L_13 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_12, NULL);
bool L_14;
L_14 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_13, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
if (!L_14)
{
goto IL_0055;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_15 = __this->___namespaces_3;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_16 = V_2;
NullCheck(L_15);
int32_t L_17;
L_17 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_15, L_16);
}
IL_0055:
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_0059:
{
int32_t L_19 = V_1;
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* L_20 = V_0;
NullCheck(L_20);
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
{
goto IL_0020;
}
}
IL_005f:
{
return;
}
}
// System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::get_Writer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___writer_4;
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::AddWriteCallback(System.Type,System.String,System.String,System.Xml.Serialization.XmlSerializationWriteCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_AddWriteCallback_mA8F5217B979F653B829B0B36EA7C8A4202E4FA2D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___type0, String_t* ___typeName1, String_t* ___typeNs2, XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* ___callback3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* V_0 = NULL;
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_0 = (WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6*)il2cpp_codegen_object_new(WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var);
NullCheck(L_0);
WriteCallbackInfo__ctor_mCD5B02AA94A872AEB63A81C174520985F378E240(L_0, NULL);
V_0 = L_0;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_1 = V_0;
Type_t* L_2 = ___type0;
NullCheck(L_1);
L_1->___Type_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___Type_0), (void*)L_2);
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_3 = V_0;
String_t* L_4 = ___typeName1;
NullCheck(L_3);
L_3->___TypeName_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&L_3->___TypeName_1), (void*)L_4);
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_5 = V_0;
String_t* L_6 = ___typeNs2;
NullCheck(L_5);
L_5->___TypeNs_2 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___TypeNs_2), (void*)L_6);
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_7 = V_0;
XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_8 = ___callback3;
NullCheck(L_7);
L_7->___Callback_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___Callback_3), (void*)L_8);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___callbacks_6;
if (L_9)
{
goto IL_0036;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_10);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_10, NULL);
__this->___callbacks_6 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___callbacks_6), (void*)L_10);
}
IL_0036:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = __this->___callbacks_6;
Type_t* L_12 = ___type0;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_13 = V_0;
NullCheck(L_11);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_12, L_13);
return;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownAnyElementException(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownAnyElementException_m10C764FCEE6FF3DDA1C9A17D7593D8DE7454417B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral151F85AEE2A721730B1E7CDA9A1335DFEA63D095);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral151F85AEE2A721730B1E7CDA9A1335DFEA63D095, L_0, L_1, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL);
return L_3;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___o0;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
Exception_t* L_2;
L_2 = XmlSerializationWriter_CreateUnknownTypeException_m9551C746760505766F62166E975F43E6BC174F41(__this, L_1, NULL);
return L_2;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m9551C746760505766F62166E975F43E6BC174F41 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C5BD46A8428ACC39A710FFFCDEF0CD038A2E862);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
String_t* L_1;
L_1 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral2C5BD46A8428ACC39A710FFFCDEF0CD038A2E862, L_0, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL);
return L_2;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::FromXmlQualifiedName(System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xmlQualifiedName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___xmlQualifiedName0;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_1;
L_1 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (L_1)
{
goto IL_0016;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___xmlQualifiedName0;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var))->___Empty_4;
bool L_4;
L_4 = XmlQualifiedName_op_Equality_m1E344DA8D9A620A0DB42580DD284851DB571D704(L_2, L_3, NULL);
if (!L_4)
{
goto IL_0018;
}
}
IL_0016:
{
return (String_t*)NULL;
}
IL_0018:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = ___xmlQualifiedName0;
NullCheck(L_5);
String_t* L_6;
L_6 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_5, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___xmlQualifiedName0;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_7, NULL);
String_t* L_9;
L_9 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_6, L_8, NULL);
return L_9;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::GetId(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, bool ___addToReferencesList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC0CDAC241F1E33895C656656CCAFD1419A41699);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int64_t V_1 = 0;
{
ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_0 = __this->___idGenerator_0;
if (L_0)
{
goto IL_0013;
}
}
{
ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_1 = (ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B*)il2cpp_codegen_object_new(ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_il2cpp_TypeInfo_var);
NullCheck(L_1);
ObjectIDGenerator__ctor_m26261E5BF8675579F39157564153ECA733453B10(L_1, NULL);
__this->___idGenerator_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___idGenerator_0), (void*)L_1);
}
IL_0013:
{
ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_2 = __this->___idGenerator_0;
RuntimeObject* L_3 = ___o0;
NullCheck(L_2);
int64_t L_4;
L_4 = VirtualFuncInvoker2< int64_t, RuntimeObject*, bool* >::Invoke(4 /* System.Int64 System.Runtime.Serialization.ObjectIDGenerator::GetId(System.Object,System.Boolean&) */, L_2, L_3, (&V_0));
V_1 = L_4;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
L_5 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
int64_t L_6 = V_1;
int64_t L_7 = L_6;
RuntimeObject* L_8 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_7);
String_t* L_9;
L_9 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_5, _stringLiteralFC0CDAC241F1E33895C656656CCAFD1419A41699, L_8, NULL);
return L_9;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::AlreadyQueued(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___ob0, const RuntimeMethod* method)
{
bool V_0 = false;
{
ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_0 = __this->___idGenerator_0;
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_1 = __this->___idGenerator_0;
RuntimeObject* L_2 = ___ob0;
NullCheck(L_1);
int64_t L_3;
L_3 = VirtualFuncInvoker2< int64_t, RuntimeObject*, bool* >::Invoke(5 /* System.Int64 System.Runtime.Serialization.ObjectIDGenerator::HasId(System.Object,System.Boolean&) */, L_1, L_2, (&V_0));
bool L_4 = V_0;
return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::GetNamespacePrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetNamespacePrefix_m5F129F48CEF46D93DCBE7B31D2CC13A73F77494B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___ns0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral116AE9EE2F4E004AB8B7987E1296803B16C5F1C0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0;
L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_1 = ___ns0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_0, L_1);
V_0 = L_2;
String_t* L_3 = V_0;
if (L_3)
{
goto IL_0044;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4;
L_4 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
int32_t L_5 = __this->___qnameCount_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
int32_t L_6 = V_1;
__this->___qnameCount_1 = L_6;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
RuntimeObject* L_9 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_8);
String_t* L_10;
L_10 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_4, _stringLiteral116AE9EE2F4E004AB8B7987E1296803B16C5F1C0, L_9, NULL);
V_0 = L_10;
String_t* L_11 = V_0;
String_t* L_12 = ___ns0;
XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_11, (String_t*)NULL, L_12, NULL);
}
IL_0044:
{
String_t* L_13 = V_0;
return L_13;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::GetQualifiedName(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, 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*)&_stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___ns1;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_0, L_1, NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
String_t* L_3 = ___name0;
return L_3;
}
IL_000f:
{
String_t* L_4 = ___ns1;
String_t* L_5;
L_5 = XmlSerializationWriter_GetNamespacePrefix_m5F129F48CEF46D93DCBE7B31D2CC13A73F77494B(__this, L_4, NULL);
V_0 = L_5;
String_t* L_6 = V_0;
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_6, L_7, NULL);
if (!L_8)
{
goto IL_0026;
}
}
{
String_t* L_9 = ___name0;
return L_9;
}
IL_0026:
{
String_t* L_10 = V_0;
String_t* L_11 = ___name0;
String_t* L_12;
L_12 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F, L_10, L_11, NULL);
return L_12;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::TopLevelElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_TopLevelElement_mFEE610422C07AE555FDA27A05CEB1E9616026FEC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
{
__this->___topLevelElement_2 = (bool)1;
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___ns1;
String_t* L_2 = ___value2;
XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, (String_t*)NULL, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, String_t* ___value3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value3;
if (L_0)
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1;
L_1 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_2 = ___prefix0;
String_t* L_3 = ___localName1;
String_t* L_4 = ___ns2;
String_t* L_5 = ___value3;
NullCheck(L_1);
XmlWriter_WriteAttributeString_m9BECE5A394F9A9601AB66932AF0D7EF25E16AE0B(L_1, L_2, L_3, L_4, L_5, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlNode(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
if (!((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)IsInstClass((RuntimeObject*)L_0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___node0;
NullCheck(((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2;
L_2 = XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8(((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)), NULL);
___node0 = L_2;
}
IL_0015:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___node0;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4;
L_4 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_3);
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_3, L_4);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementEncoded(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementEncoded_m669E23E74C69FAB9FEF6FAA511A0F6901E1FFEFA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, String_t* ___name1, String_t* ___ns2, bool ___isNullable3, bool ___any4, 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 = ___name1;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_2;
L_2 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0049;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___node0;
if (L_3)
{
goto IL_001d;
}
}
{
bool L_4 = ___isNullable3;
if (!L_4)
{
goto IL_0050;
}
}
{
String_t* L_5 = ___name1;
String_t* L_6 = ___ns2;
XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_5, L_6, NULL);
return;
}
IL_001d:
{
bool L_7 = ___any4;
if (!L_7)
{
goto IL_0029;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___node0;
XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_8, NULL);
return;
}
IL_0029:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9;
L_9 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_10 = ___name1;
String_t* L_11 = ___ns2;
NullCheck(L_9);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_9, L_10, L_11, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ___node0;
XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_12, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13;
L_13 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_13);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_13);
return;
}
IL_0049:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___node0;
XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_14, NULL);
}
IL_0050:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementLiteral(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementLiteral_m0E74FD75FE42BEB8D43B79333598C8DDC6EC4238 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, String_t* ___name1, String_t* ___ns2, bool ___isNullable3, bool ___any4, 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 = ___name1;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_2;
L_2 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0049;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___node0;
if (L_3)
{
goto IL_001d;
}
}
{
bool L_4 = ___isNullable3;
if (!L_4)
{
goto IL_0050;
}
}
{
String_t* L_5 = ___name1;
String_t* L_6 = ___ns2;
XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_5, L_6, NULL);
return;
}
IL_001d:
{
bool L_7 = ___any4;
if (!L_7)
{
goto IL_0029;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___node0;
XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_8, NULL);
return;
}
IL_0029:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9;
L_9 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_10 = ___name1;
String_t* L_11 = ___ns2;
NullCheck(L_9);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_9, L_10, L_11, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ___node0;
XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_12, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13;
L_13 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_13);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_13);
return;
}
IL_0049:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___node0;
XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_14, NULL);
}
IL_0050:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___value2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___ns1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___value2;
XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8(__this, L_0, L_1, L_2, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___value2, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xsiType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___localName0;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = XmlCustomFormatter_FromXmlNCName_m7EE1E3AC8CC2953B2184AF5CD5041851508A7C56(L_0, NULL);
___localName0 = L_1;
String_t* L_2 = ___localName0;
String_t* L_3 = ___ns1;
XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA(__this, L_2, L_3, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___xsiType3;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_5;
L_5 = XmlQualifiedName_op_Inequality_m7327D765A1501F12E33F29BBAFAF4AFAAB3AA8B8(L_4, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_5)
{
goto IL_002e;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_6 = ___xsiType3;
NullCheck(L_6);
String_t* L_7;
L_7 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_6, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = ___xsiType3;
NullCheck(L_8);
String_t* L_9;
L_9 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_8, NULL);
XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_7, L_9, NULL);
}
IL_002e:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10;
L_10 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_11 = ___value2;
String_t* L_12;
L_12 = XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829(__this, L_11, NULL);
NullCheck(L_10);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_10, L_12);
XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m5B5F5B5F48FE69C157A86AEA91587F9A07EE3893 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___ns1;
String_t* L_2 = ___value2;
XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_0, L_1, L_2, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xsiType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value2;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1 = ___xsiType3;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_2;
L_2 = XmlQualifiedName_op_Inequality_m7327D765A1501F12E33F29BBAFAF4AFAAB3AA8B8(L_1, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_2)
{
goto IL_0045;
}
}
{
String_t* L_3 = ___localName0;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_4;
L_4 = XmlCustomFormatter_FromXmlNCName_m7EE1E3AC8CC2953B2184AF5CD5041851508A7C56(L_3, NULL);
___localName0 = L_4;
String_t* L_5 = ___localName0;
String_t* L_6 = ___ns1;
XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA(__this, L_5, L_6, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___xsiType3;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_7, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = ___xsiType3;
NullCheck(L_9);
String_t* L_10;
L_10 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_9, NULL);
XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_8, L_10, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11;
L_11 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_12 = ___value2;
NullCheck(L_11);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_11, L_12);
XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL);
return;
}
IL_0045:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13;
L_13 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_14 = ___localName0;
String_t* L_15 = ___ns1;
String_t* L_16 = ___value2;
NullCheck(L_13);
XmlWriter_WriteElementString_m35A6492D83CA4686148F3D39271BC94E29811C42(L_13, L_14, L_15, L_16, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
{
XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8(__this, NULL, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___o0;
if (!L_0)
{
goto IL_000f;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___serializedObjects_7;
RuntimeObject* L_2 = ___o0;
NullCheck(L_1);
VirtualActionInvoker1< RuntimeObject* >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_1, L_2);
}
IL_000f:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3;
L_3 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_3);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNamespaceDeclarations(System.Xml.Serialization.XmlSerializerNamespaces)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNamespaceDeclarations_mF1DFEC2486E203E3324C20EB3A81210B18463CA9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___xmlns0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
{
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_0 = ___xmlns0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_1 = ___xmlns0;
NullCheck(L_1);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2;
L_2 = XmlSerializerNamespaces_get_Namespaces_mD6B8A3D282B91E40D13217289F2904CE4ACECD2D(L_1, NULL);
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_2);
V_0 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0092:
{// begin finally (depth: 1)
{
RuntimeObject* L_4 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_2;
if (!L_5)
{
goto IL_00a2;
}
}
{
RuntimeObject* L_6 = V_2;
NullCheck(L_6);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
}
IL_00a2:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0088_1;
}
IL_0012_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
V_1 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_8, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
RuntimeObject* L_9;
L_9 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL);
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var)), L_10, NULL);
if (!L_11)
{
goto IL_0088_1;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12;
L_12 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_13;
L_13 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL);
NullCheck(L_12);
String_t* L_14;
L_14 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_12, ((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var)));
RuntimeObject* L_15;
L_15 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_1), NULL);
bool L_16;
L_16 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_14, ((String_t*)CastclassSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)), NULL);
if (!L_16)
{
goto IL_0088_1;
}
}
{
RuntimeObject* L_17;
L_17 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_1), NULL);
RuntimeObject* L_18;
L_18 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL);
XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, ((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)), _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, ((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)), NULL);
}
IL_0088_1:
{
RuntimeObject* L_19 = V_0;
NullCheck(L_19);
bool L_20;
L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19);
if (L_20)
{
goto IL_0012_1;
}
}
{
goto IL_00a3;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a3:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameEncoded(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableQualifiedNameEncoded_mE37935A882D73CCE63E8C070C2291CCB3FA720B6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___value2, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xsiType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___value2;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_1;
L_1 = XmlQualifiedName_op_Inequality_m7327D765A1501F12E33F29BBAFAF4AFAAB3AA8B8(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
String_t* L_2 = ___name0;
String_t* L_3 = ___ns1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___value2;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = ___xsiType3;
XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8(__this, L_2, L_3, L_4, L_5, NULL);
return;
}
IL_0015:
{
String_t* L_6 = ___name0;
String_t* L_7 = ___ns1;
XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_6, L_7, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameLiteral(System.String,System.String,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableQualifiedNameLiteral_mA36BA50DE0EECCF7D1D2C8683F84D7DB94D34CBC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___value2;
il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
bool L_1;
L_1 = XmlQualifiedName_op_Inequality_m7327D765A1501F12E33F29BBAFAF4AFAAB3AA8B8(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
String_t* L_2 = ___name0;
String_t* L_3 = ___ns1;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___value2;
XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B(__this, L_2, L_3, L_4, NULL);
return;
}
IL_0013:
{
String_t* L_5 = ___name0;
String_t* L_6 = ___ns1;
XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_5, L_6, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringEncoded(System.String,System.String,System.String,System.Xml.XmlQualifiedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableStringEncoded_m1129872B6401E60E8949119B9FA368F543FCC9B4 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, String_t* ___value2, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___xsiType3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value2;
if (!L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ___name0;
String_t* L_2 = ___ns1;
String_t* L_3 = ___value2;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___xsiType3;
XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_1, L_2, L_3, L_4, NULL);
return;
}
IL_000f:
{
String_t* L_5 = ___name0;
String_t* L_6 = ___ns1;
XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_5, L_6, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringLiteral(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableStringLiteral_m9E9A4BC99C000CCC14DFA45E91A01EEBACADE862 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value2;
if (!L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ___name0;
String_t* L_2 = ___ns1;
String_t* L_3 = ___value2;
XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_1, L_2, L_3, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL);
return;
}
IL_000e:
{
String_t* L_4 = ___name0;
String_t* L_5 = ___ns1;
XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_4, L_5, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagEncoded(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2);
s_Il2CppMethodInitialized = true;
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0;
L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_1 = ___name0;
String_t* L_2 = ___ns1;
NullCheck(L_0);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_0, L_1, L_2, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3;
L_3 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_3);
XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB(L_3, _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4;
L_4 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_4);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_4);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagLiteral(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA(__this, L_0, L_1, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2;
L_2 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_2);
XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB(L_2, _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, NULL);
XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___n0, String_t* ___ns1, RuntimeObject* ___o2, Type_t* ___ambientType3, bool ___suppressReference4, bool ___isNullable5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* V_1 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_2 = NULL;
{
RuntimeObject* L_0 = ___o2;
if (L_0)
{
goto IL_0010;
}
}
{
bool L_1 = ___isNullable5;
if (!L_1)
{
goto IL_000f;
}
}
{
String_t* L_2 = ___n0;
String_t* L_3 = ___ns1;
XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_2, L_3, NULL);
}
IL_000f:
{
return;
}
IL_0010:
{
RuntimeObject* L_4 = ___o2;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
V_0 = L_5;
String_t* L_6 = ___n0;
String_t* L_7 = ___ns1;
XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, L_6, L_7, (bool)1, NULL);
XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169(__this, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_8 = __this->___callbacks_6;
if (!L_8)
{
goto IL_00f7;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___callbacks_6;
RuntimeObject* L_10 = ___o2;
NullCheck(L_10);
Type_t* L_11;
L_11 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_10, NULL);
NullCheck(L_9);
bool L_12;
L_12 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_9, L_11);
if (!L_12)
{
goto IL_00f7;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_13 = __this->___callbacks_6;
Type_t* L_14 = V_0;
NullCheck(L_13);
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_13, L_14);
V_1 = ((WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6*)CastclassClass((RuntimeObject*)L_15, WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var));
Type_t* L_16 = V_0;
NullCheck(L_16);
bool L_17;
L_17 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_16);
if (!L_17)
{
goto IL_0072;
}
}
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_18 = V_1;
NullCheck(L_18);
XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_19 = L_18->___Callback_3;
RuntimeObject* L_20 = ___o2;
NullCheck(L_19);
XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline(L_19, L_20, NULL);
goto IL_0190;
}
IL_0072:
{
bool L_21 = ___suppressReference4;
if (!L_21)
{
goto IL_00bb;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22;
L_22 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_23 = ___o2;
String_t* L_24;
L_24 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_23, (bool)0, NULL);
NullCheck(L_22);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_22, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_24, NULL);
Type_t* L_25 = ___ambientType3;
Type_t* L_26 = V_0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_27;
L_27 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_25, L_26, NULL);
if (!L_27)
{
goto IL_00aa;
}
}
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_28 = V_1;
NullCheck(L_28);
String_t* L_29 = L_28->___TypeName_1;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_30 = V_1;
NullCheck(L_30);
String_t* L_31 = L_30->___TypeNs_2;
XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_29, L_31, NULL);
}
IL_00aa:
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_32 = V_1;
NullCheck(L_32);
XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_33 = L_32->___Callback_3;
RuntimeObject* L_34 = ___o2;
NullCheck(L_33);
XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline(L_33, L_34, NULL);
goto IL_0190;
}
IL_00bb:
{
RuntimeObject* L_35 = ___o2;
bool L_36;
L_36 = XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D(__this, L_35, NULL);
if (L_36)
{
goto IL_00d0;
}
}
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_37 = __this->___referencedElements_5;
RuntimeObject* L_38 = ___o2;
NullCheck(L_37);
VirtualActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_37, L_38);
}
IL_00d0:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_39;
L_39 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_40 = ___o2;
String_t* L_41;
L_41 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_40, (bool)1, NULL);
String_t* L_42;
L_42 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_41, NULL);
NullCheck(L_39);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_39, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED, L_42, NULL);
goto IL_0190;
}
IL_00f7:
{
Type_t* L_43 = V_0;
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_44;
L_44 = TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8(L_43, (String_t*)NULL, (bool)1, NULL);
V_2 = L_44;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_45 = V_2;
NullCheck(L_45);
int32_t L_46;
L_46 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_45, NULL);
if ((!(((uint32_t)L_46) == ((uint32_t)1))))
{
goto IL_0138;
}
}
{
Type_t* L_47 = V_0;
Type_t* L_48 = ___ambientType3;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_49;
L_49 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_47, L_48, NULL);
if (!L_49)
{
goto IL_0124;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_50 = V_2;
NullCheck(L_50);
String_t* L_51;
L_51 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_50, NULL);
XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_51, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL);
}
IL_0124:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_52;
L_52 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_53 = V_2;
RuntimeObject* L_54 = ___o2;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_55;
L_55 = XmlCustomFormatter_ToXmlString_m8B314E13C0DF5676C6D9516F1DB34518106A394D(L_53, L_54, NULL);
NullCheck(L_52);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_52, L_55);
goto IL_0190;
}
IL_0138:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_56 = V_2;
bool L_57;
L_57 = XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9(__this, L_56, NULL);
if (!L_57)
{
goto IL_017a;
}
}
{
RuntimeObject* L_58 = ___o2;
bool L_59;
L_59 = XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D(__this, L_58, NULL);
if (L_59)
{
goto IL_0156;
}
}
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_60 = __this->___referencedElements_5;
RuntimeObject* L_61 = ___o2;
NullCheck(L_60);
VirtualActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_60, L_61);
}
IL_0156:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_62;
L_62 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_63 = ___o2;
String_t* L_64;
L_64 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_63, (bool)1, NULL);
String_t* L_65;
L_65 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_64, NULL);
NullCheck(L_62);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_62, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED, L_65, NULL);
goto IL_0190;
}
IL_017a:
{
Type_t* L_66 = V_0;
NullCheck(L_66);
String_t* L_67;
L_67 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_66);
String_t* L_68;
L_68 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral39FA1E980BA741E69B2DC04AF2C961A72DA4E553)), L_67, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_69 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_69);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_69, L_68, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB_RuntimeMethod_var)));
}
IL_0190:
{
XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencedElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteReferencedElements_m470B7112650901740DB4667F483740083D52081C (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_1 = NULL;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* V_2 = NULL;
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_0 = __this->___referencedElements_5;
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___callbacks_6;
if (L_1)
{
goto IL_00b2;
}
}
{
return;
}
IL_0015:
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_2 = __this->___referencedElements_5;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(17 /* System.Object System.Collections.Queue::Dequeue() */, L_2);
V_0 = L_3;
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6;
L_6 = TypeTranslator_GetTypeData_m9DBEDE9D7DD19C42FF4C1692ED85EC55BF030CBB(L_5, NULL);
V_1 = L_6;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___callbacks_6;
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
Type_t* L_9;
L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL);
NullCheck(L_7);
RuntimeObject* L_10;
L_10 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_9);
V_2 = ((WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6*)CastclassClass((RuntimeObject*)L_10, WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var));
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_11 = V_2;
if (!L_11)
{
goto IL_00a1;
}
}
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_12 = V_2;
NullCheck(L_12);
String_t* L_13 = L_12->___TypeName_1;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_14 = V_2;
NullCheck(L_14);
String_t* L_15 = L_14->___TypeNs_2;
XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, L_13, L_15, (bool)1, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16;
L_16 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_17 = V_0;
String_t* L_18;
L_18 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_17, (bool)0, NULL);
NullCheck(L_16);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_16, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_18, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_19 = V_1;
NullCheck(L_19);
int32_t L_20;
L_20 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_19, NULL);
if ((((int32_t)L_20) == ((int32_t)3)))
{
goto IL_008d;
}
}
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_21 = V_2;
NullCheck(L_21);
String_t* L_22 = L_21->___TypeName_1;
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_23 = V_2;
NullCheck(L_23);
String_t* L_24 = L_23->___TypeNs_2;
XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_22, L_24, NULL);
}
IL_008d:
{
WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_25 = V_2;
NullCheck(L_25);
XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_26 = L_25->___Callback_3;
RuntimeObject* L_27 = V_0;
NullCheck(L_26);
XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline(L_26, L_27, NULL);
XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL);
goto IL_00b2;
}
IL_00a1:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28 = V_1;
bool L_29;
L_29 = XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9(__this, L_28, NULL);
if (!L_29)
{
goto IL_00b2;
}
}
{
RuntimeObject* L_30 = V_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_31 = V_1;
XmlSerializationWriter_WriteArray_mA3E69AB440FBF8F03DC25C3F8FD06071B1D07E37(__this, L_30, L_31, NULL);
}
IL_00b2:
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_32 = __this->___referencedElements_5;
NullCheck(L_32);
int32_t L_33;
L_33 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Queue::get_Count() */, L_32);
if ((((int32_t)L_33) > ((int32_t)0)))
{
goto IL_0015;
}
}
{
return;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::IsPrimitiveArray(System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___td0, 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);
s_Il2CppMethodInitialized = true;
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___td0;
NullCheck(L_0);
int32_t L_1;
L_1 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)3))))
{
goto IL_003d;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___td0;
NullCheck(L_2);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3;
L_3 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_2, NULL);
NullCheck(L_3);
int32_t L_4;
L_4 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_3, NULL);
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_002e;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___td0;
NullCheck(L_5);
Type_t* L_6;
L_6 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_5, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_8;
L_8 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_7, NULL);
bool L_9;
L_9 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_6, L_8, NULL);
if (!L_9)
{
goto IL_0030;
}
}
IL_002e:
{
return (bool)1;
}
IL_0030:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = ___td0;
NullCheck(L_10);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11;
L_11 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_10, NULL);
bool L_12;
L_12 = XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9(__this, L_11, NULL);
return L_12;
}
IL_003d:
{
return (bool)0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteArray(System.Object,System.Xml.Serialization.TypeData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteArray_mA3E69AB440FBF8F03DC25C3F8FD06071B1D07E37 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___o0, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___td1, 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*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
s_Il2CppMethodInitialized = true;
}
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
RuntimeArray* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___td1;
V_0 = L_0;
V_2 = (-1);
}
IL_0004:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = V_0;
NullCheck(L_1);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2;
L_2 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_1, NULL);
V_0 = L_2;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_3, NULL);
V_1 = L_4;
int32_t L_5 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)3)))
{
goto IL_0004;
}
}
{
goto IL_002d;
}
IL_0021:
{
String_t* L_8 = V_1;
String_t* L_9;
L_9 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_8, _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6, NULL);
V_1 = L_9;
}
IL_002d:
{
int32_t L_10 = V_2;
int32_t L_11 = L_10;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
if ((((int32_t)L_11) > ((int32_t)0)))
{
goto IL_0021;
}
}
{
XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, _stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6, (bool)1, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12;
L_12 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_13 = ___o0;
String_t* L_14;
L_14 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_13, (bool)0, NULL);
NullCheck(L_12);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_12, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_14, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_15 = ___td1;
NullCheck(L_15);
int32_t L_16;
L_16 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_15, NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_00de;
}
}
{
RuntimeObject* L_17 = ___o0;
V_3 = ((RuntimeArray*)CastclassClass((RuntimeObject*)L_17, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray* L_18 = V_3;
NullCheck(L_18);
int32_t L_19;
L_19 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_18, NULL);
V_4 = L_19;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_20;
L_20 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_21 = V_1;
String_t* L_22;
L_22 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_21, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL);
String_t* L_23;
L_23 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_4), NULL);
String_t* L_24;
L_24 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_22, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, L_23, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL);
NullCheck(L_20);
XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB(L_20, _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6, L_24, NULL);
V_5 = 0;
goto IL_00d8;
}
IL_00b2:
{
RuntimeArray* L_25 = V_3;
int32_t L_26 = V_5;
NullCheck(L_25);
RuntimeObject* L_27;
L_27 = Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21(L_25, L_26, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28 = ___td1;
NullCheck(L_28);
Type_t* L_29;
L_29 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_28, NULL);
XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB(__this, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, L_27, L_29, (bool)0, (bool)1, NULL);
int32_t L_30 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_00d8:
{
int32_t L_31 = V_5;
int32_t L_32 = V_4;
if ((((int32_t)L_31) < ((int32_t)L_32)))
{
goto IL_00b2;
}
}
IL_00de:
{
XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencingElement(System.String,System.String,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteReferencingElement_m63BCDD79C5119664DA24591EA6620A14EBBC7251 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___n0, String_t* ___ns1, RuntimeObject* ___o2, bool ___isNullable3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___o2;
if (L_0)
{
goto IL_0010;
}
}
{
bool L_1 = ___isNullable3;
if (!L_1)
{
goto IL_000f;
}
}
{
String_t* L_2 = ___n0;
String_t* L_3 = ___ns1;
XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_2, L_3, NULL);
}
IL_000f:
{
return;
}
IL_0010:
{
XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169(__this, NULL);
RuntimeObject* L_4 = ___o2;
bool L_5;
L_5 = XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D(__this, L_4, NULL);
if (L_5)
{
goto IL_002b;
}
}
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_6 = __this->___referencedElements_5;
RuntimeObject* L_7 = ___o2;
NullCheck(L_6);
VirtualActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_6, L_7);
}
IL_002b:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8;
L_8 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_9 = ___n0;
String_t* L_10 = ___ns1;
NullCheck(L_8);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_8, L_9, L_10, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11;
L_11 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
RuntimeObject* L_12 = ___o2;
String_t* L_13;
L_13 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_12, (bool)1, NULL);
String_t* L_14;
L_14 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_13, NULL);
NullCheck(L_11);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_11, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED, L_14, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_15;
L_15 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_15);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_15);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::CheckReferenceQueue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_0 = __this->___referencedElements_5;
if (L_0)
{
goto IL_0019;
}
}
{
Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_1 = (Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC*)il2cpp_codegen_object_new(Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC_il2cpp_TypeInfo_var);
NullCheck(L_1);
Queue__ctor_mFCCBE2B4FFBD3F33D6FBE2D010C9A0CA976784CB(L_1, NULL);
__this->___referencedElements_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___referencedElements_5), (void*)L_1);
VirtualActionInvoker0::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializationWriter::InitCallbacks() */, __this);
}
IL_0019:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_mBE2DC3FBAF8A1DA2921EE89701791176B63C40B9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___serializable0, String_t* ___name1, String_t* ___ns2, bool ___isNullable3, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___serializable0;
String_t* L_1 = ___name1;
String_t* L_2 = ___ns2;
bool L_3 = ___isNullable3;
XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1(__this, L_0, L_1, L_2, L_3, (bool)1, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___serializable0, String_t* ___name1, String_t* ___ns2, bool ___isNullable3, bool ___wrapped4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___serializable0;
if (L_0)
{
goto IL_0013;
}
}
{
bool L_1 = ___isNullable3;
bool L_2 = ___wrapped4;
if (!((int32_t)((int32_t)L_1&(int32_t)L_2)))
{
goto IL_0012;
}
}
{
String_t* L_3 = ___name1;
String_t* L_4 = ___ns2;
XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_3, L_4, NULL);
}
IL_0012:
{
return;
}
IL_0013:
{
bool L_5 = ___wrapped4;
if (!L_5)
{
goto IL_0024;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6;
L_6 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_7 = ___name1;
String_t* L_8 = ___ns2;
NullCheck(L_6);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_6, L_7, L_8, NULL);
}
IL_0024:
{
RuntimeObject* L_9 = ___serializable0;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10;
L_10 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_9);
InterfaceActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(2 /* System.Void System.Xml.Serialization.IXmlSerializable::WriteXml(System.Xml.XmlWriter) */, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var, L_9, L_10);
bool L_11 = ___wrapped4;
if (!L_11)
{
goto IL_003f;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12;
L_12 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_12);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_12);
}
IL_003f:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartDocument_m6E55154B291F834B4B5C7F692CCF53B6B3BF94FF (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0;
L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, L_0);
if (L_1)
{
goto IL_0018;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2;
L_2 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_2);
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_2);
}
IL_0018:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89(__this, L_0, L_1, NULL, (bool)0, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, bool ___writePrefixed2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
bool L_2 = ___writePrefixed2;
XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89(__this, L_0, L_1, NULL, L_2, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mCB83EEA5BA0CDBDD2D62768D10D249B7D5835A70 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, RuntimeObject* ___o2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
RuntimeObject* L_2 = ___o2;
XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89(__this, L_0, L_1, L_2, (bool)0, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, RuntimeObject* ___o2, bool ___writePrefixed3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
String_t* L_1 = ___ns1;
RuntimeObject* L_2 = ___o2;
bool L_3 = ___writePrefixed3;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = __this->___namespaces_3;
XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224(__this, L_0, L_1, L_2, L_3, L_4, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean,System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, RuntimeObject* ___o2, bool ___writePrefixed3, RuntimeObject* ___namespaces4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral430E518F836082E0683698AB9E3F79D39C7F5140);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
RuntimeObject* V_1 = NULL;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_2 = NULL;
RuntimeObject* V_3 = NULL;
int32_t V_4 = 0;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_5 = NULL;
String_t* V_6 = NULL;
{
RuntimeObject* L_0 = ___o2;
if (!L_0)
{
goto IL_0039;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___serializedObjects_7;
RuntimeObject* L_2 = ___o2;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2);
if (!L_3)
{
goto IL_002c;
}
}
{
RuntimeObject* L_4 = ___o2;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5);
String_t* L_7;
L_7 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral40266A599D7FCF1D8A2E067A8C90873F38D822E2)), L_6, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_8);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224_RuntimeMethod_var)));
}
IL_002c:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___serializedObjects_7;
RuntimeObject* L_10 = ___o2;
RuntimeObject* L_11 = ___o2;
NullCheck(L_9);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_9, L_10, L_11);
}
IL_0039:
{
V_0 = (String_t*)NULL;
bool L_12 = __this->___topLevelElement_2;
if (!L_12)
{
goto IL_009d;
}
}
{
String_t* L_13 = ___ns1;
if (!L_13)
{
goto IL_009d;
}
}
{
String_t* L_14 = ___ns1;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
if (!L_15)
{
goto IL_009d;
}
}
{
RuntimeObject* L_16 = ___namespaces4;
if (!L_16)
{
goto IL_009d;
}
}
{
RuntimeObject* L_17 = ___namespaces4;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_17);
V_1 = L_18;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_008c:
{// begin finally (depth: 1)
{
RuntimeObject* L_19 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_20 = V_3;
if (!L_20)
{
goto IL_009c;
}
}
{
RuntimeObject* L_21 = V_3;
NullCheck(L_21);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_21);
}
IL_009c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0082_1;
}
IL_005c_1:
{
RuntimeObject* L_22 = V_1;
NullCheck(L_22);
RuntimeObject* L_23;
L_23 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22);
V_2 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_23, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var));
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_24 = V_2;
NullCheck(L_24);
String_t* L_25;
L_25 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_24, NULL);
String_t* L_26 = ___ns1;
bool L_27;
L_27 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_25, L_26, NULL);
if (!L_27)
{
goto IL_0082_1;
}
}
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_28 = V_2;
NullCheck(L_28);
String_t* L_29;
L_29 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_28, NULL);
V_0 = L_29;
___writePrefixed3 = (bool)1;
goto IL_009d;
}
IL_0082_1:
{
RuntimeObject* L_30 = V_1;
NullCheck(L_30);
bool L_31;
L_31 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_30);
if (L_31)
{
goto IL_005c_1;
}
}
{
goto IL_009d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_009d:
{
bool L_32 = ___writePrefixed3;
if (!L_32)
{
goto IL_0105;
}
}
{
String_t* L_33 = ___ns1;
String_t* L_34 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_35;
L_35 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_33, L_34, NULL);
if (!L_35)
{
goto IL_0105;
}
}
{
String_t* L_36 = ___name0;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_37;
L_37 = XmlCustomFormatter_FromXmlName_mF60F1941DED51082A7FB7C79D6EF77EB96F44BFA(L_36, NULL);
___name0 = L_37;
String_t* L_38 = V_0;
if (L_38)
{
goto IL_00c6;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_39;
L_39 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_40 = ___ns1;
NullCheck(L_39);
String_t* L_41;
L_41 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_39, L_40);
V_0 = L_41;
}
IL_00c6:
{
String_t* L_42 = V_0;
if (!L_42)
{
goto IL_00d1;
}
}
{
String_t* L_43 = V_0;
NullCheck(L_43);
int32_t L_44;
L_44 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_43, NULL);
if (L_44)
{
goto IL_00f5;
}
}
IL_00d1:
{
int32_t L_45 = __this->___qnameCount_1;
V_4 = ((int32_t)il2cpp_codegen_add(L_45, 1));
int32_t L_46 = V_4;
__this->___qnameCount_1 = L_46;
String_t* L_47;
L_47 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_4), NULL);
String_t* L_48;
L_48 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral430E518F836082E0683698AB9E3F79D39C7F5140, L_47, NULL);
V_0 = L_48;
}
IL_00f5:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_49;
L_49 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_50 = V_0;
String_t* L_51 = ___name0;
String_t* L_52 = ___ns1;
NullCheck(L_49);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_49, L_50, L_51, L_52);
goto IL_0112;
}
IL_0105:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_53;
L_53 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_54 = ___name0;
String_t* L_55 = ___ns1;
NullCheck(L_53);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_53, L_54, L_55, NULL);
}
IL_0112:
{
bool L_56 = __this->___topLevelElement_2;
if (!L_56)
{
goto IL_0196;
}
}
{
RuntimeObject* L_57 = ___namespaces4;
if (!L_57)
{
goto IL_018f;
}
}
{
RuntimeObject* L_58 = ___namespaces4;
NullCheck(L_58);
RuntimeObject* L_59;
L_59 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_58);
V_1 = L_59;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_017e:
{// begin finally (depth: 1)
{
RuntimeObject* L_60 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_60, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_61 = V_3;
if (!L_61)
{
goto IL_018e;
}
}
{
RuntimeObject* L_62 = V_3;
NullCheck(L_62);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_62);
}
IL_018e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0174_1;
}
IL_0128_1:
{
RuntimeObject* L_63 = V_1;
NullCheck(L_63);
RuntimeObject* L_64;
L_64 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_63);
V_5 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_64, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var));
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_65;
L_65 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_66 = V_5;
NullCheck(L_66);
String_t* L_67;
L_67 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_66, NULL);
NullCheck(L_65);
String_t* L_68;
L_68 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_65, L_67);
V_6 = L_68;
String_t* L_69 = V_6;
if (!L_69)
{
goto IL_0156_1;
}
}
{
String_t* L_70 = V_6;
NullCheck(L_70);
int32_t L_71;
L_71 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_70, NULL);
if (L_71)
{
goto IL_0174_1;
}
}
IL_0156_1:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_72 = V_5;
NullCheck(L_72);
String_t* L_73;
L_73 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_72, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_74 = V_5;
NullCheck(L_74);
String_t* L_75;
L_75 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_74, NULL);
XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_73, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_75, NULL);
}
IL_0174_1:
{
RuntimeObject* L_76 = V_1;
NullCheck(L_76);
bool L_77;
L_77 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_76);
if (L_77)
{
goto IL_0128_1;
}
}
{
goto IL_018f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_018f:
{
__this->___topLevelElement_2 = (bool)0;
}
IL_0196:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteTypedPrimitive(System.String,System.String,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, RuntimeObject* ___o2, bool ___xsiType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_1 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B16_0 = NULL;
XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* G_B16_1 = NULL;
String_t* G_B15_0 = NULL;
XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* G_B15_1 = NULL;
String_t* G_B17_0 = NULL;
String_t* G_B17_1 = NULL;
XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* G_B17_2 = NULL;
{
RuntimeObject* L_0 = ___o2;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2;
L_2 = TypeTranslator_GetTypeData_m80197EE19D3F7970A9EE4320B0EAB4127EB852A8(L_1, (String_t*)NULL, (bool)1, NULL);
V_1 = L_2;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = V_1;
NullCheck(L_3);
int32_t L_4;
L_4 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_3, NULL);
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_002d;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = V_1;
NullCheck(L_5);
String_t* L_6;
L_6 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_5, NULL);
String_t* L_7;
L_7 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3BEF703FC97B2EF58FFDCB567F4C4F33758B77FD)), L_6, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_8);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50_RuntimeMethod_var)));
}
IL_002d:
{
String_t* L_9 = ___name0;
if (L_9)
{
goto IL_0050;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = V_1;
NullCheck(L_10);
bool L_11;
L_11 = TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A(L_10, NULL);
if (L_11)
{
goto IL_003f;
}
}
{
G_B6_0 = _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407;
goto IL_0044;
}
IL_003f:
{
G_B6_0 = _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF;
}
IL_0044:
{
___ns1 = G_B6_0;
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_12 = V_1;
NullCheck(L_12);
String_t* L_13;
L_13 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_12, NULL);
___name0 = L_13;
goto IL_0058;
}
IL_0050:
{
String_t* L_14 = ___name0;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_15;
L_15 = XmlCustomFormatter_FromXmlName_mF60F1941DED51082A7FB7C79D6EF77EB96F44BFA(L_14, NULL);
___name0 = L_15;
}
IL_0058:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16;
L_16 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_17 = ___name0;
String_t* L_18 = ___ns1;
NullCheck(L_16);
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_16, L_17, L_18, NULL);
RuntimeObject* L_19 = ___o2;
if (!((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)IsInstClass((RuntimeObject*)L_19, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)))
{
goto IL_007c;
}
}
{
RuntimeObject* L_20 = ___o2;
String_t* L_21;
L_21 = XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829(__this, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_20, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), NULL);
V_0 = L_21;
goto IL_0084;
}
IL_007c:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22 = V_1;
RuntimeObject* L_23 = ___o2;
il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var);
String_t* L_24;
L_24 = XmlCustomFormatter_ToXmlString_m8B314E13C0DF5676C6D9516F1DB34518106A394D(L_22, L_23, NULL);
V_0 = L_24;
}
IL_0084:
{
bool L_25 = ___xsiType3;
if (!L_25)
{
goto IL_00cc;
}
}
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_26 = V_1;
NullCheck(L_26);
int32_t L_27;
L_27 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_26, NULL);
if ((((int32_t)L_27) == ((int32_t)1)))
{
goto IL_00ac;
}
}
{
RuntimeObject* L_28 = ___o2;
NullCheck(L_28);
Type_t* L_29;
L_29 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_28, NULL);
NullCheck(L_29);
String_t* L_30;
L_30 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_29);
String_t* L_31;
L_31 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6879FB5AA9F284C75EF7F93BBF4F891A27C2426)), L_30, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_32 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_32);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_32, L_31, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50_RuntimeMethod_var)));
}
IL_00ac:
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_33 = V_1;
NullCheck(L_33);
String_t* L_34;
L_34 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_33, NULL);
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_35 = V_1;
NullCheck(L_35);
bool L_36;
L_36 = TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A(L_35, NULL);
G_B15_0 = L_34;
G_B15_1 = __this;
if (L_36)
{
G_B16_0 = L_34;
G_B16_1 = __this;
goto IL_00c2;
}
}
{
G_B17_0 = _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407;
G_B17_1 = G_B15_0;
G_B17_2 = G_B15_1;
goto IL_00c7;
}
IL_00c2:
{
G_B17_0 = _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF;
G_B17_1 = G_B16_0;
G_B17_2 = G_B16_1;
}
IL_00c7:
{
NullCheck(G_B17_2);
XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(G_B17_2, G_B17_1, G_B17_0, NULL);
}
IL_00cc:
{
String_t* L_37 = V_0;
XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3(__this, L_37, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_38;
L_38 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
NullCheck(L_38);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_38);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_000f;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1;
L_1 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL);
String_t* L_2 = ___value0;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_1, L_2);
}
IL_000f:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlAttribute(System.Xml.XmlNode,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, RuntimeObject* ___container1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46);
s_Il2CppMethodInitialized = true;
}
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
V_0 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)IsInstClass((RuntimeObject*)L_0, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_1 = V_0;
if (L_1)
{
goto IL_0015;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0E0048FA0448CB3DFBD7A30FABD833FBB16CBC89)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F_RuntimeMethod_var)));
}
IL_0015:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_3);
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46, NULL);
if (!L_5)
{
goto IL_0075;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_6);
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662, NULL);
if (!L_8)
{
goto IL_0075;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_9);
il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var);
TypeTranslator_ParseArrayType_m034F2CC1D633A475E362A3EC265A89BF1016C262(L_10, (&V_2), (&V_1), (&V_3), NULL);
String_t* L_11 = V_2;
String_t* L_12 = V_3;
String_t* L_13;
L_13 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_11, L_12, NULL);
String_t* L_14 = V_1;
String_t* L_15;
L_15 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_13, L_14, NULL);
V_4 = L_15;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = V_0;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_16);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_18);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20 = V_0;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_20);
String_t* L_22 = V_4;
XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, L_17, L_19, L_21, L_22, NULL);
return;
}
IL_0075:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23 = V_0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_23);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_25 = V_0;
NullCheck(L_25);
String_t* L_26;
L_26 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_25);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_27 = V_0;
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_27);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_29 = V_0;
NullCheck(L_29);
String_t* L_30;
L_30 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_29);
XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, L_24, L_26, L_28, L_30, NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXsiType(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___name0, String_t* ___ns1, 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*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___ns1;
if (!L_0)
{
goto IL_0029;
}
}
{
String_t* L_1 = ___ns1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_3;
L_3 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_1, L_2, NULL);
if (!L_3)
{
goto IL_0029;
}
}
{
String_t* L_4 = ___name0;
String_t* L_5 = ___ns1;
String_t* L_6;
L_6 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_4, L_5, NULL);
XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1(__this, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, L_6, NULL);
return;
}
IL_0029:
{
String_t* L_7 = ___name0;
XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1(__this, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, L_7, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlAnyElementAttribute_get_Order_m2CCED3AB699ADBDE0F16C41EB0EFE8921DF4BA6A_inline (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___order_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____key_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* XmlAttributes_get_XmlElements_m416689A3226C3C399772C0E9E618DC1B61E2EB89_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlElementAttributes_tEB368B90FCC435053531198B17F7CD83BF616F50* L_0 = __this->___xmlElements_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* XmlAttributes_get_XmlArray_m47C136BD864E01CEF392D4556950383154E21CC1_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* L_0 = __this->___xmlArray_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayAttribute_get_Order_m82A05D0B48CDF77EEAC644B324916768C3DCC219_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___order_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* XmlAttributes_get_XmlAnyElements_m3216504EBB4407E5FF8149C2A95CDF7826C5043C_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlAnyElementAttributes_t8709780E4C7D8E9B453BB4AE51A3CFBC462286CF* L_0 = __this->___xmlAnyElements_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___elementName_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlElementAttribute_get_Order_mCF42C8462D6BAE16562CD7E16E56DD5BBD56A34F_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___order_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___sType_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_SetKey_m29AA9DBD54FBFC2C50A282C1D8C33547CD6D7686_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, String_t* ___key0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___key0;
__this->___key_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___key_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_set_RelatedMaps_m6A89B4318BA4BA04099D938C36CA3A83AAC3BC44_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___value0, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ___value0;
__this->___relatedMaps_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___relatedMaps_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_set_Format_m84E84DA7E6927678C90D903E2A8599E6BF6748B9_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___format_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___fullTypeName_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* XmlAttributes_get_XmlRoot_m72B3B5B4B3D50069A4D9CEB7EEC08EF4E6A51EEC_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_0 = __this->___xmlRoot_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* XmlAttributes_get_XmlType_m1DDCEC132704F0A2C74E2C1C0EC5194BBC72BE0F_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* L_0 = __this->___xmlType_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9_inline (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeAttribute_get_IncludeInSchema_mDC85FE2BB6FE9BE2A457394CEEF91341CAA84DA3_inline (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___includeInSchema_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlRootAttribute_get_IsNullable_m2838215306230F5E93695672074B66ACC39E0092_inline (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IncludeInSchema_m4ADFB54087375F1E855F955A23FD6A75499C95CB_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___includeInSchema_12 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsNullable_mD892626D9838297535D63A2CE20F0F0E93B0E06F_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___isNullable_13 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___xmlType_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlMapping_set_ObjectMap_m34272FA1B72AD9AE95E70C84665290EA6C0C0FCD_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* ___value0, const RuntimeMethod* method)
{
{
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_0 = ___value0;
__this->___map_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___map_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlAttributes_get_XmlIgnore_m817F5C7648E0CADEBE452A1EF3E59A0D07A80627_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___xmlIgnore_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlReflectionMember_get_DeclaringType_mA84E638B63CD926ED1DB32628B7747DE0BA7F355_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___declaringType_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlReflectionMember_get_MemberName_mE4607A6A8054A867138901FA83DFEB24CCCE1A39_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___memberName_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____derivedTypes_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_0 = __this->___map_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_BaseMap_m1B6EC933148E6ED405775C6A56CF888DF489988F_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___value0, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___value0;
__this->___baseMap_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseMap_10), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ClassMap_SetCanBeSimpleType_mEFA2779827B16C4BACF378B6536121C5FE1AE74C_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, bool ___can0, const RuntimeMethod* method)
{
{
bool L_0 = ___can0;
__this->____canBeSimpleType_14 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____elementMembers_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->___type_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_TypeName_mC7AF987BA3129B6648CE999111BE0E739E5A25A8_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___typeName_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_get_BaseMap_m4596D5703D08B93CE429A7C62CEB9AA91506B32D_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->___baseMap_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____xmlTextCollector_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____typeData_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMember_get_Name_mCF37113EDBC93BBAE3E38DDA503BF83C752287F9_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____name_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* XmlAttributes_get_XmlArrayItems_mA3EA68D61FCFD9DBAD4175F48035F95AC10EDB6E_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlArrayItemAttributes_tD468A7CCAF036962F37A7CDDDE042A6258D03513* L_0 = __this->___xmlArrayItems_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlArrayItemAttribute_get_Namespace_m18BA85AB457B0ED70ABDA1C89B32A10BA24D0113_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttribute_get_Form_mBBFA635F531B819D8E43AFF6110670FB383C1F33_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayItemAttribute_get_NestingLevel_mE927341768913F399DAB59E37BB38EB4B5CF33ED_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___nestingLevel_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlArrayItemAttribute_get_Type_m80FA2D88365496E4C5090375F0E014976B6B7417_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____namespace_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____namespace_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Form_m404075D5C7B4E4CE0EC5ED46881D4D84C73E0102_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->____form_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlArrayItemAttribute_get_IsNullableSpecified_mDC4FABB753BA60A10CEED9BDD82011C47E14B4F0_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullableSpecified_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlArrayItemAttribute_get_IsNullable_mC7A6E27D7259FF7DD81A2C575EBD4578651857D8_inline (XmlArrayItemAttribute_tE97FFB019F6FE8EF2FA1BD5074CC15C701F59C40* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____type_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->____isNullable_5 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_NestingLevel_m104B8F548E5E7B0982E55AFA8900F9BB4E0E1A35_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->____nestingLevel_6 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___value0, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___value0;
__this->____mappedType_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____mappedType_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____elementName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____elementName_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____elementName_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMap_set_ItemInfo_mD0E132CC2807675C9308B26F69EA38EC9EB3EF11_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___value0, const RuntimeMethod* method)
{
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = ___value0;
__this->____itemInfo_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____itemInfo_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____elementName_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlIncludeAttribute_get_Type_m933A769AE46F8B8FE3612605D6B0E890AE3A1EDD_inline (XmlIncludeAttribute_t444D78BD01B445F31C9E0828BB2EEB88C0BDB736* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEnumAttribute_get_Name_m13FF8A329D3569F4C785968B3928A1554EC9CCF3_inline (XmlEnumAttribute_t06EEAB820B4C664382E2A018C682E64D4B10E695* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReflectionMember_set_DeclaringType_m1FEBB9DF4BDFE905A76D4E297BE992C89B39B1A8_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___declaringType_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___declaringType_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlReflectionMember_get_MemberType_m26CB81C88E06E782EFF7EE40F31F88A7A954504A_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___memberType_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlArrayAttribute_get_Namespace_m37B65FCCE7A60AEADBF394DB6210DA1CC8A91CF8_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlArrayAttribute_get_Form_mD5222A61AE3D5908142D9DBF1A5BE0986466F008_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* XmlAttributes_get_XmlAnyAttribute_m3116C8A13795C5AEB267B6C78EE406EB7F1C79D7_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlAnyAttributeAttribute_t3B95B49DDDDA70D79EBC045F925BDE39DFB0E96A* L_0 = __this->___xmlAnyAttribute_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___value0, const RuntimeMethod* method)
{
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = ___value0;
__this->____elementInfo_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____elementInfo_10), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlAttributes_get_Xmlns_m470230B52FC047B9820991B287C46CFACAACBB33_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___xmlns_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* XmlAttributes_get_XmlAttribute_m44681566D98881832A9FD898A985552CFF4699F7_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* L_0 = __this->___xmlAttribute_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_AttributeName_m9FA871900139C9A680D39F3FA1D64593EA0A8A37_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____attributeName_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____attributeName_10), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____attributeName_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_MappedType_mA7E95DC2D885930465A715589EF224E64286F518_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___value0, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___value0;
__this->____mappedType_13 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____mappedType_13), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlAttributeAttribute_get_Namespace_m66DDB72831548F3B23A4A68E11826303CEE42835_inline (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlAttributeAttribute_get_Form_m49A9D062DB2C8CED21041D3FBF941A7C3A4E06BD_inline (XmlAttributeAttribute_t157535EDD908EB83E442B1DEFF2A151B076962BE* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Form_m060BDBE9694B862C8E46DCEB5CAD8F6C52E9691B_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->____form_12 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Namespace_m75CC38F536B9F3D71532845F4D741A6A37489277_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____namespace_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_11), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlElementAttribute_get_Type_m3B355841D7F13F4CD84F8C3ED4D28917BB170CCB_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* XmlAttributes_get_XmlText_m021CE7CB4BE20DEE5FC8FAE724015FF2C4BDFD1B_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* L_0 = __this->___xmlText_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList_set_ListMap_mFEBE950843FA798DFC8628E296696296C953071E_inline (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ___value0, const RuntimeMethod* method)
{
{
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_0 = ___value0;
__this->____listMap_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____listMap_15), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method)
{
{
ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_0 = __this->____listMap_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method)
{
{
XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____itemInfo_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____choiceMember_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMap_set_ChoiceMember_m25EB1F93541895E0647E420B7BF9C8C7194621D6_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____choiceMember_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceMember_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlArrayAttribute_get_IsNullable_m84FB7E08614BFAFE7C6D5B72F4E43CBA42583CFB_inline (XmlArrayAttribute_t7526C7D0DEFA9509CEA895DDBDFD5031F204FB15* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ExplicitOrder_mD893A153D81289F4A8C4A429800FEDB81E3578B4_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->____explicitOrder_10 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlAttributes_get_XmlDefaultValue_m24022111D30B964CF2DDE2EC6ACC870DB4BA7ED1_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___xmlDefaultValue_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_DefaultValue_m97AC90D89BFEE878DA9FE3150292AD6E69B6FA27_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->____defaultValue_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultValue_8), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_TypeData_m9C4CAF5B4A21DE54C9DE9F90C1332BBDAA4A4B4C_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___value0, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___value0;
__this->____typeData_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____typeData_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Name_m388D6A30E3DD11FD6068A5D5C180110C327EFC08_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____name_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____name_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReflectionMember_get_IsReturnValue_m85EB9A5F4C984353A4BEA4A10D90BEB715158255_inline (XmlReflectionMember_t87430F39B22016DC8AA31589169BFE0730D2949A* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isReturnValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* XmlAttributes_get_XmlChoiceIdentifier_mA6096A2AFE2439889FA8F48E22AD7335C9B7EE45_inline (XmlAttributes_t6A1DF68418FD9F41B74A1AFA9F753D2E80F81739* __this, const RuntimeMethod* method)
{
{
XmlChoiceIdentifierAttribute_t1DF770FBF01EBD518F55C363C703F86A7712301E* L_0 = __this->___xmlChoiceIdentifier_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceMember_m8F271920DC329BABB1F6CC20C327EFABC5D5FAD4_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____choiceMember_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceMember_11), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceTypeData_mC09197CF2429D39C3771B2E1903663FEE114877D_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___value0, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___value0;
__this->____choiceTypeData_13 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceTypeData_13), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlElementAttribute_get_Form_mAB6C265C412AD6BA37FF7802EB207C726F3ADADC_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___form_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_Form_m6D632374F4C5C58870DFDB60928B518C216180FA_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____form_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlElementAttribute_get_Namespace_m79825FA7B795B8D0FF3E71637AEB426DC3AFB1FA_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlElementAttribute_get_IsNullable_mC31D59FDBE93193FDF0409AC0DC191E8B11A387F_inline (XmlElementAttribute_t1E2EE1E1AB1D03CA9BD7774A39E44D81C649BDD5* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____isNullable_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ChoiceValue_m51083B31BC4A97D6C58F2A8FA96355BED2E37AAB_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->____choiceValue_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceValue_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlAnyElementAttribute_get_Namespace_m566B2C6EC08903732765430EE526F8D5BDFA4FF6_inline (XmlAnyElementAttribute_tFDA3FEFA37983298C29CC84E5564E41600C5EDAB* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_IsXmlTextCollector_m3825384EFF73E2990FD5746E45CE7AF2D69B456B_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->____isTextCollector_12 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* XmlTextAttribute_get_Type_m6D956F711B1336CEAE650DDC4A35A9899CEF9861_inline (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___type_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_WrappedElement_m45FA9CFAFC7B8EB395F59D7832542F3410089195_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->____wrappedElement_9 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___id_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CollectionFixup_set_CollectionItems_mE1B2C71D40112F90E2ECC65D1E14234BA2ED351F_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___collectionItems_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___collectionItems_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* CollectionFixup_get_Callback_m1F1435C58DB8A0FDDC6EF46BAE8C871531BEDBAE_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_0 = __this->___callback_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___collection_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationCollectionFixupCallback_Invoke_mFB736B20C467F37986192F47B50619B4E126B36E_inline (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___collection0, RuntimeObject* ___collectionItems1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___collection0, ___collectionItems1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReadCallback_Invoke_m7F7833B3AEAF6D1F62729A4797EBB10145DDA67D_inline (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeArray* CollectionItemFixup_get_Collection_m3A3D1F07DD384677EB43842B4E0C9AE6CAA8B8F6_inline (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method)
{
{
RuntimeArray* L_0 = __this->___list_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CollectionItemFixup_get_Id_m01A755FF6A3F989910289A67DD5ADFA0528FD39F_inline (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___id_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CollectionItemFixup_get_Index_m455C70697C9BD61D8E47E5867796671FAECBF958_inline (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___index_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_CollectionItems_m7C8D7CB07A7C17F517B09A5145424EB1DE0EB497_inline (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___collectionItems_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* Fixup_get_Callback_mF6D51DD8D4089ED7510FA16D29095F75BFB54D9B_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method)
{
{
XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_0 = __this->___callback_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationFixupCallback_Invoke_m20E59EA8A1BB770EB6C5391C419FA821C425EDF7_inline (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___fixup0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___fixup0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___format_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___relatedMaps_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____namespace_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____hasWrapperElement_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____allMembers_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isAny_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNullable_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_0 = __this->____defaultAnyAttribute_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method)
{
{
XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_0 = __this->____namespaceDeclarations_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____returnMember_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____flatLists_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____flatArrayIndex_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method)
{
{
TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____choiceTypeData_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____member_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____index_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____explicitOrder_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method)
{
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___ids_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____choiceValue_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_0 = __this->____defaultAnyElement_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____listMembers_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___source_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___hasPublicConstructor_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____globalIndex_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___writer_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___o0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___o0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}